diff --git a/grammar.d.ts b/grammar.d.ts index d3fe5c9..2420567 100644 --- a/grammar.d.ts +++ b/grammar.d.ts @@ -74,6 +74,7 @@ declare interface IRules { func_def: ($: IRules & IExternals) => any; param_list: ($: IRules & IExternals) => any; func_call: ($: IRules & IExternals) => any; + _builtin_func_call: ($: IRules & IExternals) => any; indirect_func_call: ($: IRules & IExternals) => any; args: ($: IRules & IExternals) => any; comment: ($: IRules & IExternals) => any; diff --git a/grammar.js b/grammar.js index 2fb2a56..529b5f8 100644 --- a/grammar.js +++ b/grammar.js @@ -441,11 +441,60 @@ module.exports = grammar({ param_list: $ => seq($.identifier, repeat(seq(',', optional($.comment), $.identifier))), func_call: $ => + choice( + seq( + field('name', choice($.identifier, $.ns_qualified_name)), + // Otherwise $.concatenating_space takes precedence + $._func_call, + token.immediate('('), + optional($.args), + ')' + ), + $._builtin_func_call + ), + + _builtin_func_call: $ => seq( - field('name', choice($.identifier, $.ns_qualified_name)), - // Otherwise $.concatenating_space takes precedence - $._func_call, - token.immediate('('), + choice( + 'and', + 'asort', + 'asorti', + 'bindtextdomain', + 'compl', + 'cos', + 'dcgettext', + 'dcngettext', + 'exp', + 'gensub', + 'gsub', + 'index', + 'int', + 'isarray', + 'length', + 'log', + 'lshift', + 'match', + 'mktime', + 'or', + 'patsplit', + 'rand', + 'rshift', + 'sin', + 'split', + 'sprintf', + 'sqrt', + 'srand', + 'strftime', + 'strtonum', + 'sub', + 'substr', + 'systime', + 'tolower', + 'toupper', + 'typeof', + 'xor' + ), + '(', optional($.args), ')' ), diff --git a/src/grammar.json b/src/grammar.json index 149443f..cdb912e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3018,35 +3018,222 @@ ] }, "func_call": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "ns_qualified_name" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "ns_qualified_name" + } + ] } - ] - } + }, + { + "type": "SYMBOL", + "name": "_func_call" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "(" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "args" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] }, { "type": "SYMBOL", - "name": "_func_call" + "name": "_builtin_func_call" + } + ] + }, + "_builtin_func_call": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "asort" + }, + { + "type": "STRING", + "value": "asorti" + }, + { + "type": "STRING", + "value": "bindtextdomain" + }, + { + "type": "STRING", + "value": "compl" + }, + { + "type": "STRING", + "value": "cos" + }, + { + "type": "STRING", + "value": "dcgettext" + }, + { + "type": "STRING", + "value": "dcngettext" + }, + { + "type": "STRING", + "value": "exp" + }, + { + "type": "STRING", + "value": "gensub" + }, + { + "type": "STRING", + "value": "gsub" + }, + { + "type": "STRING", + "value": "index" + }, + { + "type": "STRING", + "value": "int" + }, + { + "type": "STRING", + "value": "isarray" + }, + { + "type": "STRING", + "value": "length" + }, + { + "type": "STRING", + "value": "log" + }, + { + "type": "STRING", + "value": "lshift" + }, + { + "type": "STRING", + "value": "match" + }, + { + "type": "STRING", + "value": "mktime" + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "STRING", + "value": "patsplit" + }, + { + "type": "STRING", + "value": "rand" + }, + { + "type": "STRING", + "value": "rshift" + }, + { + "type": "STRING", + "value": "sin" + }, + { + "type": "STRING", + "value": "split" + }, + { + "type": "STRING", + "value": "sprintf" + }, + { + "type": "STRING", + "value": "sqrt" + }, + { + "type": "STRING", + "value": "srand" + }, + { + "type": "STRING", + "value": "strftime" + }, + { + "type": "STRING", + "value": "strtonum" + }, + { + "type": "STRING", + "value": "sub" + }, + { + "type": "STRING", + "value": "substr" + }, + { + "type": "STRING", + "value": "systime" + }, + { + "type": "STRING", + "value": "tolower" + }, + { + "type": "STRING", + "value": "toupper" + }, + { + "type": "STRING", + "value": "typeof" + }, + { + "type": "STRING", + "value": "xor" + } + ] }, { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "(" - } + "type": "STRING", + "value": "(" }, { "type": "CHOICE", diff --git a/src/node-types.json b/src/node-types.json index 4c1e721..8e4322f 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2126,7 +2126,7 @@ "fields": { "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -5187,6 +5187,22 @@ "type": "alpha", "named": false }, + { + "type": "and", + "named": false + }, + { + "type": "asort", + "named": false + }, + { + "type": "asorti", + "named": false + }, + { + "type": "bindtextdomain", + "named": false + }, { "type": "blank", "named": false @@ -5203,6 +5219,10 @@ "type": "cntrl", "named": false }, + { + "type": "compl", + "named": false + }, { "type": "concatenating_space", "named": true @@ -5211,6 +5231,18 @@ "type": "continue_statement", "named": true }, + { + "type": "cos", + "named": false + }, + { + "type": "dcgettext", + "named": false + }, + { + "type": "dcngettext", + "named": false + }, { "type": "default", "named": false @@ -5239,6 +5271,10 @@ "type": "exit", "named": false }, + { + "type": "exp", + "named": false + }, { "type": "for", "named": false @@ -5251,6 +5287,10 @@ "type": "function", "named": false }, + { + "type": "gensub", + "named": false + }, { "type": "getline", "named": false @@ -5259,6 +5299,10 @@ "type": "graph", "named": false }, + { + "type": "gsub", + "named": false + }, { "type": "identifier", "named": true @@ -5271,10 +5315,42 @@ "type": "in", "named": false }, + { + "type": "index", + "named": false + }, + { + "type": "int", + "named": false + }, + { + "type": "isarray", + "named": false + }, + { + "type": "length", + "named": false + }, + { + "type": "log", + "named": false + }, { "type": "lower", "named": false }, + { + "type": "lshift", + "named": false + }, + { + "type": "match", + "named": false + }, + { + "type": "mktime", + "named": false + }, { "type": "namespace", "named": false @@ -5287,6 +5363,14 @@ "type": "nextfile_statement", "named": true }, + { + "type": "or", + "named": false + }, + { + "type": "patsplit", + "named": false + }, { "type": "print", "named": false @@ -5299,6 +5383,10 @@ "type": "punct", "named": false }, + { + "type": "rand", + "named": false + }, { "type": "regex_flags", "named": true @@ -5307,14 +5395,70 @@ "type": "return", "named": false }, + { + "type": "rshift", + "named": false + }, + { + "type": "sin", + "named": false + }, { "type": "space", "named": false }, + { + "type": "split", + "named": false + }, + { + "type": "sprintf", + "named": false + }, + { + "type": "sqrt", + "named": false + }, + { + "type": "srand", + "named": false + }, + { + "type": "strftime", + "named": false + }, + { + "type": "strtonum", + "named": false + }, + { + "type": "sub", + "named": false + }, + { + "type": "substr", + "named": false + }, { "type": "switch", "named": false }, + { + "type": "systime", + "named": false + }, + { + "type": "tolower", + "named": false + }, + { + "type": "toupper", + "named": false + }, + { + "type": "typeof", + "named": false + }, { "type": "upper", "named": false @@ -5327,6 +5471,10 @@ "type": "xdigit", "named": false }, + { + "type": "xor", + "named": false + }, { "type": "{", "named": false diff --git a/src/parser.c b/src/parser.c index b13ed46..a03530e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,11 +5,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2288 -#define LARGE_STATE_COUNT 224 -#define SYMBOL_COUNT 177 +#define STATE_COUNT 2555 +#define LARGE_STATE_COUNT 1287 +#define SYMBOL_COUNT 215 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 105 +#define TOKEN_COUNT 142 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 18 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -114,85 +114,123 @@ enum ts_symbol_identifiers { sym_escape_sequence = 96, anon_sym_function = 97, anon_sym_func = 98, - anon_sym_POUND = 99, - aux_sym_comment_token1 = 100, - sym_concatenating_space = 101, - sym__if_else_separator = 102, - sym__no_space = 103, - sym__func_call = 104, - sym_program = 105, - sym_rule = 106, - sym_pattern = 107, - sym_range_pattern = 108, - sym__special_pattern = 109, - sym_directive = 110, - sym__statement = 111, - sym__statement_separated = 112, - sym__control_statement = 113, - sym_if_statement = 114, - sym_else_clause = 115, - sym_while_statement = 116, - sym_do_while_statement = 117, - sym_for_statement = 118, - sym_for_in_statement = 119, - sym_delete_statement = 120, - sym_exit_statement = 121, - sym_return_statement = 122, - sym_switch_statement = 123, - sym_switch_body = 124, - sym_switch_case = 125, - sym_switch_default = 126, - sym__io_statement = 127, - sym__getline_exp = 128, - sym_getline_input = 129, - sym_getline_file = 130, - sym__print_args = 131, - sym_print_statement = 132, - sym_printf_statement = 133, - sym_redirected_io_statement = 134, - sym_piped_io_statement = 135, - sym_block = 136, - sym__block_content = 137, - sym__exp = 138, - sym_ternary_exp = 139, - sym_binary_exp = 140, - sym__binary_in = 141, - sym_unary_exp = 142, - sym_update_exp = 143, - sym_assignment_exp = 144, - sym_piped_io_exp = 145, - sym_string_concat = 146, - sym_field_ref = 147, - sym_array_ref = 148, - sym_exp_list = 149, - sym_regex = 150, - sym__regex_char_class = 151, - sym__regex_bracket_exp = 152, - sym_regex_pattern = 153, - sym_regex_constant = 154, - sym_grouping = 155, - sym__primitive = 156, - sym_namespace = 157, - sym_ns_qualified_name = 158, - sym_number = 159, - sym_string = 160, - sym_func_def = 161, - sym_param_list = 162, - sym_func_call = 163, - sym_indirect_func_call = 164, - sym_args = 165, - sym_comment = 166, - aux_sym_program_repeat1 = 167, - aux_sym_if_statement_repeat1 = 168, - aux_sym_switch_body_repeat1 = 169, - aux_sym_block_repeat1 = 170, - aux_sym_exp_list_repeat1 = 171, - aux_sym__regex_bracket_exp_repeat1 = 172, - aux_sym_regex_pattern_repeat1 = 173, - aux_sym_string_repeat1 = 174, - aux_sym_param_list_repeat1 = 175, - aux_sym_args_repeat1 = 176, - anon_alias_sym_namespace = 177, + anon_sym_and = 99, + anon_sym_asort = 100, + anon_sym_asorti = 101, + anon_sym_bindtextdomain = 102, + anon_sym_compl = 103, + anon_sym_cos = 104, + anon_sym_dcgettext = 105, + anon_sym_dcngettext = 106, + anon_sym_exp = 107, + anon_sym_gensub = 108, + anon_sym_gsub = 109, + anon_sym_index = 110, + anon_sym_int = 111, + anon_sym_isarray = 112, + anon_sym_length = 113, + anon_sym_log = 114, + anon_sym_lshift = 115, + anon_sym_match = 116, + anon_sym_mktime = 117, + anon_sym_or = 118, + anon_sym_patsplit = 119, + anon_sym_rand = 120, + anon_sym_rshift = 121, + anon_sym_sin = 122, + anon_sym_split = 123, + anon_sym_sprintf = 124, + anon_sym_sqrt = 125, + anon_sym_srand = 126, + anon_sym_strftime = 127, + anon_sym_strtonum = 128, + anon_sym_sub = 129, + anon_sym_substr = 130, + anon_sym_systime = 131, + anon_sym_tolower = 132, + anon_sym_toupper = 133, + anon_sym_typeof = 134, + anon_sym_xor = 135, + anon_sym_POUND = 136, + aux_sym_comment_token1 = 137, + sym_concatenating_space = 138, + sym__if_else_separator = 139, + sym__no_space = 140, + sym__func_call = 141, + sym_program = 142, + sym_rule = 143, + sym_pattern = 144, + sym_range_pattern = 145, + sym__special_pattern = 146, + sym_directive = 147, + sym__statement = 148, + sym__statement_separated = 149, + sym__control_statement = 150, + sym_if_statement = 151, + sym_else_clause = 152, + sym_while_statement = 153, + sym_do_while_statement = 154, + sym_for_statement = 155, + sym_for_in_statement = 156, + sym_delete_statement = 157, + sym_exit_statement = 158, + sym_return_statement = 159, + sym_switch_statement = 160, + sym_switch_body = 161, + sym_switch_case = 162, + sym_switch_default = 163, + sym__io_statement = 164, + sym__getline_exp = 165, + sym_getline_input = 166, + sym_getline_file = 167, + sym__print_args = 168, + sym_print_statement = 169, + sym_printf_statement = 170, + sym_redirected_io_statement = 171, + sym_piped_io_statement = 172, + sym_block = 173, + sym__block_content = 174, + sym__exp = 175, + sym_ternary_exp = 176, + sym_binary_exp = 177, + sym__binary_in = 178, + sym_unary_exp = 179, + sym_update_exp = 180, + sym_assignment_exp = 181, + sym_piped_io_exp = 182, + sym_string_concat = 183, + sym_field_ref = 184, + sym_array_ref = 185, + sym_exp_list = 186, + sym_regex = 187, + sym__regex_char_class = 188, + sym__regex_bracket_exp = 189, + sym_regex_pattern = 190, + sym_regex_constant = 191, + sym_grouping = 192, + sym__primitive = 193, + sym_namespace = 194, + sym_ns_qualified_name = 195, + sym_number = 196, + sym_string = 197, + sym_func_def = 198, + sym_param_list = 199, + sym_func_call = 200, + sym__builtin_func_call = 201, + sym_indirect_func_call = 202, + sym_args = 203, + sym_comment = 204, + aux_sym_program_repeat1 = 205, + aux_sym_if_statement_repeat1 = 206, + aux_sym_switch_body_repeat1 = 207, + aux_sym_block_repeat1 = 208, + aux_sym_exp_list_repeat1 = 209, + aux_sym__regex_bracket_exp_repeat1 = 210, + aux_sym_regex_pattern_repeat1 = 211, + aux_sym_string_repeat1 = 212, + aux_sym_param_list_repeat1 = 213, + aux_sym_args_repeat1 = 214, + anon_alias_sym_namespace = 215, }; static const char * const ts_symbol_names[] = { @@ -295,6 +333,43 @@ static const char * const ts_symbol_names[] = { [sym_escape_sequence] = "escape_sequence", [anon_sym_function] = "function", [anon_sym_func] = "func", + [anon_sym_and] = "and", + [anon_sym_asort] = "asort", + [anon_sym_asorti] = "asorti", + [anon_sym_bindtextdomain] = "bindtextdomain", + [anon_sym_compl] = "compl", + [anon_sym_cos] = "cos", + [anon_sym_dcgettext] = "dcgettext", + [anon_sym_dcngettext] = "dcngettext", + [anon_sym_exp] = "exp", + [anon_sym_gensub] = "gensub", + [anon_sym_gsub] = "gsub", + [anon_sym_index] = "index", + [anon_sym_int] = "int", + [anon_sym_isarray] = "isarray", + [anon_sym_length] = "length", + [anon_sym_log] = "log", + [anon_sym_lshift] = "lshift", + [anon_sym_match] = "match", + [anon_sym_mktime] = "mktime", + [anon_sym_or] = "or", + [anon_sym_patsplit] = "patsplit", + [anon_sym_rand] = "rand", + [anon_sym_rshift] = "rshift", + [anon_sym_sin] = "sin", + [anon_sym_split] = "split", + [anon_sym_sprintf] = "sprintf", + [anon_sym_sqrt] = "sqrt", + [anon_sym_srand] = "srand", + [anon_sym_strftime] = "strftime", + [anon_sym_strtonum] = "strtonum", + [anon_sym_sub] = "sub", + [anon_sym_substr] = "substr", + [anon_sym_systime] = "systime", + [anon_sym_tolower] = "tolower", + [anon_sym_toupper] = "toupper", + [anon_sym_typeof] = "typeof", + [anon_sym_xor] = "xor", [anon_sym_POUND] = "#", [aux_sym_comment_token1] = "comment_token1", [sym_concatenating_space] = "concatenating_space", @@ -360,6 +435,7 @@ static const char * const ts_symbol_names[] = { [sym_func_def] = "func_def", [sym_param_list] = "param_list", [sym_func_call] = "func_call", + [sym__builtin_func_call] = "_builtin_func_call", [sym_indirect_func_call] = "indirect_func_call", [sym_args] = "args", [sym_comment] = "comment", @@ -476,6 +552,43 @@ static const TSSymbol ts_symbol_map[] = { [sym_escape_sequence] = sym_escape_sequence, [anon_sym_function] = anon_sym_function, [anon_sym_func] = anon_sym_func, + [anon_sym_and] = anon_sym_and, + [anon_sym_asort] = anon_sym_asort, + [anon_sym_asorti] = anon_sym_asorti, + [anon_sym_bindtextdomain] = anon_sym_bindtextdomain, + [anon_sym_compl] = anon_sym_compl, + [anon_sym_cos] = anon_sym_cos, + [anon_sym_dcgettext] = anon_sym_dcgettext, + [anon_sym_dcngettext] = anon_sym_dcngettext, + [anon_sym_exp] = anon_sym_exp, + [anon_sym_gensub] = anon_sym_gensub, + [anon_sym_gsub] = anon_sym_gsub, + [anon_sym_index] = anon_sym_index, + [anon_sym_int] = anon_sym_int, + [anon_sym_isarray] = anon_sym_isarray, + [anon_sym_length] = anon_sym_length, + [anon_sym_log] = anon_sym_log, + [anon_sym_lshift] = anon_sym_lshift, + [anon_sym_match] = anon_sym_match, + [anon_sym_mktime] = anon_sym_mktime, + [anon_sym_or] = anon_sym_or, + [anon_sym_patsplit] = anon_sym_patsplit, + [anon_sym_rand] = anon_sym_rand, + [anon_sym_rshift] = anon_sym_rshift, + [anon_sym_sin] = anon_sym_sin, + [anon_sym_split] = anon_sym_split, + [anon_sym_sprintf] = anon_sym_sprintf, + [anon_sym_sqrt] = anon_sym_sqrt, + [anon_sym_srand] = anon_sym_srand, + [anon_sym_strftime] = anon_sym_strftime, + [anon_sym_strtonum] = anon_sym_strtonum, + [anon_sym_sub] = anon_sym_sub, + [anon_sym_substr] = anon_sym_substr, + [anon_sym_systime] = anon_sym_systime, + [anon_sym_tolower] = anon_sym_tolower, + [anon_sym_toupper] = anon_sym_toupper, + [anon_sym_typeof] = anon_sym_typeof, + [anon_sym_xor] = anon_sym_xor, [anon_sym_POUND] = anon_sym_POUND, [aux_sym_comment_token1] = aux_sym_comment_token1, [sym_concatenating_space] = sym_concatenating_space, @@ -541,6 +654,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_func_def] = sym_func_def, [sym_param_list] = sym_param_list, [sym_func_call] = sym_func_call, + [sym__builtin_func_call] = sym__builtin_func_call, [sym_indirect_func_call] = sym_indirect_func_call, [sym_args] = sym_args, [sym_comment] = sym_comment, @@ -954,6 +1068,154 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_asort] = { + .visible = true, + .named = false, + }, + [anon_sym_asorti] = { + .visible = true, + .named = false, + }, + [anon_sym_bindtextdomain] = { + .visible = true, + .named = false, + }, + [anon_sym_compl] = { + .visible = true, + .named = false, + }, + [anon_sym_cos] = { + .visible = true, + .named = false, + }, + [anon_sym_dcgettext] = { + .visible = true, + .named = false, + }, + [anon_sym_dcngettext] = { + .visible = true, + .named = false, + }, + [anon_sym_exp] = { + .visible = true, + .named = false, + }, + [anon_sym_gensub] = { + .visible = true, + .named = false, + }, + [anon_sym_gsub] = { + .visible = true, + .named = false, + }, + [anon_sym_index] = { + .visible = true, + .named = false, + }, + [anon_sym_int] = { + .visible = true, + .named = false, + }, + [anon_sym_isarray] = { + .visible = true, + .named = false, + }, + [anon_sym_length] = { + .visible = true, + .named = false, + }, + [anon_sym_log] = { + .visible = true, + .named = false, + }, + [anon_sym_lshift] = { + .visible = true, + .named = false, + }, + [anon_sym_match] = { + .visible = true, + .named = false, + }, + [anon_sym_mktime] = { + .visible = true, + .named = false, + }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, + [anon_sym_patsplit] = { + .visible = true, + .named = false, + }, + [anon_sym_rand] = { + .visible = true, + .named = false, + }, + [anon_sym_rshift] = { + .visible = true, + .named = false, + }, + [anon_sym_sin] = { + .visible = true, + .named = false, + }, + [anon_sym_split] = { + .visible = true, + .named = false, + }, + [anon_sym_sprintf] = { + .visible = true, + .named = false, + }, + [anon_sym_sqrt] = { + .visible = true, + .named = false, + }, + [anon_sym_srand] = { + .visible = true, + .named = false, + }, + [anon_sym_strftime] = { + .visible = true, + .named = false, + }, + [anon_sym_strtonum] = { + .visible = true, + .named = false, + }, + [anon_sym_sub] = { + .visible = true, + .named = false, + }, + [anon_sym_substr] = { + .visible = true, + .named = false, + }, + [anon_sym_systime] = { + .visible = true, + .named = false, + }, + [anon_sym_tolower] = { + .visible = true, + .named = false, + }, + [anon_sym_toupper] = { + .visible = true, + .named = false, + }, + [anon_sym_typeof] = { + .visible = true, + .named = false, + }, + [anon_sym_xor] = { + .visible = true, + .named = false, + }, [anon_sym_POUND] = { .visible = true, .named = false, @@ -1214,6 +1476,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__builtin_func_call] = { + .visible = false, + .named = true, + }, [sym_indirect_func_call] = { .visible = true, .named = true, @@ -1469,155 +1735,155 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 2, [5] = 5, - [6] = 4, - [7] = 4, - [8] = 4, - [9] = 5, - [10] = 2, + [6] = 5, + [7] = 3, + [8] = 8, + [9] = 3, + [10] = 5, [11] = 5, - [12] = 5, + [12] = 3, [13] = 13, [14] = 14, [15] = 15, [16] = 16, - [17] = 17, - [18] = 18, + [17] = 15, + [18] = 15, [19] = 19, [20] = 20, - [21] = 19, - [22] = 22, + [21] = 21, + [22] = 16, [23] = 23, [24] = 24, [25] = 25, - [26] = 15, + [26] = 26, [27] = 27, [28] = 28, [29] = 29, - [30] = 14, - [31] = 29, - [32] = 32, - [33] = 13, + [30] = 30, + [31] = 31, + [32] = 19, + [33] = 33, [34] = 34, - [35] = 16, - [36] = 36, - [37] = 37, + [35] = 28, + [36] = 30, + [37] = 34, [38] = 38, - [39] = 39, + [39] = 38, [40] = 40, - [41] = 40, - [42] = 42, - [43] = 36, - [44] = 17, - [45] = 24, - [46] = 18, - [47] = 22, - [48] = 15, - [49] = 23, - [50] = 19, - [51] = 34, - [52] = 28, - [53] = 16, - [54] = 39, - [55] = 14, - [56] = 38, - [57] = 57, - [58] = 58, - [59] = 24, - [60] = 18, - [61] = 37, - [62] = 13, - [63] = 15, - [64] = 37, - [65] = 17, - [66] = 13, - [67] = 14, - [68] = 22, - [69] = 27, - [70] = 25, - [71] = 16, - [72] = 23, - [73] = 22, + [41] = 41, + [42] = 40, + [43] = 23, + [44] = 44, + [45] = 14, + [46] = 33, + [47] = 19, + [48] = 20, + [49] = 21, + [50] = 16, + [51] = 23, + [52] = 24, + [53] = 25, + [54] = 26, + [55] = 27, + [56] = 29, + [57] = 31, + [58] = 33, + [59] = 31, + [60] = 28, + [61] = 30, + [62] = 34, + [63] = 38, + [64] = 40, + [65] = 41, + [66] = 44, + [67] = 15, + [68] = 14, + [69] = 69, + [70] = 19, + [71] = 20, + [72] = 21, + [73] = 16, [74] = 23, - [75] = 14, - [76] = 13, - [77] = 37, - [78] = 38, - [79] = 32, - [80] = 17, - [81] = 38, - [82] = 20, - [83] = 16, - [84] = 25, - [85] = 15, - [86] = 27, - [87] = 18, - [88] = 24, - [89] = 39, - [90] = 19, - [91] = 40, - [92] = 28, - [93] = 20, - [94] = 36, - [95] = 34, - [96] = 28, - [97] = 34, - [98] = 98, - [99] = 20, - [100] = 36, - [101] = 40, - [102] = 17, - [103] = 22, - [104] = 39, - [105] = 23, - [106] = 32, - [107] = 29, - [108] = 24, - [109] = 19, - [110] = 18, - [111] = 37, - [112] = 38, - [113] = 38, - [114] = 29, - [115] = 25, - [116] = 27, - [117] = 39, - [118] = 40, - [119] = 37, - [120] = 36, - [121] = 34, - [122] = 28, - [123] = 13, - [124] = 18, - [125] = 28, - [126] = 34, - [127] = 27, - [128] = 25, - [129] = 32, - [130] = 36, - [131] = 14, - [132] = 40, + [75] = 24, + [76] = 25, + [77] = 26, + [78] = 27, + [79] = 29, + [80] = 31, + [81] = 33, + [82] = 29, + [83] = 28, + [84] = 30, + [85] = 34, + [86] = 38, + [87] = 40, + [88] = 41, + [89] = 44, + [90] = 24, + [91] = 27, + [92] = 19, + [93] = 41, + [94] = 21, + [95] = 16, + [96] = 23, + [97] = 24, + [98] = 25, + [99] = 26, + [100] = 26, + [101] = 27, + [102] = 29, + [103] = 31, + [104] = 33, + [105] = 44, + [106] = 28, + [107] = 30, + [108] = 34, + [109] = 25, + [110] = 38, + [111] = 40, + [112] = 41, + [113] = 44, + [114] = 15, + [115] = 14, + [116] = 69, + [117] = 25, + [118] = 69, + [119] = 20, + [120] = 24, + [121] = 26, + [122] = 27, + [123] = 15, + [124] = 29, + [125] = 31, + [126] = 33, + [127] = 127, + [128] = 23, + [129] = 16, + [130] = 21, + [131] = 20, + [132] = 132, [133] = 19, - [134] = 27, - [135] = 24, - [136] = 39, - [137] = 15, - [138] = 20, - [139] = 29, - [140] = 16, - [141] = 23, - [142] = 17, - [143] = 32, - [144] = 29, - [145] = 20, - [146] = 22, - [147] = 32, - [148] = 25, + [134] = 14, + [135] = 28, + [136] = 21, + [137] = 20, + [138] = 30, + [139] = 69, + [140] = 140, + [141] = 69, + [142] = 69, + [143] = 14, + [144] = 44, + [145] = 41, + [146] = 40, + [147] = 38, + [148] = 34, [149] = 149, - [150] = 149, - [151] = 151, - [152] = 151, + [150] = 150, + [151] = 150, + [152] = 149, [153] = 2, [154] = 2, [155] = 155, @@ -1627,2132 +1893,2399 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [159] = 155, [160] = 155, [161] = 161, - [162] = 162, + [162] = 161, [163] = 163, - [164] = 161, + [164] = 164, [165] = 165, - [166] = 162, - [167] = 163, - [168] = 168, - [169] = 169, - [170] = 170, + [166] = 166, + [167] = 165, + [168] = 165, + [169] = 163, + [170] = 164, [171] = 171, - [172] = 172, + [172] = 163, [173] = 173, - [174] = 161, - [175] = 172, - [176] = 161, - [177] = 171, + [174] = 174, + [175] = 166, + [176] = 165, + [177] = 163, [178] = 178, - [179] = 179, + [179] = 165, [180] = 180, - [181] = 181, - [182] = 170, - [183] = 183, - [184] = 168, - [185] = 171, - [186] = 163, - [187] = 165, - [188] = 169, - [189] = 189, + [181] = 165, + [182] = 182, + [183] = 182, + [184] = 182, + [185] = 180, + [186] = 186, + [187] = 187, + [188] = 186, + [189] = 174, [190] = 190, [191] = 191, - [192] = 179, - [193] = 161, + [192] = 186, + [193] = 182, [194] = 194, - [195] = 195, - [196] = 163, + [195] = 182, + [196] = 182, [197] = 197, - [198] = 171, - [199] = 170, - [200] = 200, - [201] = 168, - [202] = 173, - [203] = 203, - [204] = 204, - [205] = 205, - [206] = 206, - [207] = 207, + [198] = 198, + [199] = 180, + [200] = 180, + [201] = 174, + [202] = 202, + [203] = 178, + [204] = 173, + [205] = 187, + [206] = 171, + [207] = 197, [208] = 208, - [209] = 209, - [210] = 210, - [211] = 181, + [209] = 191, + [210] = 202, + [211] = 211, [212] = 212, [213] = 213, [214] = 214, [215] = 215, [216] = 216, - [217] = 183, - [218] = 178, - [219] = 219, - [220] = 180, - [221] = 168, - [222] = 161, + [217] = 217, + [218] = 174, + [219] = 187, + [220] = 220, + [221] = 194, + [222] = 222, [223] = 223, - [224] = 210, - [225] = 216, - [226] = 168, - [227] = 214, - [228] = 195, - [229] = 208, - [230] = 223, + [224] = 224, + [225] = 225, + [226] = 220, + [227] = 227, + [228] = 220, + [229] = 229, + [230] = 230, [231] = 231, - [232] = 200, - [233] = 180, - [234] = 204, - [235] = 197, - [236] = 191, - [237] = 215, - [238] = 212, - [239] = 170, - [240] = 205, - [241] = 241, - [242] = 203, - [243] = 168, - [244] = 209, - [245] = 219, + [232] = 232, + [233] = 233, + [234] = 186, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 190, + [239] = 239, + [240] = 186, + [241] = 187, + [242] = 242, + [243] = 230, + [244] = 244, + [245] = 245, [246] = 246, - [247] = 180, - [248] = 194, - [249] = 190, - [250] = 206, - [251] = 207, - [252] = 189, - [253] = 213, - [254] = 181, - [255] = 213, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 198, + [252] = 252, + [253] = 186, + [254] = 254, + [255] = 255, [256] = 256, [257] = 257, - [258] = 189, + [258] = 258, [259] = 259, - [260] = 246, - [261] = 261, - [262] = 262, - [263] = 241, - [264] = 264, - [265] = 213, - [266] = 266, - [267] = 231, - [268] = 268, - [269] = 180, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 273, - [274] = 181, - [275] = 275, - [276] = 276, - [277] = 180, - [278] = 276, - [279] = 262, - [280] = 275, - [281] = 273, - [282] = 264, - [283] = 272, - [284] = 271, + [260] = 235, + [261] = 220, + [262] = 246, + [263] = 227, + [264] = 208, + [265] = 223, + [266] = 224, + [267] = 225, + [268] = 220, + [269] = 249, + [270] = 232, + [271] = 244, + [272] = 245, + [273] = 231, + [274] = 212, + [275] = 239, + [276] = 250, + [277] = 257, + [278] = 220, + [279] = 254, + [280] = 258, + [281] = 237, + [282] = 230, + [283] = 211, + [284] = 236, [285] = 213, - [286] = 270, - [287] = 268, - [288] = 256, - [289] = 189, - [290] = 261, - [291] = 266, - [292] = 213, - [293] = 257, - [294] = 259, - [295] = 163, - [296] = 162, - [297] = 161, - [298] = 298, - [299] = 171, - [300] = 300, + [286] = 229, + [287] = 217, + [288] = 247, + [289] = 248, + [290] = 252, + [291] = 216, + [292] = 215, + [293] = 214, + [294] = 233, + [295] = 242, + [296] = 230, + [297] = 255, + [298] = 222, + [299] = 259, + [300] = 256, [301] = 301, [302] = 302, - [303] = 162, - [304] = 178, - [305] = 169, - [306] = 170, - [307] = 172, - [308] = 168, - [309] = 169, - [310] = 179, - [311] = 171, - [312] = 209, - [313] = 180, + [303] = 303, + [304] = 304, + [305] = 166, + [306] = 301, + [307] = 304, + [308] = 164, + [309] = 171, + [310] = 198, + [311] = 178, + [312] = 166, + [313] = 164, [314] = 173, - [315] = 162, - [316] = 183, - [317] = 181, - [318] = 171, - [319] = 178, - [320] = 162, - [321] = 178, - [322] = 183, - [323] = 172, - [324] = 298, - [325] = 300, - [326] = 207, - [327] = 219, - [328] = 212, - [329] = 214, - [330] = 190, - [331] = 189, - [332] = 194, - [333] = 171, - [334] = 206, - [335] = 215, - [336] = 179, - [337] = 162, - [338] = 205, - [339] = 241, - [340] = 171, - [341] = 183, - [342] = 208, - [343] = 197, - [344] = 213, - [345] = 210, - [346] = 195, - [347] = 231, - [348] = 172, - [349] = 209, - [350] = 191, - [351] = 223, - [352] = 172, - [353] = 183, - [354] = 246, - [355] = 173, - [356] = 200, - [357] = 204, - [358] = 169, - [359] = 216, - [360] = 209, - [361] = 203, - [362] = 169, - [363] = 178, - [364] = 208, - [365] = 259, - [366] = 179, - [367] = 173, - [368] = 190, - [369] = 275, - [370] = 256, - [371] = 171, - [372] = 204, - [373] = 161, - [374] = 194, - [375] = 214, - [376] = 264, - [377] = 205, - [378] = 231, - [379] = 173, - [380] = 172, - [381] = 262, - [382] = 382, - [383] = 212, - [384] = 261, - [385] = 210, - [386] = 215, - [387] = 216, - [388] = 200, - [389] = 276, - [390] = 223, - [391] = 209, - [392] = 197, - [393] = 191, - [394] = 257, - [395] = 179, - [396] = 273, - [397] = 203, - [398] = 231, - [399] = 207, - [400] = 266, - [401] = 206, - [402] = 268, - [403] = 270, - [404] = 271, - [405] = 246, - [406] = 163, - [407] = 219, - [408] = 169, - [409] = 195, - [410] = 246, - [411] = 241, - [412] = 241, - [413] = 178, - [414] = 272, - [415] = 183, - [416] = 161, - [417] = 219, - [418] = 231, - [419] = 223, - [420] = 276, - [421] = 204, - [422] = 203, - [423] = 212, - [424] = 424, - [425] = 425, - [426] = 382, - [427] = 190, + [315] = 164, + [316] = 174, + [317] = 166, + [318] = 174, + [319] = 191, + [320] = 198, + [321] = 197, + [322] = 178, + [323] = 194, + [324] = 198, + [325] = 174, + [326] = 173, + [327] = 171, + [328] = 166, + [329] = 178, + [330] = 202, + [331] = 171, + [332] = 173, + [333] = 164, + [334] = 190, + [335] = 247, + [336] = 164, + [337] = 239, + [338] = 165, + [339] = 171, + [340] = 257, + [341] = 213, + [342] = 173, + [343] = 232, + [344] = 246, + [345] = 198, + [346] = 248, + [347] = 252, + [348] = 255, + [349] = 256, + [350] = 350, + [351] = 217, + [352] = 259, + [353] = 222, + [354] = 229, + [355] = 163, + [356] = 242, + [357] = 190, + [358] = 212, + [359] = 191, + [360] = 233, + [361] = 202, + [362] = 174, + [363] = 197, + [364] = 194, + [365] = 225, + [366] = 214, + [367] = 197, + [368] = 202, + [369] = 191, + [370] = 224, + [371] = 211, + [372] = 215, + [373] = 216, + [374] = 223, + [375] = 231, + [376] = 178, + [377] = 236, + [378] = 235, + [379] = 208, + [380] = 194, + [381] = 249, + [382] = 227, + [383] = 165, + [384] = 258, + [385] = 190, + [386] = 166, + [387] = 254, + [388] = 244, + [389] = 245, + [390] = 163, + [391] = 237, + [392] = 165, + [393] = 250, + [394] = 394, + [395] = 229, + [396] = 245, + [397] = 225, + [398] = 350, + [399] = 250, + [400] = 254, + [401] = 178, + [402] = 216, + [403] = 182, + [404] = 173, + [405] = 212, + [406] = 212, + [407] = 229, + [408] = 171, + [409] = 182, + [410] = 225, + [411] = 231, + [412] = 180, + [413] = 191, + [414] = 414, + [415] = 232, + [416] = 258, + [417] = 182, + [418] = 202, + [419] = 224, + [420] = 208, + [421] = 235, + [422] = 249, + [423] = 236, + [424] = 237, + [425] = 217, + [426] = 239, + [427] = 227, [428] = 223, - [429] = 208, - [430] = 261, - [431] = 207, - [432] = 209, - [433] = 270, - [434] = 197, - [435] = 191, - [436] = 210, - [437] = 264, - [438] = 215, - [439] = 219, - [440] = 204, - [441] = 272, - [442] = 197, - [443] = 259, - [444] = 170, - [445] = 190, - [446] = 215, - [447] = 276, - [448] = 168, - [449] = 179, - [450] = 210, - [451] = 200, - [452] = 216, - [453] = 266, - [454] = 268, - [455] = 257, - [456] = 195, - [457] = 191, - [458] = 271, - [459] = 273, - [460] = 275, - [461] = 205, - [462] = 256, - [463] = 262, - [464] = 205, - [465] = 168, - [466] = 200, - [467] = 216, - [468] = 194, - [469] = 212, - [470] = 241, - [471] = 246, - [472] = 206, - [473] = 214, - [474] = 173, - [475] = 191, - [476] = 197, - [477] = 276, - [478] = 223, - [479] = 205, - [480] = 425, - [481] = 210, - [482] = 181, - [483] = 180, - [484] = 241, - [485] = 200, - [486] = 212, - [487] = 216, - [488] = 180, - [489] = 215, - [490] = 424, - [491] = 165, - [492] = 219, - [493] = 246, - [494] = 231, - [495] = 190, - [496] = 204, - [497] = 270, - [498] = 498, - [499] = 266, - [500] = 276, - [501] = 259, - [502] = 275, - [503] = 256, - [504] = 213, + [429] = 213, + [430] = 197, + [431] = 215, + [432] = 214, + [433] = 257, + [434] = 224, + [435] = 194, + [436] = 246, + [437] = 247, + [438] = 248, + [439] = 252, + [440] = 255, + [441] = 256, + [442] = 211, + [443] = 211, + [444] = 258, + [445] = 244, + [446] = 161, + [447] = 223, + [448] = 254, + [449] = 259, + [450] = 257, + [451] = 222, + [452] = 249, + [453] = 227, + [454] = 213, + [455] = 180, + [456] = 250, + [457] = 242, + [458] = 174, + [459] = 217, + [460] = 190, + [461] = 233, + [462] = 245, + [463] = 244, + [464] = 394, + [465] = 187, + [466] = 187, + [467] = 250, + [468] = 254, + [469] = 227, + [470] = 223, + [471] = 414, + [472] = 258, + [473] = 249, + [474] = 224, + [475] = 211, + [476] = 225, + [477] = 198, + [478] = 244, + [479] = 245, + [480] = 191, + [481] = 186, + [482] = 186, + [483] = 202, + [484] = 217, + [485] = 174, + [486] = 213, + [487] = 257, + [488] = 197, + [489] = 194, + [490] = 186, + [491] = 190, + [492] = 229, + [493] = 212, + [494] = 161, + [495] = 242, + [496] = 257, + [497] = 229, + [498] = 220, + [499] = 220, + [500] = 215, + [501] = 216, + [502] = 212, + [503] = 230, + [504] = 504, [505] = 505, - [506] = 506, - [507] = 257, - [508] = 508, - [509] = 509, - [510] = 261, - [511] = 165, - [512] = 262, - [513] = 273, - [514] = 268, - [515] = 264, - [516] = 271, - [517] = 272, - [518] = 189, - [519] = 213, - [520] = 498, - [521] = 509, - [522] = 508, - [523] = 506, - [524] = 505, - [525] = 165, - [526] = 165, - [527] = 162, - [528] = 178, - [529] = 172, - [530] = 162, - [531] = 178, - [532] = 169, - [533] = 209, - [534] = 173, - [535] = 183, - [536] = 231, - [537] = 246, - [538] = 179, - [539] = 171, - [540] = 241, - [541] = 169, - [542] = 183, - [543] = 171, - [544] = 172, - [545] = 209, - [546] = 271, - [547] = 219, - [548] = 197, - [549] = 204, - [550] = 173, - [551] = 231, - [552] = 246, - [553] = 273, - [554] = 206, - [555] = 179, - [556] = 276, - [557] = 200, - [558] = 216, - [559] = 203, - [560] = 190, - [561] = 191, - [562] = 259, - [563] = 264, - [564] = 208, - [565] = 266, - [566] = 214, - [567] = 382, - [568] = 262, - [569] = 261, - [570] = 215, - [571] = 210, - [572] = 212, - [573] = 268, - [574] = 200, - [575] = 241, - [576] = 194, - [577] = 298, - [578] = 257, - [579] = 205, - [580] = 256, - [581] = 300, - [582] = 275, - [583] = 191, - [584] = 195, - [585] = 272, - [586] = 223, - [587] = 270, - [588] = 207, - [589] = 219, - [590] = 300, - [591] = 163, - [592] = 223, - [593] = 205, - [594] = 212, - [595] = 210, - [596] = 596, - [597] = 276, - [598] = 216, - [599] = 215, - [600] = 178, - [601] = 190, - [602] = 204, - [603] = 298, - [604] = 197, - [605] = 161, - [606] = 161, - [607] = 178, - [608] = 608, - [609] = 163, - [610] = 170, - [611] = 181, - [612] = 168, - [613] = 168, - [614] = 161, - [615] = 300, - [616] = 209, - [617] = 298, - [618] = 161, - [619] = 170, - [620] = 180, - [621] = 241, - [622] = 181, - [623] = 231, - [624] = 246, - [625] = 168, - [626] = 189, - [627] = 298, - [628] = 300, - [629] = 168, - [630] = 180, - [631] = 178, - [632] = 209, - [633] = 264, - [634] = 161, - [635] = 241, - [636] = 636, - [637] = 637, - [638] = 638, - [639] = 178, - [640] = 261, - [641] = 262, - [642] = 636, - [643] = 636, - [644] = 273, - [645] = 270, - [646] = 213, - [647] = 636, - [648] = 213, - [649] = 161, - [650] = 272, - [651] = 180, - [652] = 271, - [653] = 257, - [654] = 638, - [655] = 276, - [656] = 246, - [657] = 231, - [658] = 636, - [659] = 637, - [660] = 636, - [661] = 661, + [506] = 225, + [507] = 224, + [508] = 223, + [509] = 231, + [510] = 227, + [511] = 244, + [512] = 245, + [513] = 232, + [514] = 250, + [515] = 254, + [516] = 258, + [517] = 517, + [518] = 233, + [519] = 230, + [520] = 211, + [521] = 521, + [522] = 220, + [523] = 208, + [524] = 235, + [525] = 236, + [526] = 237, + [527] = 217, + [528] = 239, + [529] = 529, + [530] = 249, + [531] = 213, + [532] = 222, + [533] = 214, + [534] = 246, + [535] = 247, + [536] = 248, + [537] = 252, + [538] = 255, + [539] = 256, + [540] = 259, + [541] = 504, + [542] = 505, + [543] = 161, + [544] = 529, + [545] = 521, + [546] = 517, + [547] = 161, + [548] = 164, + [549] = 166, + [550] = 166, + [551] = 164, + [552] = 173, + [553] = 171, + [554] = 178, + [555] = 198, + [556] = 194, + [557] = 171, + [558] = 190, + [559] = 174, + [560] = 178, + [561] = 174, + [562] = 191, + [563] = 173, + [564] = 202, + [565] = 198, + [566] = 301, + [567] = 304, + [568] = 197, + [569] = 224, + [570] = 227, + [571] = 212, + [572] = 208, + [573] = 235, + [574] = 236, + [575] = 237, + [576] = 217, + [577] = 239, + [578] = 213, + [579] = 301, + [580] = 350, + [581] = 215, + [582] = 304, + [583] = 229, + [584] = 257, + [585] = 225, + [586] = 246, + [587] = 247, + [588] = 248, + [589] = 191, + [590] = 202, + [591] = 197, + [592] = 216, + [593] = 214, + [594] = 252, + [595] = 255, + [596] = 256, + [597] = 259, + [598] = 222, + [599] = 249, + [600] = 231, + [601] = 242, + [602] = 194, + [603] = 190, + [604] = 244, + [605] = 225, + [606] = 245, + [607] = 223, + [608] = 244, + [609] = 233, + [610] = 211, + [611] = 232, + [612] = 258, + [613] = 254, + [614] = 250, + [615] = 227, + [616] = 245, + [617] = 249, + [618] = 618, + [619] = 257, + [620] = 224, + [621] = 212, + [622] = 213, + [623] = 254, + [624] = 217, + [625] = 223, + [626] = 250, + [627] = 211, + [628] = 229, + [629] = 258, + [630] = 630, + [631] = 301, + [632] = 304, + [633] = 301, + [634] = 304, + [635] = 635, + [636] = 635, + [637] = 635, + [638] = 635, + [639] = 635, + [640] = 640, + [641] = 641, + [642] = 635, + [643] = 641, + [644] = 640, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 646, + [649] = 649, + [650] = 650, + [651] = 651, + [652] = 645, + [653] = 653, + [654] = 651, + [655] = 655, + [656] = 645, + [657] = 651, + [658] = 645, + [659] = 651, + [660] = 646, + [661] = 647, [662] = 662, - [663] = 259, - [664] = 266, - [665] = 180, - [666] = 275, - [667] = 268, - [668] = 189, - [669] = 256, - [670] = 670, - [671] = 671, - [672] = 672, - [673] = 673, - [674] = 673, - [675] = 675, - [676] = 676, - [677] = 676, - [678] = 673, - [679] = 679, - [680] = 676, - [681] = 161, - [682] = 682, - [683] = 676, - [684] = 161, - [685] = 168, - [686] = 676, - [687] = 675, - [688] = 675, - [689] = 168, - [690] = 675, - [691] = 672, - [692] = 679, - [693] = 675, - [694] = 213, - [695] = 673, - [696] = 679, - [697] = 675, - [698] = 672, - [699] = 276, - [700] = 679, - [701] = 673, - [702] = 682, - [703] = 213, - [704] = 672, - [705] = 679, - [706] = 671, - [707] = 670, - [708] = 675, - [709] = 682, - [710] = 672, - [711] = 673, - [712] = 273, - [713] = 679, - [714] = 676, - [715] = 675, - [716] = 676, - [717] = 682, - [718] = 672, - [719] = 673, - [720] = 675, - [721] = 675, - [722] = 672, - [723] = 676, - [724] = 679, - [725] = 676, - [726] = 682, - [727] = 676, - [728] = 679, - [729] = 679, - [730] = 672, - [731] = 679, - [732] = 682, - [733] = 682, - [734] = 679, - [735] = 673, - [736] = 672, - [737] = 673, - [738] = 672, - [739] = 673, - [740] = 672, - [741] = 673, - [742] = 672, - [743] = 679, - [744] = 673, - [745] = 672, - [746] = 676, - [747] = 673, - [748] = 672, - [749] = 682, - [750] = 676, - [751] = 682, - [752] = 673, - [753] = 682, - [754] = 682, - [755] = 682, - [756] = 264, - [757] = 673, - [758] = 682, - [759] = 262, - [760] = 261, - [761] = 679, - [762] = 257, - [763] = 675, - [764] = 675, - [765] = 675, - [766] = 259, - [767] = 682, - [768] = 676, - [769] = 266, - [770] = 675, - [771] = 679, - [772] = 675, - [773] = 682, - [774] = 675, - [775] = 268, - [776] = 672, - [777] = 178, - [778] = 662, - [779] = 270, - [780] = 679, - [781] = 661, - [782] = 271, - [783] = 676, - [784] = 272, - [785] = 209, - [786] = 676, - [787] = 275, - [788] = 673, - [789] = 256, - [790] = 676, - [791] = 679, - [792] = 792, - [793] = 793, - [794] = 792, - [795] = 795, - [796] = 209, - [797] = 797, - [798] = 241, - [799] = 799, - [800] = 800, - [801] = 231, - [802] = 246, - [803] = 803, - [804] = 792, - [805] = 795, - [806] = 795, - [807] = 800, - [808] = 800, - [809] = 799, - [810] = 803, - [811] = 793, - [812] = 812, - [813] = 800, - [814] = 800, - [815] = 161, - [816] = 795, - [817] = 795, - [818] = 793, - [819] = 812, - [820] = 803, - [821] = 792, - [822] = 792, - [823] = 793, - [824] = 812, - [825] = 799, - [826] = 792, - [827] = 812, - [828] = 803, - [829] = 793, + [663] = 653, + [664] = 645, + [665] = 655, + [666] = 651, + [667] = 655, + [668] = 645, + [669] = 651, + [670] = 647, + [671] = 653, + [672] = 646, + [673] = 653, + [674] = 655, + [675] = 647, + [676] = 651, + [677] = 651, + [678] = 649, + [679] = 649, + [680] = 647, + [681] = 646, + [682] = 645, + [683] = 649, + [684] = 653, + [685] = 655, + [686] = 647, + [687] = 646, + [688] = 649, + [689] = 653, + [690] = 645, + [691] = 651, + [692] = 651, + [693] = 645, + [694] = 655, + [695] = 655, + [696] = 653, + [697] = 647, + [698] = 646, + [699] = 649, + [700] = 655, + [701] = 646, + [702] = 645, + [703] = 647, + [704] = 653, + [705] = 647, + [706] = 646, + [707] = 649, + [708] = 647, + [709] = 647, + [710] = 647, + [711] = 647, + [712] = 646, + [713] = 649, + [714] = 653, + [715] = 647, + [716] = 646, + [717] = 655, + [718] = 651, + [719] = 649, + [720] = 645, + [721] = 649, + [722] = 646, + [723] = 649, + [724] = 645, + [725] = 646, + [726] = 649, + [727] = 646, + [728] = 649, + [729] = 645, + [730] = 646, + [731] = 651, + [732] = 653, + [733] = 647, + [734] = 651, + [735] = 649, + [736] = 651, + [737] = 645, + [738] = 655, + [739] = 651, + [740] = 649, + [741] = 646, + [742] = 655, + [743] = 646, + [744] = 653, + [745] = 653, + [746] = 646, + [747] = 655, + [748] = 653, + [749] = 645, + [750] = 655, + [751] = 645, + [752] = 647, + [753] = 653, + [754] = 645, + [755] = 649, + [756] = 655, + [757] = 757, + [758] = 758, + [759] = 655, + [760] = 653, + [761] = 651, + [762] = 651, + [763] = 645, + [764] = 651, + [765] = 655, + [766] = 653, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 771, + [772] = 772, + [773] = 770, + [774] = 767, + [775] = 767, + [776] = 770, + [777] = 768, + [778] = 778, + [779] = 772, + [780] = 769, + [781] = 772, + [782] = 757, + [783] = 758, + [784] = 767, + [785] = 778, + [786] = 771, + [787] = 770, + [788] = 788, + [789] = 768, + [790] = 778, + [791] = 768, + [792] = 788, + [793] = 769, + [794] = 767, + [795] = 768, + [796] = 771, + [797] = 772, + [798] = 769, + [799] = 771, + [800] = 768, + [801] = 778, + [802] = 778, + [803] = 788, + [804] = 650, + [805] = 788, + [806] = 767, + [807] = 662, + [808] = 771, + [809] = 770, + [810] = 772, + [811] = 788, + [812] = 770, + [813] = 769, + [814] = 772, + [815] = 778, + [816] = 769, + [817] = 788, + [818] = 818, + [819] = 771, + [820] = 767, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 821, + [828] = 828, + [829] = 829, [830] = 830, - [831] = 831, - [832] = 830, - [833] = 793, - [834] = 803, - [835] = 180, - [836] = 830, - [837] = 837, - [838] = 161, - [839] = 830, - [840] = 180, - [841] = 163, - [842] = 830, - [843] = 830, - [844] = 812, - [845] = 799, - [846] = 803, - [847] = 799, - [848] = 812, - [849] = 168, - [850] = 799, - [851] = 168, - [852] = 830, - [853] = 800, - [854] = 795, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 855, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 860, - [871] = 871, - [872] = 857, - [873] = 873, - [874] = 869, - [875] = 868, - [876] = 867, - [877] = 866, - [878] = 865, - [879] = 863, - [880] = 862, - [881] = 861, - [882] = 859, - [883] = 883, - [884] = 856, - [885] = 858, - [886] = 861, - [887] = 858, - [888] = 862, - [889] = 863, - [890] = 865, - [891] = 866, - [892] = 867, - [893] = 868, - [894] = 883, - [895] = 857, - [896] = 860, - [897] = 869, - [898] = 873, - [899] = 869, - [900] = 868, - [901] = 867, - [902] = 866, - [903] = 865, - [904] = 863, - [905] = 862, - [906] = 861, - [907] = 867, - [908] = 883, - [909] = 859, - [910] = 857, - [911] = 869, - [912] = 858, - [913] = 868, - [914] = 865, - [915] = 866, - [916] = 858, - [917] = 863, - [918] = 862, - [919] = 861, - [920] = 859, - [921] = 921, - [922] = 861, - [923] = 862, - [924] = 863, - [925] = 865, - [926] = 866, - [927] = 867, - [928] = 868, - [929] = 869, - [930] = 858, - [931] = 180, - [932] = 873, - [933] = 921, - [934] = 934, - [935] = 935, - [936] = 831, - [937] = 860, - [938] = 921, - [939] = 858, - [940] = 871, - [941] = 883, - [942] = 873, - [943] = 883, - [944] = 860, - [945] = 857, - [946] = 871, - [947] = 857, - [948] = 231, - [949] = 857, - [950] = 883, - [951] = 951, - [952] = 860, - [953] = 873, - [954] = 860, - [955] = 858, - [956] = 859, - [957] = 869, - [958] = 868, - [959] = 867, - [960] = 866, - [961] = 865, - [962] = 863, - [963] = 862, - [964] = 861, - [965] = 256, - [966] = 871, - [967] = 859, - [968] = 275, - [969] = 869, - [970] = 868, - [971] = 867, - [972] = 866, - [973] = 865, - [974] = 863, - [975] = 862, - [976] = 861, - [977] = 977, - [978] = 272, - [979] = 859, - [980] = 271, - [981] = 861, - [982] = 862, - [983] = 863, - [984] = 984, - [985] = 865, - [986] = 866, - [987] = 867, - [988] = 868, - [989] = 869, - [990] = 871, - [991] = 270, - [992] = 860, - [993] = 268, - [994] = 935, - [995] = 266, - [996] = 857, - [997] = 856, - [998] = 883, - [999] = 883, - [1000] = 858, - [1001] = 259, - [1002] = 257, - [1003] = 858, - [1004] = 883, - [1005] = 859, - [1006] = 261, - [1007] = 262, - [1008] = 856, - [1009] = 861, - [1010] = 862, - [1011] = 883, - [1012] = 863, - [1013] = 856, - [1014] = 865, - [1015] = 857, - [1016] = 856, - [1017] = 866, - [1018] = 856, - [1019] = 860, - [1020] = 867, - [1021] = 856, - [1022] = 868, - [1023] = 869, - [1024] = 856, - [1025] = 855, - [1026] = 873, - [1027] = 856, - [1028] = 855, - [1029] = 857, - [1030] = 856, - [1031] = 873, - [1032] = 855, - [1033] = 860, - [1034] = 859, - [1035] = 856, - [1036] = 264, - [1037] = 855, - [1038] = 860, - [1039] = 857, - [1040] = 856, - [1041] = 855, - [1042] = 871, - [1043] = 858, - [1044] = 869, - [1045] = 868, - [1046] = 859, - [1047] = 869, - [1048] = 867, - [1049] = 866, - [1050] = 860, - [1051] = 861, - [1052] = 862, - [1053] = 863, - [1054] = 1054, - [1055] = 865, - [1056] = 866, - [1057] = 867, - [1058] = 868, - [1059] = 869, - [1060] = 865, - [1061] = 873, - [1062] = 873, - [1063] = 170, - [1064] = 859, - [1065] = 860, - [1066] = 1066, - [1067] = 868, - [1068] = 867, - [1069] = 866, - [1070] = 865, - [1071] = 863, - [1072] = 862, - [1073] = 861, - [1074] = 273, - [1075] = 871, - [1076] = 921, - [1077] = 935, - [1078] = 860, - [1079] = 209, - [1080] = 837, - [1081] = 1081, - [1082] = 246, - [1083] = 1066, - [1084] = 1054, - [1085] = 859, - [1086] = 1081, - [1087] = 935, - [1088] = 921, - [1089] = 984, - [1090] = 873, - [1091] = 921, - [1092] = 859, - [1093] = 984, - [1094] = 241, - [1095] = 858, - [1096] = 984, - [1097] = 984, - [1098] = 863, - [1099] = 984, - [1100] = 984, - [1101] = 984, - [1102] = 984, - [1103] = 984, - [1104] = 977, - [1105] = 984, - [1106] = 860, - [1107] = 984, - [1108] = 1108, - [1109] = 984, - [1110] = 883, - [1111] = 168, - [1112] = 984, - [1113] = 934, - [1114] = 1054, - [1115] = 862, - [1116] = 861, - [1117] = 1066, - [1118] = 859, - [1119] = 859, - [1120] = 935, - [1121] = 180, - [1122] = 856, - [1123] = 855, - [1124] = 855, - [1125] = 856, - [1126] = 859, - [1127] = 857, - [1128] = 860, - [1129] = 858, - [1130] = 859, - [1131] = 213, - [1132] = 168, - [1133] = 856, - [1134] = 860, - [1135] = 855, - [1136] = 883, - [1137] = 883, - [1138] = 857, - [1139] = 860, - [1140] = 873, - [1141] = 859, - [1142] = 860, - [1143] = 859, - [1144] = 858, - [1145] = 276, - [1146] = 873, - [1147] = 860, - [1148] = 859, - [1149] = 873, - [1150] = 859, - [1151] = 860, - [1152] = 873, - [1153] = 859, - [1154] = 856, - [1155] = 868, - [1156] = 860, - [1157] = 1066, - [1158] = 1054, - [1159] = 859, - [1160] = 857, - [1161] = 857, - [1162] = 860, + [831] = 823, + [832] = 832, + [833] = 830, + [834] = 832, + [835] = 835, + [836] = 836, + [837] = 823, + [838] = 832, + [839] = 824, + [840] = 840, + [841] = 835, + [842] = 822, + [843] = 836, + [844] = 844, + [845] = 845, + [846] = 836, + [847] = 830, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 852, + [853] = 828, + [854] = 821, + [855] = 826, + [856] = 848, + [857] = 825, + [858] = 822, + [859] = 830, + [860] = 825, + [861] = 822, + [862] = 830, + [863] = 822, + [864] = 828, + [865] = 824, + [866] = 845, + [867] = 824, + [868] = 836, + [869] = 832, + [870] = 836, + [871] = 830, + [872] = 830, + [873] = 826, + [874] = 849, + [875] = 850, + [876] = 876, + [877] = 848, + [878] = 823, + [879] = 836, + [880] = 880, + [881] = 836, + [882] = 826, + [883] = 849, + [884] = 832, + [885] = 885, + [886] = 845, + [887] = 821, + [888] = 852, + [889] = 889, + [890] = 825, + [891] = 825, + [892] = 852, + [893] = 851, + [894] = 824, + [895] = 850, + [896] = 836, + [897] = 880, + [898] = 848, + [899] = 821, + [900] = 835, + [901] = 849, + [902] = 850, + [903] = 851, + [904] = 836, + [905] = 832, + [906] = 851, + [907] = 832, + [908] = 852, + [909] = 836, + [910] = 852, + [911] = 828, + [912] = 828, + [913] = 836, + [914] = 850, + [915] = 851, + [916] = 916, + [917] = 852, + [918] = 845, + [919] = 849, + [920] = 848, + [921] = 849, + [922] = 850, + [923] = 851, + [924] = 852, + [925] = 828, + [926] = 821, + [927] = 826, + [928] = 821, + [929] = 826, + [930] = 822, + [931] = 828, + [932] = 822, + [933] = 828, + [934] = 826, + [935] = 844, + [936] = 840, + [937] = 885, + [938] = 880, + [939] = 851, + [940] = 848, + [941] = 821, + [942] = 852, + [943] = 822, + [944] = 845, + [945] = 885, + [946] = 823, + [947] = 822, + [948] = 836, + [949] = 830, + [950] = 823, + [951] = 880, + [952] = 823, + [953] = 826, + [954] = 851, + [955] = 836, + [956] = 823, + [957] = 880, + [958] = 825, + [959] = 822, + [960] = 850, + [961] = 824, + [962] = 916, + [963] = 849, + [964] = 825, + [965] = 822, + [966] = 848, + [967] = 967, + [968] = 824, + [969] = 848, + [970] = 845, + [971] = 845, + [972] = 832, + [973] = 835, + [974] = 835, + [975] = 845, + [976] = 849, + [977] = 825, + [978] = 832, + [979] = 832, + [980] = 980, + [981] = 980, + [982] = 832, + [983] = 836, + [984] = 832, + [985] = 848, + [986] = 832, + [987] = 830, + [988] = 836, + [989] = 989, + [990] = 835, + [991] = 832, + [992] = 845, + [993] = 880, + [994] = 848, + [995] = 849, + [996] = 850, + [997] = 851, + [998] = 852, + [999] = 828, + [1000] = 821, + [1001] = 826, + [1002] = 849, + [1003] = 836, + [1004] = 822, + [1005] = 850, + [1006] = 851, + [1007] = 830, + [1008] = 850, + [1009] = 851, + [1010] = 852, + [1011] = 852, + [1012] = 836, + [1013] = 828, + [1014] = 828, + [1015] = 829, + [1016] = 822, + [1017] = 821, + [1018] = 826, + [1019] = 845, + [1020] = 824, + [1021] = 823, + [1022] = 822, + [1023] = 825, + [1024] = 830, + [1025] = 825, + [1026] = 823, + [1027] = 829, + [1028] = 832, + [1029] = 836, + [1030] = 821, + [1031] = 824, + [1032] = 845, + [1033] = 844, + [1034] = 826, + [1035] = 822, + [1036] = 823, + [1037] = 832, + [1038] = 825, + [1039] = 844, + [1040] = 832, + [1041] = 822, + [1042] = 824, + [1043] = 824, + [1044] = 840, + [1045] = 845, + [1046] = 822, + [1047] = 851, + [1048] = 832, + [1049] = 822, + [1050] = 845, + [1051] = 832, + [1052] = 832, + [1053] = 826, + [1054] = 828, + [1055] = 852, + [1056] = 885, + [1057] = 851, + [1058] = 829, + [1059] = 850, + [1060] = 849, + [1061] = 848, + [1062] = 836, + [1063] = 1063, + [1064] = 850, + [1065] = 836, + [1066] = 848, + [1067] = 849, + [1068] = 850, + [1069] = 851, + [1070] = 852, + [1071] = 828, + [1072] = 821, + [1073] = 826, + [1074] = 830, + [1075] = 830, + [1076] = 822, + [1077] = 885, + [1078] = 836, + [1079] = 829, + [1080] = 836, + [1081] = 824, + [1082] = 830, + [1083] = 823, + [1084] = 832, + [1085] = 849, + [1086] = 840, + [1087] = 832, + [1088] = 825, + [1089] = 822, + [1090] = 880, + [1091] = 880, + [1092] = 822, + [1093] = 825, + [1094] = 823, + [1095] = 829, + [1096] = 825, + [1097] = 824, + [1098] = 823, + [1099] = 885, + [1100] = 848, + [1101] = 880, + [1102] = 840, + [1103] = 825, + [1104] = 844, + [1105] = 880, + [1106] = 823, + [1107] = 821, + [1108] = 824, + [1109] = 824, + [1110] = 825, + [1111] = 835, + [1112] = 832, + [1113] = 880, + [1114] = 824, + [1115] = 880, + [1116] = 845, + [1117] = 880, + [1118] = 844, + [1119] = 840, + [1120] = 823, + [1121] = 845, + [1122] = 848, + [1123] = 849, + [1124] = 832, + [1125] = 830, + [1126] = 850, + [1127] = 836, + [1128] = 848, + [1129] = 830, + [1130] = 1063, + [1131] = 849, + [1132] = 880, + [1133] = 850, + [1134] = 851, + [1135] = 852, + [1136] = 835, + [1137] = 828, + [1138] = 845, + [1139] = 852, + [1140] = 848, + [1141] = 849, + [1142] = 850, + [1143] = 851, + [1144] = 852, + [1145] = 828, + [1146] = 821, + [1147] = 826, + [1148] = 880, + [1149] = 821, + [1150] = 822, + [1151] = 826, + [1152] = 836, + [1153] = 880, + [1154] = 828, + [1155] = 821, + [1156] = 826, + [1157] = 822, + [1158] = 822, + [1159] = 989, + [1160] = 1160, + [1161] = 876, + [1162] = 1162, [1163] = 1163, - [1164] = 861, - [1165] = 862, - [1166] = 863, - [1167] = 865, - [1168] = 866, - [1169] = 867, - [1170] = 865, - [1171] = 869, - [1172] = 873, - [1173] = 871, - [1174] = 873, - [1175] = 860, - [1176] = 859, - [1177] = 855, - [1178] = 1066, - [1179] = 1054, - [1180] = 883, - [1181] = 856, - [1182] = 855, - [1183] = 855, - [1184] = 856, - [1185] = 855, - [1186] = 883, - [1187] = 856, - [1188] = 856, - [1189] = 856, - [1190] = 935, - [1191] = 984, - [1192] = 869, - [1193] = 868, - [1194] = 867, - [1195] = 866, - [1196] = 865, - [1197] = 863, - [1198] = 862, - [1199] = 861, - [1200] = 858, - [1201] = 883, - [1202] = 1054, - [1203] = 1066, - [1204] = 857, - [1205] = 869, - [1206] = 868, - [1207] = 867, - [1208] = 856, - [1209] = 855, - [1210] = 866, - [1211] = 984, - [1212] = 863, - [1213] = 862, - [1214] = 861, - [1215] = 855, - [1216] = 858, - [1217] = 856, - [1218] = 213, - [1219] = 162, - [1220] = 1220, - [1221] = 1221, - [1222] = 181, - [1223] = 180, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 276, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 213, - [1235] = 1235, - [1236] = 1236, - [1237] = 1237, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1160, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1186, + [1219] = 1184, + [1220] = 1182, + [1221] = 1185, + [1222] = 1197, + [1223] = 1216, + [1224] = 1214, + [1225] = 1217, + [1226] = 1206, + [1227] = 1205, + [1228] = 1195, + [1229] = 1204, + [1230] = 1208, + [1231] = 1203, + [1232] = 1202, + [1233] = 1196, + [1234] = 1210, + [1235] = 1200, + [1236] = 1180, + [1237] = 1188, [1238] = 1238, - [1239] = 1239, - [1240] = 1240, - [1241] = 180, - [1242] = 1242, - [1243] = 1243, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1247, - [1248] = 1248, - [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1163, - [1267] = 1267, - [1268] = 1268, - [1269] = 231, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 273, + [1239] = 1177, + [1240] = 1174, + [1241] = 1199, + [1242] = 1170, + [1243] = 1164, + [1244] = 1175, + [1245] = 1176, + [1246] = 1181, + [1247] = 1178, + [1248] = 1169, + [1249] = 1183, + [1250] = 1211, + [1251] = 1162, + [1252] = 1189, + [1253] = 1179, + [1254] = 1207, + [1255] = 1215, + [1256] = 1191, + [1257] = 1165, + [1258] = 1192, + [1259] = 1193, + [1260] = 1194, + [1261] = 1163, + [1262] = 1168, + [1263] = 1201, + [1264] = 1198, + [1265] = 1166, + [1266] = 1173, + [1267] = 1171, + [1268] = 1209, + [1269] = 1190, + [1270] = 1212, + [1271] = 1167, + [1272] = 1187, + [1273] = 1213, [1274] = 1274, - [1275] = 1275, + [1275] = 1274, [1276] = 1276, [1277] = 1277, [1278] = 1278, - [1279] = 1279, - [1280] = 1280, - [1281] = 1281, + [1279] = 1278, + [1280] = 1276, + [1281] = 1277, [1282] = 1282, - [1283] = 264, - [1284] = 262, - [1285] = 261, - [1286] = 257, - [1287] = 259, - [1288] = 266, - [1289] = 268, - [1290] = 270, - [1291] = 271, - [1292] = 272, - [1293] = 213, - [1294] = 275, - [1295] = 256, - [1296] = 241, - [1297] = 246, - [1298] = 259, - [1299] = 1263, - [1300] = 1229, - [1301] = 272, - [1302] = 271, - [1303] = 270, - [1304] = 1231, - [1305] = 1279, - [1306] = 189, - [1307] = 268, - [1308] = 266, - [1309] = 257, - [1310] = 261, - [1311] = 262, - [1312] = 1228, - [1313] = 264, - [1314] = 273, - [1315] = 276, - [1316] = 1230, - [1317] = 1232, - [1318] = 1233, - [1319] = 256, - [1320] = 1221, - [1321] = 1235, - [1322] = 1225, - [1323] = 1237, - [1324] = 1238, - [1325] = 1239, - [1326] = 1240, - [1327] = 213, - [1328] = 1242, - [1329] = 1243, - [1330] = 1244, - [1331] = 1281, - [1332] = 1282, - [1333] = 1226, - [1334] = 1245, - [1335] = 162, - [1336] = 1246, - [1337] = 1247, - [1338] = 213, - [1339] = 1220, - [1340] = 1248, - [1341] = 1280, - [1342] = 162, - [1343] = 1249, - [1344] = 1250, - [1345] = 1236, - [1346] = 1278, - [1347] = 1277, - [1348] = 178, - [1349] = 1349, - [1350] = 1251, - [1351] = 1252, - [1352] = 1253, - [1353] = 1276, - [1354] = 1254, - [1355] = 1275, - [1356] = 1255, - [1357] = 1256, - [1358] = 1257, - [1359] = 1258, - [1360] = 1224, - [1361] = 1274, - [1362] = 1272, - [1363] = 1271, - [1364] = 1259, - [1365] = 1270, - [1366] = 1260, - [1367] = 1261, - [1368] = 1268, - [1369] = 1267, - [1370] = 1262, - [1371] = 1265, - [1372] = 275, - [1373] = 1264, - [1374] = 1374, - [1375] = 1374, - [1376] = 1376, - [1377] = 178, - [1378] = 172, - [1379] = 1379, - [1380] = 1374, - [1381] = 1376, - [1382] = 1374, - [1383] = 169, - [1384] = 178, - [1385] = 1385, - [1386] = 1386, - [1387] = 1374, - [1388] = 1374, - [1389] = 1386, - [1390] = 162, - [1391] = 1385, - [1392] = 1379, - [1393] = 209, - [1394] = 1394, - [1395] = 1394, - [1396] = 172, - [1397] = 169, - [1398] = 172, - [1399] = 1394, - [1400] = 183, - [1401] = 1394, - [1402] = 179, - [1403] = 1394, - [1404] = 178, - [1405] = 1394, - [1406] = 173, - [1407] = 1407, - [1408] = 171, - [1409] = 169, - [1410] = 1410, - [1411] = 246, - [1412] = 190, - [1413] = 214, - [1414] = 204, - [1415] = 183, - [1416] = 203, - [1417] = 178, - [1418] = 194, - [1419] = 207, - [1420] = 195, - [1421] = 206, - [1422] = 205, - [1423] = 169, - [1424] = 219, - [1425] = 173, - [1426] = 231, - [1427] = 179, - [1428] = 241, - [1429] = 212, - [1430] = 173, - [1431] = 172, - [1432] = 210, - [1433] = 215, - [1434] = 171, - [1435] = 216, - [1436] = 200, - [1437] = 208, - [1438] = 171, - [1439] = 179, - [1440] = 197, - [1441] = 191, - [1442] = 209, - [1443] = 209, - [1444] = 183, - [1445] = 223, - [1446] = 219, - [1447] = 210, - [1448] = 276, - [1449] = 264, - [1450] = 262, - [1451] = 261, - [1452] = 257, - [1453] = 178, - [1454] = 259, - [1455] = 171, - [1456] = 205, - [1457] = 205, - [1458] = 173, - [1459] = 266, - [1460] = 268, - [1461] = 270, - [1462] = 271, - [1463] = 272, - [1464] = 275, - [1465] = 256, - [1466] = 206, - [1467] = 190, - [1468] = 212, - [1469] = 191, - [1470] = 204, - [1471] = 197, - [1472] = 219, - [1473] = 207, - [1474] = 183, - [1475] = 208, - [1476] = 215, - [1477] = 216, - [1478] = 200, - [1479] = 223, - [1480] = 214, - [1481] = 223, - [1482] = 178, - [1483] = 210, - [1484] = 191, - [1485] = 194, - [1486] = 195, - [1487] = 212, - [1488] = 231, - [1489] = 203, - [1490] = 197, - [1491] = 241, - [1492] = 246, - [1493] = 382, - [1494] = 190, - [1495] = 241, - [1496] = 204, - [1497] = 246, - [1498] = 200, - [1499] = 215, - [1500] = 209, - [1501] = 179, - [1502] = 216, - [1503] = 273, - [1504] = 231, - [1505] = 178, - [1506] = 425, - [1507] = 1282, - [1508] = 259, - [1509] = 261, - [1510] = 246, - [1511] = 262, - [1512] = 264, - [1513] = 162, - [1514] = 212, - [1515] = 257, - [1516] = 200, - [1517] = 241, - [1518] = 382, - [1519] = 266, - [1520] = 276, - [1521] = 268, - [1522] = 270, - [1523] = 271, - [1524] = 210, - [1525] = 272, - [1526] = 275, - [1527] = 178, - [1528] = 276, - [1529] = 424, - [1530] = 231, - [1531] = 209, - [1532] = 273, - [1533] = 256, - [1534] = 219, - [1535] = 190, - [1536] = 191, - [1537] = 197, - [1538] = 1281, - [1539] = 205, - [1540] = 216, - [1541] = 215, - [1542] = 204, - [1543] = 223, - [1544] = 231, - [1545] = 178, - [1546] = 209, - [1547] = 425, - [1548] = 209, - [1549] = 424, - [1550] = 241, - [1551] = 276, - [1552] = 1407, - [1553] = 162, - [1554] = 246, - [1555] = 241, - [1556] = 257, - [1557] = 498, - [1558] = 505, - [1559] = 382, - [1560] = 506, - [1561] = 231, - [1562] = 509, - [1563] = 246, - [1564] = 508, - [1565] = 209, - [1566] = 276, - [1567] = 273, - [1568] = 246, - [1569] = 241, - [1570] = 169, - [1571] = 256, - [1572] = 275, - [1573] = 272, - [1574] = 271, - [1575] = 266, - [1576] = 270, - [1577] = 209, - [1578] = 268, - [1579] = 172, - [1580] = 231, - [1581] = 259, - [1582] = 262, - [1583] = 261, - [1584] = 264, - [1585] = 273, - [1586] = 276, - [1587] = 172, - [1588] = 382, - [1589] = 241, - [1590] = 241, - [1591] = 179, - [1592] = 276, - [1593] = 246, - [1594] = 231, - [1595] = 173, - [1596] = 264, - [1597] = 262, - [1598] = 261, - [1599] = 257, - [1600] = 259, - [1601] = 209, - [1602] = 266, - [1603] = 268, - [1604] = 270, - [1605] = 169, - [1606] = 271, - [1607] = 272, - [1608] = 275, - [1609] = 256, - [1610] = 508, - [1611] = 425, - [1612] = 424, - [1613] = 498, - [1614] = 231, - [1615] = 505, - [1616] = 246, - [1617] = 183, - [1618] = 171, - [1619] = 506, - [1620] = 509, - [1621] = 271, - [1622] = 223, - [1623] = 1282, - [1624] = 203, - [1625] = 264, - [1626] = 183, - [1627] = 276, - [1628] = 262, - [1629] = 206, - [1630] = 261, - [1631] = 1281, - [1632] = 1632, - [1633] = 257, - [1634] = 204, - [1635] = 259, - [1636] = 246, - [1637] = 190, - [1638] = 231, - [1639] = 173, - [1640] = 171, - [1641] = 219, - [1642] = 266, - [1643] = 268, - [1644] = 270, - [1645] = 424, - [1646] = 195, - [1647] = 208, - [1648] = 207, - [1649] = 205, - [1650] = 275, + [1283] = 1283, + [1284] = 1201, + [1285] = 1199, + [1286] = 1282, + [1287] = 1199, + [1288] = 231, + [1289] = 1289, + [1290] = 1201, + [1291] = 232, + [1292] = 1292, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 166, + [1300] = 164, + [1301] = 163, + [1302] = 163, + [1303] = 166, + [1304] = 165, + [1305] = 1305, + [1306] = 1305, + [1307] = 165, + [1308] = 1305, + [1309] = 1305, + [1310] = 1305, + [1311] = 1305, + [1312] = 163, + [1313] = 174, + [1314] = 1305, + [1315] = 1305, + [1316] = 1305, + [1317] = 163, + [1318] = 164, + [1319] = 1305, + [1320] = 165, + [1321] = 1305, + [1322] = 1305, + [1323] = 165, + [1324] = 1305, + [1325] = 180, + [1326] = 1305, + [1327] = 1305, + [1328] = 1305, + [1329] = 1305, + [1330] = 1305, + [1331] = 1305, + [1332] = 182, + [1333] = 1305, + [1334] = 173, + [1335] = 1305, + [1336] = 1305, + [1337] = 180, + [1338] = 178, + [1339] = 1305, + [1340] = 1305, + [1341] = 186, + [1342] = 180, + [1343] = 174, + [1344] = 180, + [1345] = 171, + [1346] = 182, + [1347] = 182, + [1348] = 165, + [1349] = 187, + [1350] = 182, + [1351] = 173, + [1352] = 174, + [1353] = 187, + [1354] = 198, + [1355] = 194, + [1356] = 165, + [1357] = 178, + [1358] = 191, + [1359] = 186, + [1360] = 257, + [1361] = 215, + [1362] = 186, + [1363] = 202, + [1364] = 182, + [1365] = 231, + [1366] = 191, + [1367] = 232, + [1368] = 194, + [1369] = 190, + [1370] = 171, + [1371] = 197, + [1372] = 233, + [1373] = 242, + [1374] = 230, + [1375] = 182, + [1376] = 225, + [1377] = 224, + [1378] = 223, + [1379] = 244, + [1380] = 245, + [1381] = 250, + [1382] = 187, + [1383] = 254, + [1384] = 258, + [1385] = 186, + [1386] = 211, + [1387] = 256, + [1388] = 220, + [1389] = 164, + [1390] = 217, + [1391] = 174, + [1392] = 212, + [1393] = 213, + [1394] = 230, + [1395] = 187, + [1396] = 249, + [1397] = 229, + [1398] = 216, + [1399] = 198, + [1400] = 229, + [1401] = 255, + [1402] = 220, + [1403] = 239, + [1404] = 215, + [1405] = 186, + [1406] = 237, + [1407] = 250, + [1408] = 227, + [1409] = 164, + [1410] = 233, + [1411] = 242, + [1412] = 230, + [1413] = 256, + [1414] = 245, + [1415] = 165, + [1416] = 230, + [1417] = 211, + [1418] = 213, + [1419] = 220, + [1420] = 236, + [1421] = 232, + [1422] = 235, + [1423] = 257, + [1424] = 258, + [1425] = 231, + [1426] = 208, + [1427] = 186, + [1428] = 212, + [1429] = 254, + [1430] = 220, + [1431] = 225, + [1432] = 217, + [1433] = 224, + [1434] = 190, + [1435] = 197, + [1436] = 244, + [1437] = 222, + [1438] = 165, + [1439] = 259, + [1440] = 216, + [1441] = 214, + [1442] = 246, + [1443] = 247, + [1444] = 249, + [1445] = 202, + [1446] = 252, + [1447] = 248, + [1448] = 223, + [1449] = 247, + [1450] = 248, + [1451] = 236, + [1452] = 220, + [1453] = 239, + [1454] = 237, + [1455] = 164, + [1456] = 246, + [1457] = 227, + [1458] = 166, + [1459] = 165, + [1460] = 214, + [1461] = 182, + [1462] = 165, + [1463] = 208, + [1464] = 220, + [1465] = 222, + [1466] = 182, + [1467] = 235, + [1468] = 252, + [1469] = 259, + [1470] = 255, + [1471] = 171, + [1472] = 202, + [1473] = 163, + [1474] = 186, + [1475] = 182, + [1476] = 171, + [1477] = 165, + [1478] = 163, + [1479] = 186, + [1480] = 182, + [1481] = 190, + [1482] = 165, + [1483] = 197, + [1484] = 165, + [1485] = 235, + [1486] = 227, + [1487] = 237, + [1488] = 186, + [1489] = 182, + [1490] = 178, + [1491] = 180, + [1492] = 182, + [1493] = 222, + [1494] = 171, + [1495] = 173, + [1496] = 259, + [1497] = 180, + [1498] = 190, + [1499] = 247, + [1500] = 246, + [1501] = 182, + [1502] = 202, + [1503] = 220, + [1504] = 208, + [1505] = 214, + [1506] = 248, + [1507] = 197, + [1508] = 220, + [1509] = 174, + [1510] = 239, + [1511] = 186, + [1512] = 236, + [1513] = 252, + [1514] = 255, + [1515] = 166, + [1516] = 220, + [1517] = 186, + [1518] = 191, + [1519] = 187, + [1520] = 202, + [1521] = 197, + [1522] = 194, + [1523] = 190, + [1524] = 186, + [1525] = 198, + [1526] = 220, + [1527] = 174, + [1528] = 214, + [1529] = 222, + [1530] = 259, + [1531] = 255, + [1532] = 252, + [1533] = 248, + [1534] = 247, + [1535] = 246, + [1536] = 239, + [1537] = 187, + [1538] = 237, + [1539] = 236, + [1540] = 235, + [1541] = 208, + [1542] = 186, + [1543] = 227, + [1544] = 235, + [1545] = 164, + [1546] = 208, + [1547] = 220, + [1548] = 230, + [1549] = 230, + [1550] = 166, + [1551] = 229, + [1552] = 237, + [1553] = 233, + [1554] = 231, + [1555] = 242, + [1556] = 246, + [1557] = 247, + [1558] = 211, + [1559] = 248, + [1560] = 258, + [1561] = 254, + [1562] = 250, + [1563] = 245, + [1564] = 244, + [1565] = 252, + [1566] = 227, + [1567] = 223, + [1568] = 212, + [1569] = 214, + [1570] = 220, + [1571] = 222, + [1572] = 224, + [1573] = 225, + [1574] = 217, + [1575] = 236, + [1576] = 259, + [1577] = 255, + [1578] = 166, + [1579] = 249, + [1580] = 257, + [1581] = 256, + [1582] = 216, + [1583] = 215, + [1584] = 213, + [1585] = 239, + [1586] = 232, + [1587] = 220, + [1588] = 1588, + [1589] = 1588, + [1590] = 1588, + [1591] = 164, + [1592] = 173, + [1593] = 1588, + [1594] = 166, + [1595] = 178, + [1596] = 1588, + [1597] = 1588, + [1598] = 164, + [1599] = 1599, + [1600] = 1599, + [1601] = 198, + [1602] = 174, + [1603] = 191, + [1604] = 1599, + [1605] = 173, + [1606] = 1599, + [1607] = 1599, + [1608] = 178, + [1609] = 173, + [1610] = 164, + [1611] = 171, + [1612] = 1599, + [1613] = 178, + [1614] = 194, + [1615] = 202, + [1616] = 211, + [1617] = 173, + [1618] = 254, + [1619] = 257, + [1620] = 258, + [1621] = 250, + [1622] = 178, + [1623] = 249, + [1624] = 198, + [1625] = 197, + [1626] = 190, + [1627] = 174, + [1628] = 174, + [1629] = 245, + [1630] = 194, + [1631] = 244, + [1632] = 217, + [1633] = 216, + [1634] = 213, + [1635] = 215, + [1636] = 223, + [1637] = 224, + [1638] = 225, + [1639] = 191, + [1640] = 232, + [1641] = 194, + [1642] = 171, + [1643] = 191, + [1644] = 229, + [1645] = 233, + [1646] = 198, + [1647] = 242, + [1648] = 212, + [1649] = 231, + [1650] = 164, [1651] = 256, - [1652] = 212, - [1653] = 210, - [1654] = 215, - [1655] = 216, - [1656] = 200, - [1657] = 208, - [1658] = 425, - [1659] = 382, - [1660] = 276, - [1661] = 214, - [1662] = 272, - [1663] = 203, - [1664] = 197, - [1665] = 191, - [1666] = 179, - [1667] = 194, - [1668] = 241, - [1669] = 273, - [1670] = 1670, - [1671] = 200, - [1672] = 190, - [1673] = 1673, - [1674] = 212, - [1675] = 204, - [1676] = 223, - [1677] = 205, - [1678] = 216, - [1679] = 197, - [1680] = 191, - [1681] = 215, - [1682] = 210, - [1683] = 276, - [1684] = 1684, - [1685] = 1685, - [1686] = 508, - [1687] = 505, - [1688] = 506, - [1689] = 219, - [1690] = 509, - [1691] = 1691, - [1692] = 498, - [1693] = 1693, - [1694] = 506, - [1695] = 509, - [1696] = 508, - [1697] = 498, - [1698] = 505, - [1699] = 1699, - [1700] = 424, - [1701] = 1701, - [1702] = 1702, - [1703] = 1701, - [1704] = 1702, - [1705] = 1701, - [1706] = 1706, - [1707] = 1701, - [1708] = 1701, - [1709] = 1702, - [1710] = 1701, - [1711] = 1701, - [1712] = 1701, - [1713] = 1701, - [1714] = 1701, - [1715] = 1702, - [1716] = 1702, - [1717] = 1702, - [1718] = 1701, - [1719] = 425, - [1720] = 1701, - [1721] = 1702, - [1722] = 1701, - [1723] = 1702, - [1724] = 1702, - [1725] = 1701, - [1726] = 1701, - [1727] = 1727, - [1728] = 1728, - [1729] = 1729, - [1730] = 1730, - [1731] = 1731, - [1732] = 1729, - [1733] = 1731, - [1734] = 1728, - [1735] = 1735, - [1736] = 1730, - [1737] = 1737, - [1738] = 1730, - [1739] = 1739, - [1740] = 1730, - [1741] = 1735, - [1742] = 1742, - [1743] = 1729, - [1744] = 1729, - [1745] = 1730, - [1746] = 1746, - [1747] = 1747, - [1748] = 1730, - [1749] = 1749, - [1750] = 1728, - [1751] = 1747, - [1752] = 1752, - [1753] = 1746, - [1754] = 1739, - [1755] = 1755, - [1756] = 1731, - [1757] = 1731, - [1758] = 1742, - [1759] = 1752, - [1760] = 1746, - [1761] = 1747, - [1762] = 1730, - [1763] = 1763, - [1764] = 1731, - [1765] = 1729, - [1766] = 1730, - [1767] = 1742, - [1768] = 1731, - [1769] = 1731, - [1770] = 1730, - [1771] = 1731, - [1772] = 1730, - [1773] = 1746, - [1774] = 1730, - [1775] = 1735, - [1776] = 1731, - [1777] = 1747, - [1778] = 1755, - [1779] = 1763, - [1780] = 1737, - [1781] = 1739, - [1782] = 1735, - [1783] = 1752, - [1784] = 1742, - [1785] = 1737, - [1786] = 1730, - [1787] = 1728, - [1788] = 1746, - [1789] = 1752, - [1790] = 1752, - [1791] = 1791, - [1792] = 1739, - [1793] = 1731, - [1794] = 1731, - [1795] = 1731, - [1796] = 1730, - [1797] = 1737, - [1798] = 1735, - [1799] = 1728, - [1800] = 1739, - [1801] = 1739, - [1802] = 1791, - [1803] = 1735, - [1804] = 1731, - [1805] = 1747, - [1806] = 1746, - [1807] = 1731, - [1808] = 1730, - [1809] = 1731, - [1810] = 1729, - [1811] = 1737, - [1812] = 1747, - [1813] = 1742, - [1814] = 1731, - [1815] = 1752, - [1816] = 1728, - [1817] = 1730, - [1818] = 1737, - [1819] = 1730, - [1820] = 1742, - [1821] = 1821, - [1822] = 1821, - [1823] = 1821, - [1824] = 1821, - [1825] = 1821, - [1826] = 1821, - [1827] = 1821, - [1828] = 1821, - [1829] = 1821, - [1830] = 1821, - [1831] = 1821, - [1832] = 1821, - [1833] = 1821, - [1834] = 1821, - [1835] = 1821, - [1836] = 1821, - [1837] = 1837, - [1838] = 831, - [1839] = 1839, - [1840] = 831, - [1841] = 831, - [1842] = 831, - [1843] = 1843, - [1844] = 1376, - [1845] = 1376, - [1846] = 1379, - [1847] = 1847, - [1848] = 1386, - [1849] = 1849, - [1850] = 1850, - [1851] = 1379, - [1852] = 1385, - [1853] = 1843, - [1854] = 1850, - [1855] = 1386, - [1856] = 1385, - [1857] = 1857, - [1858] = 1857, - [1859] = 1857, - [1860] = 1857, - [1861] = 1861, - [1862] = 1857, - [1863] = 1857, - [1864] = 1857, - [1865] = 1865, - [1866] = 1857, - [1867] = 1857, - [1868] = 1857, - [1869] = 1857, - [1870] = 1857, - [1871] = 1857, - [1872] = 1857, - [1873] = 1857, - [1874] = 1857, - [1875] = 1857, - [1876] = 1857, - [1877] = 1857, - [1878] = 1857, - [1879] = 1879, - [1880] = 1857, - [1881] = 1857, - [1882] = 1857, - [1883] = 1883, - [1884] = 1857, - [1885] = 1857, - [1886] = 1886, - [1887] = 1886, - [1888] = 1888, - [1889] = 1886, - [1890] = 1888, - [1891] = 1888, - [1892] = 1886, - [1893] = 1886, - [1894] = 1888, - [1895] = 1888, - [1896] = 1888, - [1897] = 1888, - [1898] = 1888, - [1899] = 1886, - [1900] = 1888, - [1901] = 1886, - [1902] = 1886, - [1903] = 1886, - [1904] = 1888, - [1905] = 1888, - [1906] = 1886, - [1907] = 1888, - [1908] = 1888, - [1909] = 1888, - [1910] = 1888, - [1911] = 1886, - [1912] = 1888, - [1913] = 1888, - [1914] = 1888, - [1915] = 1886, - [1916] = 1888, - [1917] = 1917, - [1918] = 1886, - [1919] = 1886, - [1920] = 1888, - [1921] = 1886, - [1922] = 1886, - [1923] = 1923, - [1924] = 1888, - [1925] = 1886, - [1926] = 1886, - [1927] = 1927, - [1928] = 1886, - [1929] = 1929, - [1930] = 1888, - [1931] = 1886, - [1932] = 1886, - [1933] = 1886, - [1934] = 1886, - [1935] = 1888, - [1936] = 1888, - [1937] = 1886, - [1938] = 1376, - [1939] = 1939, - [1940] = 1376, - [1941] = 1941, + [1652] = 171, + [1653] = 211, + [1654] = 208, + [1655] = 232, + [1656] = 231, + [1657] = 229, + [1658] = 191, + [1659] = 194, + [1660] = 249, + [1661] = 257, + [1662] = 213, + [1663] = 217, + [1664] = 256, + [1665] = 198, + [1666] = 164, + [1667] = 211, + [1668] = 202, + [1669] = 258, + [1670] = 254, + [1671] = 250, + [1672] = 245, + [1673] = 244, + [1674] = 223, + [1675] = 224, + [1676] = 225, + [1677] = 350, + [1678] = 242, + [1679] = 214, + [1680] = 202, + [1681] = 233, + [1682] = 174, + [1683] = 171, + [1684] = 215, + [1685] = 225, + [1686] = 249, + [1687] = 224, + [1688] = 223, + [1689] = 255, + [1690] = 235, + [1691] = 244, + [1692] = 245, + [1693] = 250, + [1694] = 254, + [1695] = 258, + [1696] = 227, + [1697] = 212, + [1698] = 190, + [1699] = 197, + [1700] = 236, + [1701] = 190, + [1702] = 197, + [1703] = 259, + [1704] = 222, + [1705] = 246, + [1706] = 216, + [1707] = 217, + [1708] = 213, + [1709] = 257, + [1710] = 164, + [1711] = 229, + [1712] = 247, + [1713] = 248, + [1714] = 237, + [1715] = 212, + [1716] = 252, + [1717] = 239, + [1718] = 217, + [1719] = 350, + [1720] = 164, + [1721] = 229, + [1722] = 211, + [1723] = 258, + [1724] = 254, + [1725] = 250, + [1726] = 245, + [1727] = 244, + [1728] = 223, + [1729] = 225, + [1730] = 164, + [1731] = 249, + [1732] = 190, + [1733] = 197, + [1734] = 227, + [1735] = 202, + [1736] = 257, + [1737] = 239, + [1738] = 213, + [1739] = 214, + [1740] = 227, + [1741] = 171, + [1742] = 222, + [1743] = 414, + [1744] = 259, + [1745] = 394, + [1746] = 208, + [1747] = 235, + [1748] = 166, + [1749] = 255, + [1750] = 212, + [1751] = 252, + [1752] = 248, + [1753] = 247, + [1754] = 236, + [1755] = 224, + [1756] = 237, + [1757] = 246, + [1758] = 197, + [1759] = 227, + [1760] = 414, + [1761] = 166, + [1762] = 164, + [1763] = 171, + [1764] = 190, + [1765] = 171, + [1766] = 202, + [1767] = 394, + [1768] = 504, + [1769] = 171, + [1770] = 214, + [1771] = 190, + [1772] = 222, + [1773] = 517, + [1774] = 529, + [1775] = 521, + [1776] = 259, + [1777] = 171, + [1778] = 255, + [1779] = 202, + [1780] = 197, + [1781] = 190, + [1782] = 252, + [1783] = 197, + [1784] = 236, + [1785] = 202, + [1786] = 227, + [1787] = 173, + [1788] = 237, + [1789] = 505, + [1790] = 246, + [1791] = 247, + [1792] = 239, + [1793] = 350, + [1794] = 178, + [1795] = 208, + [1796] = 248, + [1797] = 235, + [1798] = 227, + [1799] = 236, + [1800] = 208, + [1801] = 350, + [1802] = 202, + [1803] = 197, + [1804] = 237, + [1805] = 394, + [1806] = 414, + [1807] = 190, + [1808] = 235, + [1809] = 190, + [1810] = 239, + [1811] = 173, + [1812] = 171, + [1813] = 227, + [1814] = 198, + [1815] = 246, + [1816] = 521, + [1817] = 202, + [1818] = 247, + [1819] = 174, + [1820] = 178, + [1821] = 255, + [1822] = 194, + [1823] = 252, + [1824] = 191, + [1825] = 248, + [1826] = 505, + [1827] = 222, + [1828] = 259, + [1829] = 214, + [1830] = 504, + [1831] = 197, + [1832] = 529, + [1833] = 517, + [1834] = 227, + [1835] = 245, + [1836] = 255, + [1837] = 232, + [1838] = 190, + [1839] = 252, + [1840] = 414, + [1841] = 222, + [1842] = 249, + [1843] = 250, + [1844] = 233, + [1845] = 231, + [1846] = 259, + [1847] = 208, + [1848] = 248, + [1849] = 217, + [1850] = 257, + [1851] = 213, + [1852] = 244, + [1853] = 239, + [1854] = 247, + [1855] = 254, + [1856] = 258, + [1857] = 211, + [1858] = 198, + [1859] = 236, + [1860] = 242, + [1861] = 235, + [1862] = 223, + [1863] = 237, + [1864] = 394, + [1865] = 246, + [1866] = 174, + [1867] = 194, + [1868] = 227, + [1869] = 214, + [1870] = 197, + [1871] = 224, + [1872] = 225, + [1873] = 202, + [1874] = 256, + [1875] = 216, + [1876] = 350, + [1877] = 191, + [1878] = 215, + [1879] = 229, + [1880] = 212, + [1881] = 217, + [1882] = 517, + [1883] = 521, + [1884] = 529, + [1885] = 244, + [1886] = 245, + [1887] = 225, + [1888] = 249, + [1889] = 505, + [1890] = 211, + [1891] = 250, + [1892] = 258, + [1893] = 229, + [1894] = 254, + [1895] = 227, + [1896] = 257, + [1897] = 504, + [1898] = 213, + [1899] = 223, + [1900] = 224, + [1901] = 212, + [1902] = 517, + [1903] = 529, + [1904] = 521, + [1905] = 504, + [1906] = 505, + [1907] = 1907, + [1908] = 394, + [1909] = 1909, + [1910] = 1910, + [1911] = 1909, + [1912] = 1909, + [1913] = 1910, + [1914] = 1909, + [1915] = 1910, + [1916] = 1909, + [1917] = 1910, + [1918] = 1909, + [1919] = 1910, + [1920] = 1909, + [1921] = 1910, + [1922] = 1910, + [1923] = 1910, + [1924] = 1924, + [1925] = 1910, + [1926] = 1910, + [1927] = 1909, + [1928] = 1910, + [1929] = 414, + [1930] = 1909, + [1931] = 1909, + [1932] = 1910, + [1933] = 1910, + [1934] = 1909, + [1935] = 1910, + [1936] = 1910, + [1937] = 1910, + [1938] = 1938, + [1939] = 1910, + [1940] = 1909, + [1941] = 1910, [1942] = 1942, [1943] = 1943, [1944] = 1944, - [1945] = 1941, - [1946] = 1385, - [1947] = 1349, - [1948] = 1386, - [1949] = 1941, - [1950] = 1939, - [1951] = 1939, - [1952] = 1942, - [1953] = 1939, + [1945] = 1945, + [1946] = 1946, + [1947] = 1946, + [1948] = 1948, + [1949] = 1949, + [1950] = 1942, + [1951] = 1944, + [1952] = 1949, + [1953] = 1953, [1954] = 1954, - [1955] = 1385, - [1956] = 1942, - [1957] = 1941, - [1958] = 1942, - [1959] = 1939, - [1960] = 1960, - [1961] = 1941, - [1962] = 1386, - [1963] = 1944, - [1964] = 1941, - [1965] = 1379, - [1966] = 1943, - [1967] = 1944, - [1968] = 1944, - [1969] = 1944, - [1970] = 1944, - [1971] = 1939, - [1972] = 1379, - [1973] = 1954, - [1974] = 1942, - [1975] = 1942, - [1976] = 1976, - [1977] = 1977, - [1978] = 1978, - [1979] = 1976, - [1980] = 1978, - [1981] = 1981, - [1982] = 1978, - [1983] = 1977, - [1984] = 1984, - [1985] = 1976, - [1986] = 1977, - [1987] = 1978, - [1988] = 1976, - [1989] = 1989, - [1990] = 1977, - [1991] = 1978, - [1992] = 1978, - [1993] = 1976, - [1994] = 1977, - [1995] = 1978, - [1996] = 1996, - [1997] = 1977, - [1998] = 1977, - [1999] = 1999, - [2000] = 1978, - [2001] = 1978, - [2002] = 1977, - [2003] = 1977, - [2004] = 2004, - [2005] = 1989, - [2006] = 1976, - [2007] = 1977, - [2008] = 1978, - [2009] = 2004, - [2010] = 1981, - [2011] = 2011, - [2012] = 2011, - [2013] = 2011, - [2014] = 2011, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2011, - [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 2022, - [2023] = 2011, - [2024] = 2024, - [2025] = 2025, - [2026] = 2025, - [2027] = 2025, - [2028] = 241, - [2029] = 2029, - [2030] = 2025, - [2031] = 246, - [2032] = 2025, - [2033] = 2033, - [2034] = 2034, - [2035] = 2025, - [2036] = 2025, - [2037] = 2029, - [2038] = 2038, - [2039] = 2039, - [2040] = 2029, - [2041] = 2041, - [2042] = 2025, - [2043] = 2025, - [2044] = 2044, - [2045] = 2045, - [2046] = 2045, - [2047] = 2025, - [2048] = 2025, - [2049] = 2025, - [2050] = 2025, - [2051] = 2025, - [2052] = 2045, - [2053] = 2029, - [2054] = 2045, - [2055] = 2045, - [2056] = 2045, - [2057] = 2045, - [2058] = 2045, - [2059] = 2025, - [2060] = 2045, - [2061] = 2045, - [2062] = 2045, - [2063] = 2045, - [2064] = 2045, - [2065] = 2045, - [2066] = 2045, - [2067] = 2029, - [2068] = 2029, - [2069] = 2069, + [1955] = 1949, + [1956] = 1946, + [1957] = 1943, + [1958] = 1958, + [1959] = 1946, + [1960] = 1944, + [1961] = 1961, + [1962] = 1944, + [1963] = 1953, + [1964] = 1953, + [1965] = 1965, + [1966] = 1966, + [1967] = 1954, + [1968] = 1958, + [1969] = 1942, + [1970] = 1965, + [1971] = 1944, + [1972] = 1966, + [1973] = 1973, + [1974] = 1953, + [1975] = 1948, + [1976] = 1944, + [1977] = 1953, + [1978] = 1973, + [1979] = 1954, + [1980] = 1973, + [1981] = 1953, + [1982] = 1942, + [1983] = 1946, + [1984] = 1953, + [1985] = 1944, + [1986] = 1948, + [1987] = 1948, + [1988] = 1944, + [1989] = 1949, + [1990] = 1990, + [1991] = 1953, + [1992] = 1973, + [1993] = 1958, + [1994] = 1965, + [1995] = 1966, + [1996] = 1973, + [1997] = 1953, + [1998] = 1948, + [1999] = 1944, + [2000] = 1961, + [2001] = 1966, + [2002] = 1953, + [2003] = 1953, + [2004] = 1944, + [2005] = 1954, + [2006] = 1942, + [2007] = 1949, + [2008] = 1965, + [2009] = 1958, + [2010] = 1944, + [2011] = 1965, + [2012] = 1958, + [2013] = 1990, + [2014] = 1966, + [2015] = 1953, + [2016] = 1966, + [2017] = 1944, + [2018] = 1946, + [2019] = 1942, + [2020] = 1965, + [2021] = 1954, + [2022] = 1949, + [2023] = 1953, + [2024] = 1954, + [2025] = 1953, + [2026] = 1944, + [2027] = 1953, + [2028] = 1944, + [2029] = 1953, + [2030] = 1944, + [2031] = 1973, + [2032] = 1948, + [2033] = 1958, + [2034] = 1944, + [2035] = 2035, + [2036] = 2035, + [2037] = 2035, + [2038] = 2035, + [2039] = 2035, + [2040] = 2035, + [2041] = 2035, + [2042] = 2035, + [2043] = 2035, + [2044] = 2035, + [2045] = 2035, + [2046] = 2035, + [2047] = 2035, + [2048] = 2035, + [2049] = 2035, + [2050] = 2035, + [2051] = 2051, + [2052] = 989, + [2053] = 989, + [2054] = 989, + [2055] = 1276, + [2056] = 2056, + [2057] = 1276, + [2058] = 1277, + [2059] = 1278, + [2060] = 1274, + [2061] = 2061, + [2062] = 2062, + [2063] = 989, + [2064] = 2064, + [2065] = 1274, + [2066] = 1278, + [2067] = 2064, + [2068] = 2056, + [2069] = 1277, [2070] = 2070, - [2071] = 2071, + [2071] = 2070, [2072] = 2072, - [2073] = 2071, - [2074] = 2074, - [2075] = 2069, - [2076] = 2076, - [2077] = 2071, - [2078] = 2072, - [2079] = 2079, - [2080] = 2080, - [2081] = 2069, + [2073] = 2070, + [2074] = 2070, + [2075] = 2070, + [2076] = 2070, + [2077] = 2070, + [2078] = 2070, + [2079] = 2070, + [2080] = 2070, + [2081] = 2070, [2082] = 2082, - [2083] = 2071, - [2084] = 2072, - [2085] = 2072, - [2086] = 2069, - [2087] = 2070, - [2088] = 2088, - [2089] = 2071, - [2090] = 2072, - [2091] = 2091, - [2092] = 2092, - [2093] = 2069, - [2094] = 2071, - [2095] = 2071, - [2096] = 2072, - [2097] = 2097, - [2098] = 2072, - [2099] = 2069, - [2100] = 2074, - [2101] = 2071, - [2102] = 2072, - [2103] = 2070, - [2104] = 2074, - [2105] = 2069, - [2106] = 2074, - [2107] = 2071, - [2108] = 2069, - [2109] = 2069, - [2110] = 2069, - [2111] = 2069, - [2112] = 2069, - [2113] = 2069, - [2114] = 2114, - [2115] = 2115, - [2116] = 2076, - [2117] = 2117, - [2118] = 2076, - [2119] = 2082, - [2120] = 2076, - [2121] = 2121, - [2122] = 2097, - [2123] = 2071, - [2124] = 2082, - [2125] = 2072, - [2126] = 2088, - [2127] = 2127, - [2128] = 2121, - [2129] = 2088, + [2083] = 2070, + [2084] = 2070, + [2085] = 2070, + [2086] = 2070, + [2087] = 2087, + [2088] = 2070, + [2089] = 2089, + [2090] = 2070, + [2091] = 2070, + [2092] = 2070, + [2093] = 2070, + [2094] = 2070, + [2095] = 2070, + [2096] = 2070, + [2097] = 2070, + [2098] = 2070, + [2099] = 2099, + [2100] = 2100, + [2101] = 2100, + [2102] = 2100, + [2103] = 2100, + [2104] = 2100, + [2105] = 2100, + [2106] = 2100, + [2107] = 2107, + [2108] = 2100, + [2109] = 2100, + [2110] = 2100, + [2111] = 2111, + [2112] = 2100, + [2113] = 2100, + [2114] = 2100, + [2115] = 2100, + [2116] = 2100, + [2117] = 2100, + [2118] = 2100, + [2119] = 2100, + [2120] = 2120, + [2121] = 2100, + [2122] = 2100, + [2123] = 2100, + [2124] = 2100, + [2125] = 2100, + [2126] = 2100, + [2127] = 1278, + [2128] = 2128, + [2129] = 1274, [2130] = 2130, - [2131] = 2069, - [2132] = 2082, - [2133] = 2071, - [2134] = 2071, - [2135] = 2072, - [2136] = 2070, - [2137] = 2070, - [2138] = 2069, - [2139] = 2070, - [2140] = 2074, - [2141] = 2076, - [2142] = 2082, - [2143] = 2076, - [2144] = 2088, - [2145] = 2088, - [2146] = 2069, - [2147] = 2072, - [2148] = 2071, - [2149] = 2082, - [2150] = 2150, - [2151] = 2151, - [2152] = 2074, - [2153] = 2070, - [2154] = 2082, - [2155] = 2082, - [2156] = 2156, - [2157] = 2088, - [2158] = 171, - [2159] = 2082, - [2160] = 2076, - [2161] = 2070, - [2162] = 2069, - [2163] = 2088, - [2164] = 2076, + [2131] = 2131, + [2132] = 2128, + [2133] = 1274, + [2134] = 1277, + [2135] = 1276, + [2136] = 2136, + [2137] = 1276, + [2138] = 2128, + [2139] = 2139, + [2140] = 1277, + [2141] = 2141, + [2142] = 2141, + [2143] = 2131, + [2144] = 2139, + [2145] = 2130, + [2146] = 2141, + [2147] = 1238, + [2148] = 2139, + [2149] = 2149, + [2150] = 2128, + [2151] = 2131, + [2152] = 2139, + [2153] = 2139, + [2154] = 1278, + [2155] = 2128, + [2156] = 2136, + [2157] = 2141, + [2158] = 2131, + [2159] = 2141, + [2160] = 2131, + [2161] = 2128, + [2162] = 2131, + [2163] = 2139, + [2164] = 2141, [2165] = 2165, - [2166] = 2074, - [2167] = 2070, - [2168] = 2074, - [2169] = 2076, - [2170] = 2170, - [2171] = 2070, - [2172] = 2082, - [2173] = 2088, - [2174] = 206, - [2175] = 2088, - [2176] = 2076, - [2177] = 2074, - [2178] = 2072, - [2179] = 2088, - [2180] = 2076, - [2181] = 2072, - [2182] = 2117, - [2183] = 2074, - [2184] = 2184, - [2185] = 2114, - [2186] = 2115, - [2187] = 2070, - [2188] = 2117, - [2189] = 2088, - [2190] = 2088, - [2191] = 2076, - [2192] = 2074, - [2193] = 2070, + [2166] = 2166, + [2167] = 2166, + [2168] = 2168, + [2169] = 2166, + [2170] = 2165, + [2171] = 2168, + [2172] = 2168, + [2173] = 2168, + [2174] = 2168, + [2175] = 2168, + [2176] = 2166, + [2177] = 2168, + [2178] = 2168, + [2179] = 2179, + [2180] = 2180, + [2181] = 2166, + [2182] = 2166, + [2183] = 2180, + [2184] = 2168, + [2185] = 2166, + [2186] = 2166, + [2187] = 2166, + [2188] = 2165, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 2168, + [2193] = 2168, [2194] = 2194, - [2195] = 2088, - [2196] = 2088, - [2197] = 2076, - [2198] = 2198, - [2199] = 2074, - [2200] = 2070, - [2201] = 2082, - [2202] = 2088, - [2203] = 2203, - [2204] = 2115, - [2205] = 2205, - [2206] = 2071, - [2207] = 2076, - [2208] = 2074, - [2209] = 2114, - [2210] = 2076, - [2211] = 2080, - [2212] = 2114, - [2213] = 2115, - [2214] = 2074, - [2215] = 2117, - [2216] = 2079, + [2195] = 2168, + [2196] = 2194, + [2197] = 2165, + [2198] = 2166, + [2199] = 2165, + [2200] = 2166, + [2201] = 2168, + [2202] = 2166, + [2203] = 2165, + [2204] = 2166, + [2205] = 2189, + [2206] = 2206, + [2207] = 2207, + [2208] = 2207, + [2209] = 2207, + [2210] = 2210, + [2211] = 2211, + [2212] = 2207, + [2213] = 2207, + [2214] = 2214, + [2215] = 2215, + [2216] = 2216, [2217] = 2217, - [2218] = 2070, - [2219] = 2070, - [2220] = 2088, - [2221] = 2114, - [2222] = 2074, - [2223] = 2117, - [2224] = 2194, - [2225] = 2114, - [2226] = 2088, - [2227] = 2117, - [2228] = 2114, - [2229] = 2074, - [2230] = 2117, - [2231] = 2114, - [2232] = 2088, - [2233] = 2117, - [2234] = 2114, - [2235] = 2074, - [2236] = 2117, - [2237] = 2114, - [2238] = 2088, - [2239] = 2117, - [2240] = 2114, - [2241] = 2074, - [2242] = 2117, - [2243] = 2114, - [2244] = 2088, - [2245] = 2117, - [2246] = 2114, - [2247] = 2069, - [2248] = 2117, - [2249] = 2114, - [2250] = 2088, - [2251] = 2117, - [2252] = 2114, - [2253] = 2072, - [2254] = 2117, - [2255] = 2114, - [2256] = 2114, - [2257] = 2114, - [2258] = 2114, - [2259] = 2205, - [2260] = 2115, - [2261] = 2203, - [2262] = 2198, - [2263] = 2071, - [2264] = 2150, - [2265] = 2088, - [2266] = 2088, - [2267] = 2088, - [2268] = 2092, - [2269] = 2088, - [2270] = 2082, - [2271] = 2071, - [2272] = 2205, - [2273] = 2115, - [2274] = 2203, - [2275] = 2072, - [2276] = 2069, - [2277] = 2074, - [2278] = 2082, - [2279] = 2205, - [2280] = 2203, - [2281] = 2205, - [2282] = 2082, - [2283] = 2203, - [2284] = 2082, - [2285] = 2082, - [2286] = 2203, - [2287] = 2205, + [2218] = 2218, + [2219] = 2207, + [2220] = 2220, + [2221] = 2221, + [2222] = 2221, + [2223] = 2221, + [2224] = 2220, + [2225] = 2221, + [2226] = 2226, + [2227] = 2220, + [2228] = 2220, + [2229] = 2226, + [2230] = 2221, + [2231] = 2221, + [2232] = 2226, + [2233] = 2226, + [2234] = 2220, + [2235] = 2221, + [2236] = 2221, + [2237] = 2221, + [2238] = 2221, + [2239] = 2221, + [2240] = 2221, + [2241] = 2221, + [2242] = 2220, + [2243] = 2221, + [2244] = 2221, + [2245] = 2220, + [2246] = 2221, + [2247] = 2247, + [2248] = 2220, + [2249] = 2221, + [2250] = 2226, + [2251] = 2220, + [2252] = 2220, + [2253] = 2253, + [2254] = 2220, + [2255] = 2220, + [2256] = 2220, + [2257] = 2257, + [2258] = 2226, + [2259] = 2220, + [2260] = 2220, + [2261] = 2261, + [2262] = 2220, + [2263] = 2221, + [2264] = 2264, + [2265] = 2220, + [2266] = 190, + [2267] = 2220, + [2268] = 197, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 2270, + [2273] = 2273, + [2274] = 2274, + [2275] = 2275, + [2276] = 2276, + [2277] = 2277, + [2278] = 2271, + [2279] = 2275, + [2280] = 2276, + [2281] = 2277, + [2282] = 2282, + [2283] = 2271, + [2284] = 2275, + [2285] = 2276, + [2286] = 2277, + [2287] = 2271, + [2288] = 2271, + [2289] = 2273, + [2290] = 2275, + [2291] = 2276, + [2292] = 2277, + [2293] = 2271, + [2294] = 2294, + [2295] = 2275, + [2296] = 2276, + [2297] = 2277, + [2298] = 2273, + [2299] = 2299, + [2300] = 2271, + [2301] = 2277, + [2302] = 2276, + [2303] = 2275, + [2304] = 2276, + [2305] = 2277, + [2306] = 2275, + [2307] = 2307, + [2308] = 2271, + [2309] = 2309, + [2310] = 2277, + [2311] = 2275, + [2312] = 2276, + [2313] = 2277, + [2314] = 2314, + [2315] = 2271, + [2316] = 2271, + [2317] = 2277, + [2318] = 2276, + [2319] = 2275, + [2320] = 2276, + [2321] = 2277, + [2322] = 2275, + [2323] = 2299, + [2324] = 2271, + [2325] = 2274, + [2326] = 2275, + [2327] = 2276, + [2328] = 2277, + [2329] = 2273, + [2330] = 2309, + [2331] = 2271, + [2332] = 2332, + [2333] = 2275, + [2334] = 2276, + [2335] = 2277, + [2336] = 2336, + [2337] = 2273, + [2338] = 2271, + [2339] = 2307, + [2340] = 2275, + [2341] = 2276, + [2342] = 2277, + [2343] = 2273, + [2344] = 2299, + [2345] = 2271, + [2346] = 2270, + [2347] = 2275, + [2348] = 2276, + [2349] = 2277, + [2350] = 2273, + [2351] = 2351, + [2352] = 2271, + [2353] = 2353, + [2354] = 2275, + [2355] = 2277, + [2356] = 2274, + [2357] = 2271, + [2358] = 2275, + [2359] = 2277, + [2360] = 2360, + [2361] = 2271, + [2362] = 2271, + [2363] = 2271, + [2364] = 2271, + [2365] = 2271, + [2366] = 2271, + [2367] = 2271, + [2368] = 2271, + [2369] = 2369, + [2370] = 2360, + [2371] = 2371, + [2372] = 2314, + [2373] = 2373, + [2374] = 2369, + [2375] = 2375, + [2376] = 2373, + [2377] = 2377, + [2378] = 2378, + [2379] = 2276, + [2380] = 2275, + [2381] = 2274, + [2382] = 2273, + [2383] = 2383, + [2384] = 2270, + [2385] = 2299, + [2386] = 2307, + [2387] = 2309, + [2388] = 2274, + [2389] = 2273, + [2390] = 2270, + [2391] = 2270, + [2392] = 2299, + [2393] = 2307, + [2394] = 2299, + [2395] = 2309, + [2396] = 2307, + [2397] = 2274, + [2398] = 2273, + [2399] = 2270, + [2400] = 2377, + [2401] = 2299, + [2402] = 2402, + [2403] = 2307, + [2404] = 2309, + [2405] = 2336, + [2406] = 2332, + [2407] = 2274, + [2408] = 2273, + [2409] = 2270, + [2410] = 2309, + [2411] = 2299, + [2412] = 2307, + [2413] = 2413, + [2414] = 2309, + [2415] = 2274, + [2416] = 2383, + [2417] = 2273, + [2418] = 2299, + [2419] = 2307, + [2420] = 2420, + [2421] = 2309, + [2422] = 2274, + [2423] = 2273, + [2424] = 2270, + [2425] = 2274, + [2426] = 2307, + [2427] = 2309, + [2428] = 2309, + [2429] = 216, + [2430] = 2273, + [2431] = 2270, + [2432] = 2299, + [2433] = 2307, + [2434] = 2309, + [2435] = 2274, + [2436] = 2436, + [2437] = 2273, + [2438] = 2270, + [2439] = 2299, + [2440] = 2307, + [2441] = 2309, + [2442] = 2442, + [2443] = 2443, + [2444] = 2274, + [2445] = 2273, + [2446] = 2270, + [2447] = 2299, + [2448] = 2307, + [2449] = 2309, + [2450] = 2369, + [2451] = 2360, + [2452] = 2274, + [2453] = 2314, + [2454] = 2271, + [2455] = 2455, + [2456] = 2270, + [2457] = 2299, + [2458] = 2277, + [2459] = 2276, + [2460] = 2275, + [2461] = 2307, + [2462] = 2307, + [2463] = 2274, + [2464] = 2307, + [2465] = 2274, + [2466] = 2309, + [2467] = 2369, + [2468] = 2360, + [2469] = 2307, + [2470] = 2314, + [2471] = 2274, + [2472] = 2307, + [2473] = 2274, + [2474] = 2307, + [2475] = 2274, + [2476] = 2369, + [2477] = 2274, + [2478] = 2314, + [2479] = 2307, + [2480] = 2369, + [2481] = 2274, + [2482] = 2314, + [2483] = 2369, + [2484] = 2270, + [2485] = 2314, + [2486] = 2369, + [2487] = 2299, + [2488] = 2314, + [2489] = 2369, + [2490] = 2307, + [2491] = 2314, + [2492] = 2369, + [2493] = 2274, + [2494] = 2314, + [2495] = 2369, + [2496] = 2307, + [2497] = 2314, + [2498] = 2369, + [2499] = 2309, + [2500] = 2314, + [2501] = 2369, + [2502] = 2309, + [2503] = 2314, + [2504] = 2369, + [2505] = 2307, + [2506] = 2314, + [2507] = 2369, + [2508] = 2299, + [2509] = 2314, + [2510] = 2369, + [2511] = 2270, + [2512] = 2314, + [2513] = 2369, + [2514] = 2274, + [2515] = 2314, + [2516] = 2369, + [2517] = 2274, + [2518] = 2314, + [2519] = 2369, + [2520] = 2369, + [2521] = 2369, + [2522] = 2369, + [2523] = 2369, + [2524] = 2369, + [2525] = 2369, + [2526] = 2371, + [2527] = 2360, + [2528] = 2353, + [2529] = 2351, + [2530] = 2309, + [2531] = 2294, + [2532] = 2307, + [2533] = 2299, + [2534] = 2270, + [2535] = 2402, + [2536] = 2307, + [2537] = 2274, + [2538] = 174, + [2539] = 2371, + [2540] = 2360, + [2541] = 2353, + [2542] = 2299, + [2543] = 2274, + [2544] = 2270, + [2545] = 2309, + [2546] = 2371, + [2547] = 2353, + [2548] = 2371, + [2549] = 2307, + [2550] = 2353, + [2551] = 2299, + [2552] = 2270, + [2553] = 2353, + [2554] = 2371, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5403,491 +5936,993 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(10); if (lookahead == 'i') ADVANCE(11); if (lookahead == 'l') ADVANCE(12); - if (lookahead == 'n') ADVANCE(13); - if (lookahead == 'p') ADVANCE(14); - if (lookahead == 'r') ADVANCE(15); - if (lookahead == 's') ADVANCE(16); - if (lookahead == 'u') ADVANCE(17); - if (lookahead == 'w') ADVANCE(18); - if (lookahead == 'x') ADVANCE(19); + if (lookahead == 'm') ADVANCE(13); + if (lookahead == 'n') ADVANCE(14); + if (lookahead == 'o') ADVANCE(15); + if (lookahead == 'p') ADVANCE(16); + if (lookahead == 'r') ADVANCE(17); + if (lookahead == 's') ADVANCE(18); + if (lookahead == 't') ADVANCE(19); + if (lookahead == 'u') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); + if (lookahead == 'x') ADVANCE(22); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'E') ADVANCE(20); + if (lookahead == 'E') ADVANCE(23); END_STATE(); case 2: - if (lookahead == 'N') ADVANCE(21); + if (lookahead == 'N') ADVANCE(24); END_STATE(); case 3: if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(22) + if (lookahead == '\r') SKIP(25) END_STATE(); case 4: - if (lookahead == 'l') ADVANCE(23); + if (lookahead == 'l') ADVANCE(26); + if (lookahead == 'n') ADVANCE(27); + if (lookahead == 's') ADVANCE(28); END_STATE(); case 5: - if (lookahead == 'l') ADVANCE(24); - if (lookahead == 'r') ADVANCE(25); + if (lookahead == 'i') ADVANCE(29); + if (lookahead == 'l') ADVANCE(30); + if (lookahead == 'r') ADVANCE(31); END_STATE(); case 6: - if (lookahead == 'a') ADVANCE(26); - if (lookahead == 'n') ADVANCE(27); - if (lookahead == 'o') ADVANCE(28); + if (lookahead == 'a') ADVANCE(32); + if (lookahead == 'n') ADVANCE(33); + if (lookahead == 'o') ADVANCE(34); END_STATE(); case 7: - if (lookahead == 'e') ADVANCE(29); - if (lookahead == 'i') ADVANCE(30); - if (lookahead == 'o') ADVANCE(31); + if (lookahead == 'c') ADVANCE(35); + if (lookahead == 'e') ADVANCE(36); + if (lookahead == 'i') ADVANCE(37); + if (lookahead == 'o') ADVANCE(38); END_STATE(); case 8: - if (lookahead == 'l') ADVANCE(32); - if (lookahead == 'x') ADVANCE(33); + if (lookahead == 'l') ADVANCE(39); + if (lookahead == 'x') ADVANCE(40); END_STATE(); case 9: - if (lookahead == 'o') ADVANCE(34); - if (lookahead == 'u') ADVANCE(35); + if (lookahead == 'o') ADVANCE(41); + if (lookahead == 'u') ADVANCE(42); END_STATE(); case 10: - if (lookahead == 'e') ADVANCE(36); - if (lookahead == 'r') ADVANCE(37); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'r') ADVANCE(44); + if (lookahead == 's') ADVANCE(45); END_STATE(); case 11: - if (lookahead == 'f') ADVANCE(38); - if (lookahead == 'n') ADVANCE(39); + if (lookahead == 'f') ADVANCE(46); + if (lookahead == 'n') ADVANCE(47); + if (lookahead == 's') ADVANCE(48); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(40); + if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'o') ADVANCE(50); + if (lookahead == 's') ADVANCE(51); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'k') ADVANCE(53); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(42); - if (lookahead == 'u') ADVANCE(43); + if (lookahead == 'e') ADVANCE(54); END_STATE(); case 15: - if (lookahead == 'e') ADVANCE(44); + if (lookahead == 'r') ADVANCE(55); END_STATE(); case 16: - if (lookahead == 'p') ADVANCE(45); - if (lookahead == 'w') ADVANCE(46); + if (lookahead == 'a') ADVANCE(56); + if (lookahead == 'r') ADVANCE(57); + if (lookahead == 'u') ADVANCE(58); END_STATE(); case 17: - if (lookahead == 'p') ADVANCE(47); + if (lookahead == 'a') ADVANCE(59); + if (lookahead == 'e') ADVANCE(60); + if (lookahead == 's') ADVANCE(61); END_STATE(); case 18: - if (lookahead == 'h') ADVANCE(48); + if (lookahead == 'i') ADVANCE(62); + if (lookahead == 'p') ADVANCE(63); + if (lookahead == 'q') ADVANCE(64); + if (lookahead == 'r') ADVANCE(65); + if (lookahead == 't') ADVANCE(66); + if (lookahead == 'u') ADVANCE(67); + if (lookahead == 'w') ADVANCE(68); + if (lookahead == 'y') ADVANCE(69); END_STATE(); case 19: - if (lookahead == 'd') ADVANCE(49); + if (lookahead == 'o') ADVANCE(70); + if (lookahead == 'y') ADVANCE(71); END_STATE(); case 20: - if (lookahead == 'G') ADVANCE(50); + if (lookahead == 'p') ADVANCE(72); END_STATE(); case 21: - if (lookahead == 'D') ADVANCE(51); + if (lookahead == 'h') ADVANCE(73); END_STATE(); case 22: - if (lookahead == '\n') SKIP(0) + if (lookahead == 'd') ADVANCE(74); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 23: - if (lookahead == 'n') ADVANCE(52); - if (lookahead == 'p') ADVANCE(53); + if (lookahead == 'G') ADVANCE(76); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'D') ADVANCE(77); END_STATE(); case 25: - if (lookahead == 'e') ADVANCE(55); + if (lookahead == '\n') SKIP(0) END_STATE(); case 26: - if (lookahead == 's') ADVANCE(56); + if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'p') ADVANCE(79); END_STATE(); case 27: - if (lookahead == 't') ADVANCE(57); + if (lookahead == 'd') ADVANCE(80); END_STATE(); case 28: - if (lookahead == 'n') ADVANCE(58); + if (lookahead == 'o') ADVANCE(81); END_STATE(); case 29: - if (lookahead == 'f') ADVANCE(59); - if (lookahead == 'l') ADVANCE(60); + if (lookahead == 'n') ADVANCE(82); END_STATE(); case 30: - if (lookahead == 'g') ADVANCE(61); + if (lookahead == 'a') ADVANCE(83); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'e') ADVANCE(84); END_STATE(); case 32: - if (lookahead == 's') ADVANCE(62); + if (lookahead == 's') ADVANCE(85); END_STATE(); case 33: - if (lookahead == 'i') ADVANCE(63); + if (lookahead == 't') ADVANCE(86); END_STATE(); case 34: - if (lookahead == 'r') ADVANCE(64); + if (lookahead == 'm') ADVANCE(87); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 's') ADVANCE(89); END_STATE(); case 35: - if (lookahead == 'n') ADVANCE(65); + if (lookahead == 'g') ADVANCE(90); + if (lookahead == 'n') ADVANCE(91); END_STATE(); case 36: - if (lookahead == 't') ADVANCE(66); + if (lookahead == 'f') ADVANCE(92); + if (lookahead == 'l') ADVANCE(93); END_STATE(); case 37: - if (lookahead == 'a') ADVANCE(67); + if (lookahead == 'g') ADVANCE(94); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 's') ADVANCE(95); END_STATE(); case 40: - if (lookahead == 'w') ADVANCE(68); + if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'p') ADVANCE(97); END_STATE(); case 41: - if (lookahead == 'x') ADVANCE(69); + if (lookahead == 'r') ADVANCE(98); END_STATE(); case 42: - if (lookahead == 'i') ADVANCE(70); + if (lookahead == 'n') ADVANCE(99); END_STATE(); case 43: - if (lookahead == 'n') ADVANCE(71); + if (lookahead == 'n') ADVANCE(100); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 44: - if (lookahead == 't') ADVANCE(72); + if (lookahead == 'a') ADVANCE(102); END_STATE(); case 45: - if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'u') ADVANCE(103); END_STATE(); case 46: - if (lookahead == 'i') ADVANCE(74); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 47: - if (lookahead == 'p') ADVANCE(75); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'd') ADVANCE(104); + if (lookahead == 't') ADVANCE(105); END_STATE(); case 48: - if (lookahead == 'i') ADVANCE(76); + if (lookahead == 'a') ADVANCE(106); END_STATE(); case 49: - if (lookahead == 'i') ADVANCE(77); + if (lookahead == 'n') ADVANCE(107); END_STATE(); case 50: - if (lookahead == 'I') ADVANCE(78); + if (lookahead == 'g') ADVANCE(108); + if (lookahead == 'w') ADVANCE(109); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_END); - if (lookahead == 'F') ADVANCE(79); + if (lookahead == 'h') ADVANCE(110); END_STATE(); case 52: - if (lookahead == 'u') ADVANCE(80); + if (lookahead == 't') ADVANCE(111); END_STATE(); case 53: - if (lookahead == 'h') ADVANCE(81); + if (lookahead == 't') ADVANCE(112); END_STATE(); case 54: - if (lookahead == 'n') ADVANCE(82); + if (lookahead == 'x') ADVANCE(113); END_STATE(); case 55: - if (lookahead == 'a') ADVANCE(83); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(84); + if (lookahead == 't') ADVANCE(114); END_STATE(); case 57: - if (lookahead == 'r') ADVANCE(85); + if (lookahead == 'i') ADVANCE(115); END_STATE(); case 58: - if (lookahead == 't') ADVANCE(86); + if (lookahead == 'n') ADVANCE(116); END_STATE(); case 59: - if (lookahead == 'a') ADVANCE(87); + if (lookahead == 'n') ADVANCE(117); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(88); + if (lookahead == 't') ADVANCE(118); END_STATE(); case 61: - if (lookahead == 'i') ADVANCE(89); + if (lookahead == 'h') ADVANCE(119); END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(90); + if (lookahead == 'n') ADVANCE(120); END_STATE(); case 63: - if (lookahead == 't') ADVANCE(91); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'l') ADVANCE(122); + if (lookahead == 'r') ADVANCE(123); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'r') ADVANCE(124); END_STATE(); case 65: - if (lookahead == 'c') ADVANCE(92); + if (lookahead == 'a') ADVANCE(125); END_STATE(); case 66: - if (lookahead == 'l') ADVANCE(93); + if (lookahead == 'r') ADVANCE(126); END_STATE(); case 67: - if (lookahead == 'p') ADVANCE(94); + if (lookahead == 'b') ADVANCE(127); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'i') ADVANCE(128); END_STATE(); case 69: - if (lookahead == 't') ADVANCE(96); + if (lookahead == 's') ADVANCE(129); END_STATE(); case 70: - if (lookahead == 'n') ADVANCE(97); + if (lookahead == 'l') ADVANCE(130); + if (lookahead == 'u') ADVANCE(131); END_STATE(); case 71: - if (lookahead == 'c') ADVANCE(98); + if (lookahead == 'p') ADVANCE(132); END_STATE(); case 72: - if (lookahead == 'u') ADVANCE(99); + if (lookahead == 'p') ADVANCE(133); END_STATE(); case 73: - if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'i') ADVANCE(134); END_STATE(); case 74: - if (lookahead == 't') ADVANCE(101); + if (lookahead == 'i') ADVANCE(135); END_STATE(); case 75: - if (lookahead == 'e') ADVANCE(102); + if (lookahead == 'r') ADVANCE(136); END_STATE(); case 76: - if (lookahead == 'l') ADVANCE(103); + if (lookahead == 'I') ADVANCE(137); END_STATE(); case 77: - if (lookahead == 'g') ADVANCE(104); + ACCEPT_TOKEN(anon_sym_END); + if (lookahead == 'F') ADVANCE(138); END_STATE(); case 78: - if (lookahead == 'N') ADVANCE(105); + if (lookahead == 'u') ADVANCE(139); END_STATE(); case 79: - if (lookahead == 'I') ADVANCE(106); + if (lookahead == 'h') ADVANCE(140); END_STATE(); case 80: - if (lookahead == 'm') ADVANCE(107); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 81: - if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'r') ADVANCE(141); END_STATE(); case 82: - if (lookahead == 'k') ADVANCE(109); + if (lookahead == 'd') ADVANCE(142); END_STATE(); case 83: - if (lookahead == 'k') ADVANCE(110); + if (lookahead == 'n') ADVANCE(143); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'a') ADVANCE(144); END_STATE(); case 85: - if (lookahead == 'l') ADVANCE(111); + if (lookahead == 'e') ADVANCE(145); END_STATE(); case 86: - if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'r') ADVANCE(146); END_STATE(); case 87: - if (lookahead == 'u') ADVANCE(113); + if (lookahead == 'p') ADVANCE(147); END_STATE(); case 88: - if (lookahead == 't') ADVANCE(114); + if (lookahead == 't') ADVANCE(148); END_STATE(); case 89: - if (lookahead == 't') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_cos); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_exit); + if (lookahead == 'g') ADVANCE(150); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_func); - if (lookahead == 't') ADVANCE(116); + if (lookahead == 'a') ADVANCE(151); END_STATE(); case 93: - if (lookahead == 'i') ADVANCE(117); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 94: - if (lookahead == 'h') ADVANCE(118); + if (lookahead == 'i') ADVANCE(153); END_STATE(); case 95: - if (lookahead == 'r') ADVANCE(119); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 96: - ACCEPT_TOKEN(sym_next_statement); - if (lookahead == 'f') ADVANCE(120); + if (lookahead == 't') ADVANCE(155); END_STATE(); case 97: - if (lookahead == 't') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_exp); END_STATE(); case 98: - if (lookahead == 't') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 99: - if (lookahead == 'r') ADVANCE(123); + if (lookahead == 'c') ADVANCE(156); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(124); + if (lookahead == 's') ADVANCE(157); END_STATE(); case 101: - if (lookahead == 'c') ADVANCE(125); + if (lookahead == 'l') ADVANCE(158); END_STATE(); case 102: - if (lookahead == 'r') ADVANCE(126); + if (lookahead == 'p') ADVANCE(159); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'b') ADVANCE(160); END_STATE(); case 104: - if (lookahead == 'i') ADVANCE(128); + if (lookahead == 'e') ADVANCE(161); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_BEGIN); - if (lookahead == 'F') ADVANCE(129); + ACCEPT_TOKEN(anon_sym_int); END_STATE(); case 106: - if (lookahead == 'L') ADVANCE(130); + if (lookahead == 'r') ADVANCE(162); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_alnum); + if (lookahead == 'g') ADVANCE(163); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_alpha); + ACCEPT_TOKEN(anon_sym_log); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_blank); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 110: - ACCEPT_TOKEN(sym_break_statement); + if (lookahead == 'i') ADVANCE(165); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_cntrl); + if (lookahead == 'c') ADVANCE(166); END_STATE(); case 112: - if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'i') ADVANCE(167); END_STATE(); case 113: - if (lookahead == 'l') ADVANCE(132); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 114: - if (lookahead == 'e') ADVANCE(133); + if (lookahead == 's') ADVANCE(169); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_digit); + if (lookahead == 'n') ADVANCE(170); END_STATE(); case 116: - if (lookahead == 'i') ADVANCE(134); + if (lookahead == 'c') ADVANCE(171); END_STATE(); case 117: - if (lookahead == 'n') ADVANCE(135); + if (lookahead == 'd') ADVANCE(172); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_graph); + if (lookahead == 'u') ADVANCE(173); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_lower); + if (lookahead == 'i') ADVANCE(174); END_STATE(); case 120: - if (lookahead == 'i') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_sin); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_print); - if (lookahead == 'f') ADVANCE(137); + if (lookahead == 'c') ADVANCE(175); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_punct); + if (lookahead == 'i') ADVANCE(176); END_STATE(); case 123: - if (lookahead == 'n') ADVANCE(138); + if (lookahead == 'i') ADVANCE(177); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_space); + if (lookahead == 't') ADVANCE(178); END_STATE(); case 125: - if (lookahead == 'h') ADVANCE(139); + if (lookahead == 'n') ADVANCE(179); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_upper); + if (lookahead == 'f') ADVANCE(180); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_sub); + if (lookahead == 's') ADVANCE(182); END_STATE(); case 128: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 't') ADVANCE(183); END_STATE(); case 129: - if (lookahead == 'I') ADVANCE(141); + if (lookahead == 't') ADVANCE(184); END_STATE(); case 130: - if (lookahead == 'E') ADVANCE(142); + if (lookahead == 'o') ADVANCE(185); END_STATE(); case 131: - if (lookahead == 'u') ADVANCE(143); + if (lookahead == 'p') ADVANCE(186); END_STATE(); case 132: - if (lookahead == 't') ADVANCE(144); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_delete); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 134: - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'l') ADVANCE(189); END_STATE(); case 135: - if (lookahead == 'e') ADVANCE(146); + if (lookahead == 'g') ADVANCE(190); END_STATE(); case 136: - if (lookahead == 'l') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_printf); + if (lookahead == 'N') ADVANCE(191); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'I') ADVANCE(192); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'm') ADVANCE(193); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_xdigit); + if (lookahead == 'a') ADVANCE(194); END_STATE(); case 141: - if (lookahead == 'L') ADVANCE(148); + if (lookahead == 't') ADVANCE(195); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_ENDFILE); + if (lookahead == 't') ADVANCE(196); END_STATE(); case 143: - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'k') ADVANCE(197); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'k') ADVANCE(198); END_STATE(); case 145: - if (lookahead == 'n') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_getline); + if (lookahead == 'l') ADVANCE(199); END_STATE(); case 147: - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'l') ADVANCE(200); END_STATE(); case 148: - if (lookahead == 'E') ADVANCE(152); + if (lookahead == 'i') ADVANCE(201); END_STATE(); case 149: - ACCEPT_TOKEN(sym_continue_statement); + if (lookahead == 't') ADVANCE(202); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'e') ADVANCE(203); END_STATE(); case 151: - ACCEPT_TOKEN(sym_nextfile_statement); + if (lookahead == 'u') ADVANCE(204); END_STATE(); case 152: + if (lookahead == 't') ADVANCE(205); + END_STATE(); + case 153: + if (lookahead == 't') ADVANCE(206); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_exit); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_func); + if (lookahead == 't') ADVANCE(207); + END_STATE(); + case 157: + if (lookahead == 'u') ADVANCE(208); + END_STATE(); + case 158: + if (lookahead == 'i') ADVANCE(209); + END_STATE(); + case 159: + if (lookahead == 'h') ADVANCE(210); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_gsub); + END_STATE(); + case 161: + if (lookahead == 'x') ADVANCE(211); + END_STATE(); + case 162: + if (lookahead == 'r') ADVANCE(212); + END_STATE(); + case 163: + if (lookahead == 't') ADVANCE(213); + END_STATE(); + case 164: + if (lookahead == 'r') ADVANCE(214); + END_STATE(); + case 165: + if (lookahead == 'f') ADVANCE(215); + END_STATE(); + case 166: + if (lookahead == 'h') ADVANCE(216); + END_STATE(); + case 167: + if (lookahead == 'm') ADVANCE(217); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym_next_statement); + if (lookahead == 'f') ADVANCE(218); + END_STATE(); + case 169: + if (lookahead == 'p') ADVANCE(219); + END_STATE(); + case 170: + if (lookahead == 't') ADVANCE(220); + END_STATE(); + case 171: + if (lookahead == 't') ADVANCE(221); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_rand); + END_STATE(); + case 173: + if (lookahead == 'r') ADVANCE(222); + END_STATE(); + case 174: + if (lookahead == 'f') ADVANCE(223); + END_STATE(); + case 175: + if (lookahead == 'e') ADVANCE(224); + END_STATE(); + case 176: + if (lookahead == 't') ADVANCE(225); + END_STATE(); + case 177: + if (lookahead == 'n') ADVANCE(226); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_sqrt); + END_STATE(); + case 179: + if (lookahead == 'd') ADVANCE(227); + END_STATE(); + case 180: + if (lookahead == 't') ADVANCE(228); + END_STATE(); + case 181: + if (lookahead == 'o') ADVANCE(229); + END_STATE(); + case 182: + if (lookahead == 't') ADVANCE(230); + END_STATE(); + case 183: + if (lookahead == 'c') ADVANCE(231); + END_STATE(); + case 184: + if (lookahead == 'i') ADVANCE(232); + END_STATE(); + case 185: + if (lookahead == 'w') ADVANCE(233); + END_STATE(); + case 186: + if (lookahead == 'p') ADVANCE(234); + END_STATE(); + case 187: + if (lookahead == 'o') ADVANCE(235); + END_STATE(); + case 188: + if (lookahead == 'r') ADVANCE(236); + END_STATE(); + case 189: + if (lookahead == 'e') ADVANCE(237); + END_STATE(); + case 190: + if (lookahead == 'i') ADVANCE(238); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_BEGIN); + if (lookahead == 'F') ADVANCE(239); + END_STATE(); + case 192: + if (lookahead == 'L') ADVANCE(240); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_alnum); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_alpha); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_asort); + if (lookahead == 'i') ADVANCE(241); + END_STATE(); + case 196: + if (lookahead == 'e') ADVANCE(242); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_blank); + END_STATE(); + case 198: + ACCEPT_TOKEN(sym_break_statement); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_cntrl); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_compl); + END_STATE(); + case 201: + if (lookahead == 'n') ADVANCE(243); + END_STATE(); + case 202: + if (lookahead == 't') ADVANCE(244); + END_STATE(); + case 203: + if (lookahead == 't') ADVANCE(245); + END_STATE(); + case 204: + if (lookahead == 'l') ADVANCE(246); + END_STATE(); + case 205: + if (lookahead == 'e') ADVANCE(247); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_digit); + END_STATE(); + case 207: + if (lookahead == 'i') ADVANCE(248); + END_STATE(); + case 208: + if (lookahead == 'b') ADVANCE(249); + END_STATE(); + case 209: + if (lookahead == 'n') ADVANCE(250); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_graph); + END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_index); + END_STATE(); + case 212: + if (lookahead == 'a') ADVANCE(251); + END_STATE(); + case 213: + if (lookahead == 'h') ADVANCE(252); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_lower); + END_STATE(); + case 215: + if (lookahead == 't') ADVANCE(253); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 217: + if (lookahead == 'e') ADVANCE(254); + END_STATE(); + case 218: + if (lookahead == 'i') ADVANCE(255); + END_STATE(); + case 219: + if (lookahead == 'l') ADVANCE(256); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_print); + if (lookahead == 'f') ADVANCE(257); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_punct); + END_STATE(); + case 222: + if (lookahead == 'n') ADVANCE(258); + END_STATE(); + case 223: + if (lookahead == 't') ADVANCE(259); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_space); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_split); + END_STATE(); + case 226: + if (lookahead == 't') ADVANCE(260); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_srand); + END_STATE(); + case 228: + if (lookahead == 'i') ADVANCE(261); + END_STATE(); + case 229: + if (lookahead == 'n') ADVANCE(262); + END_STATE(); + case 230: + if (lookahead == 'r') ADVANCE(263); + END_STATE(); + case 231: + if (lookahead == 'h') ADVANCE(264); + END_STATE(); + case 232: + if (lookahead == 'm') ADVANCE(265); + END_STATE(); + case 233: + if (lookahead == 'e') ADVANCE(266); + END_STATE(); + case 234: + if (lookahead == 'e') ADVANCE(267); + END_STATE(); + case 235: + if (lookahead == 'f') ADVANCE(268); + END_STATE(); + case 236: + ACCEPT_TOKEN(anon_sym_upper); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 238: + if (lookahead == 't') ADVANCE(269); + END_STATE(); + case 239: + if (lookahead == 'I') ADVANCE(270); + END_STATE(); + case 240: + if (lookahead == 'E') ADVANCE(271); + END_STATE(); + case 241: + ACCEPT_TOKEN(anon_sym_asorti); + END_STATE(); + case 242: + if (lookahead == 'x') ADVANCE(272); + END_STATE(); + case 243: + if (lookahead == 'u') ADVANCE(273); + END_STATE(); + case 244: + if (lookahead == 'e') ADVANCE(274); + END_STATE(); + case 245: + if (lookahead == 't') ADVANCE(275); + END_STATE(); + case 246: + if (lookahead == 't') ADVANCE(276); + END_STATE(); + case 247: + ACCEPT_TOKEN(anon_sym_delete); + END_STATE(); + case 248: + if (lookahead == 'o') ADVANCE(277); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_gensub); + END_STATE(); + case 250: + if (lookahead == 'e') ADVANCE(278); + END_STATE(); + case 251: + if (lookahead == 'y') ADVANCE(279); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_length); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_lshift); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_mktime); + END_STATE(); + case 255: + if (lookahead == 'l') ADVANCE(280); + END_STATE(); + case 256: + if (lookahead == 'i') ADVANCE(281); + END_STATE(); + case 257: + ACCEPT_TOKEN(anon_sym_printf); + END_STATE(); + case 258: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_rshift); + END_STATE(); + case 260: + if (lookahead == 'f') ADVANCE(282); + END_STATE(); + case 261: + if (lookahead == 'm') ADVANCE(283); + END_STATE(); + case 262: + if (lookahead == 'u') ADVANCE(284); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_substr); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 265: + if (lookahead == 'e') ADVANCE(285); + END_STATE(); + case 266: + if (lookahead == 'r') ADVANCE(286); + END_STATE(); + case 267: + if (lookahead == 'r') ADVANCE(287); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_typeof); + END_STATE(); + case 269: + ACCEPT_TOKEN(anon_sym_xdigit); + END_STATE(); + case 270: + if (lookahead == 'L') ADVANCE(288); + END_STATE(); + case 271: + ACCEPT_TOKEN(anon_sym_ENDFILE); + END_STATE(); + case 272: + if (lookahead == 't') ADVANCE(289); + END_STATE(); + case 273: + if (lookahead == 'e') ADVANCE(290); + END_STATE(); + case 274: + if (lookahead == 'x') ADVANCE(291); + END_STATE(); + case 275: + if (lookahead == 'e') ADVANCE(292); + END_STATE(); + case 276: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 277: + if (lookahead == 'n') ADVANCE(293); + END_STATE(); + case 278: + ACCEPT_TOKEN(anon_sym_getline); + END_STATE(); + case 279: + ACCEPT_TOKEN(anon_sym_isarray); + END_STATE(); + case 280: + if (lookahead == 'e') ADVANCE(294); + END_STATE(); + case 281: + if (lookahead == 't') ADVANCE(295); + END_STATE(); + case 282: + ACCEPT_TOKEN(anon_sym_sprintf); + END_STATE(); + case 283: + if (lookahead == 'e') ADVANCE(296); + END_STATE(); + case 284: + if (lookahead == 'm') ADVANCE(297); + END_STATE(); + case 285: + ACCEPT_TOKEN(anon_sym_systime); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_tolower); + END_STATE(); + case 287: + ACCEPT_TOKEN(anon_sym_toupper); + END_STATE(); + case 288: + if (lookahead == 'E') ADVANCE(298); + END_STATE(); + case 289: + if (lookahead == 'd') ADVANCE(299); + END_STATE(); + case 290: + ACCEPT_TOKEN(sym_continue_statement); + END_STATE(); + case 291: + if (lookahead == 't') ADVANCE(300); + END_STATE(); + case 292: + if (lookahead == 'x') ADVANCE(301); + END_STATE(); + case 293: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 294: + ACCEPT_TOKEN(sym_nextfile_statement); + END_STATE(); + case 295: + ACCEPT_TOKEN(anon_sym_patsplit); + END_STATE(); + case 296: + ACCEPT_TOKEN(anon_sym_strftime); + END_STATE(); + case 297: + ACCEPT_TOKEN(anon_sym_strtonum); + END_STATE(); + case 298: ACCEPT_TOKEN(anon_sym_BEGINFILE); END_STATE(); + case 299: + if (lookahead == 'o') ADVANCE(302); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_dcgettext); + END_STATE(); + case 301: + if (lookahead == 't') ADVANCE(303); + END_STATE(); + case 302: + if (lookahead == 'm') ADVANCE(304); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_dcngettext); + END_STATE(); + case 304: + if (lookahead == 'a') ADVANCE(305); + END_STATE(); + case 305: + if (lookahead == 'i') ADVANCE(306); + END_STATE(); + case 306: + if (lookahead == 'n') ADVANCE(307); + END_STATE(); + case 307: + ACCEPT_TOKEN(anon_sym_bindtextdomain); + END_STATE(); default: return false; } @@ -5898,13 +6933,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1] = {.lex_state = 96}, [2] = {.lex_state = 4, .external_lex_state = 2}, [3] = {.lex_state = 44}, - [4] = {.lex_state = 44}, + [4] = {.lex_state = 4}, [5] = {.lex_state = 44}, [6] = {.lex_state = 44}, [7] = {.lex_state = 44}, [8] = {.lex_state = 44}, [9] = {.lex_state = 44}, - [10] = {.lex_state = 4}, + [10] = {.lex_state = 44}, [11] = {.lex_state = 44}, [12] = {.lex_state = 44}, [13] = {.lex_state = 44}, @@ -6055,517 +7090,517 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [158] = {.lex_state = 44}, [159] = {.lex_state = 44}, [160] = {.lex_state = 44}, - [161] = {.lex_state = 41, .external_lex_state = 3}, - [162] = {.lex_state = 41, .external_lex_state = 4}, + [161] = {.lex_state = 23, .external_lex_state = 2}, + [162] = {.lex_state = 23}, [163] = {.lex_state = 41, .external_lex_state = 3}, - [164] = {.lex_state = 41, .external_lex_state = 5}, - [165] = {.lex_state = 23, .external_lex_state = 2}, - [166] = {.lex_state = 41, .external_lex_state = 6}, - [167] = {.lex_state = 41, .external_lex_state = 5}, + [164] = {.lex_state = 41, .external_lex_state = 4}, + [165] = {.lex_state = 41, .external_lex_state = 3}, + [166] = {.lex_state = 41, .external_lex_state = 4}, + [167] = {.lex_state = 41, .external_lex_state = 3}, [168] = {.lex_state = 41, .external_lex_state = 3}, - [169] = {.lex_state = 41, .external_lex_state = 4}, - [170] = {.lex_state = 41, .external_lex_state = 3}, - [171] = {.lex_state = 41, .external_lex_state = 3}, - [172] = {.lex_state = 41, .external_lex_state = 4}, + [169] = {.lex_state = 41, .external_lex_state = 3}, + [170] = {.lex_state = 41, .external_lex_state = 5}, + [171] = {.lex_state = 41, .external_lex_state = 4}, + [172] = {.lex_state = 41, .external_lex_state = 6}, [173] = {.lex_state = 41, .external_lex_state = 4}, [174] = {.lex_state = 41, .external_lex_state = 3}, - [175] = {.lex_state = 41, .external_lex_state = 6}, - [176] = {.lex_state = 41, .external_lex_state = 3}, - [177] = {.lex_state = 41, .external_lex_state = 4}, + [175] = {.lex_state = 41, .external_lex_state = 5}, + [176] = {.lex_state = 41, .external_lex_state = 6}, + [177] = {.lex_state = 41, .external_lex_state = 6}, [178] = {.lex_state = 41, .external_lex_state = 4}, - [179] = {.lex_state = 41, .external_lex_state = 4}, - [180] = {.lex_state = 41, .external_lex_state = 4}, - [181] = {.lex_state = 41, .external_lex_state = 4}, - [182] = {.lex_state = 41, .external_lex_state = 5}, - [183] = {.lex_state = 41, .external_lex_state = 4}, - [184] = {.lex_state = 41, .external_lex_state = 5}, - [185] = {.lex_state = 41, .external_lex_state = 5}, - [186] = {.lex_state = 41, .external_lex_state = 3}, - [187] = {.lex_state = 23}, - [188] = {.lex_state = 41, .external_lex_state = 6}, - [189] = {.lex_state = 41, .external_lex_state = 4}, - [190] = {.lex_state = 41, .external_lex_state = 4}, + [179] = {.lex_state = 41, .external_lex_state = 6}, + [180] = {.lex_state = 41, .external_lex_state = 3}, + [181] = {.lex_state = 41, .external_lex_state = 6}, + [182] = {.lex_state = 41, .external_lex_state = 3}, + [183] = {.lex_state = 41, .external_lex_state = 3}, + [184] = {.lex_state = 41, .external_lex_state = 3}, + [185] = {.lex_state = 41, .external_lex_state = 3}, + [186] = {.lex_state = 41, .external_lex_state = 4}, + [187] = {.lex_state = 41, .external_lex_state = 4}, + [188] = {.lex_state = 41, .external_lex_state = 4}, + [189] = {.lex_state = 41, .external_lex_state = 6}, + [190] = {.lex_state = 33, .external_lex_state = 4}, [191] = {.lex_state = 41, .external_lex_state = 4}, - [192] = {.lex_state = 41, .external_lex_state = 6}, - [193] = {.lex_state = 41, .external_lex_state = 5}, + [192] = {.lex_state = 41, .external_lex_state = 4}, + [193] = {.lex_state = 41, .external_lex_state = 6}, [194] = {.lex_state = 41, .external_lex_state = 4}, - [195] = {.lex_state = 41, .external_lex_state = 4}, - [196] = {.lex_state = 41, .external_lex_state = 5}, - [197] = {.lex_state = 41, .external_lex_state = 4}, - [198] = {.lex_state = 41, .external_lex_state = 6}, - [199] = {.lex_state = 41, .external_lex_state = 3}, - [200] = {.lex_state = 41, .external_lex_state = 4}, - [201] = {.lex_state = 41, .external_lex_state = 3}, - [202] = {.lex_state = 41, .external_lex_state = 6}, - [203] = {.lex_state = 41, .external_lex_state = 4}, - [204] = {.lex_state = 41, .external_lex_state = 4}, + [195] = {.lex_state = 41, .external_lex_state = 6}, + [196] = {.lex_state = 41, .external_lex_state = 6}, + [197] = {.lex_state = 33, .external_lex_state = 4}, + [198] = {.lex_state = 41, .external_lex_state = 4}, + [199] = {.lex_state = 41, .external_lex_state = 6}, + [200] = {.lex_state = 41, .external_lex_state = 6}, + [201] = {.lex_state = 41, .external_lex_state = 4}, + [202] = {.lex_state = 41, .external_lex_state = 4}, + [203] = {.lex_state = 41, .external_lex_state = 5}, + [204] = {.lex_state = 41, .external_lex_state = 5}, [205] = {.lex_state = 41, .external_lex_state = 4}, - [206] = {.lex_state = 41, .external_lex_state = 4}, - [207] = {.lex_state = 41, .external_lex_state = 4}, + [206] = {.lex_state = 41, .external_lex_state = 5}, + [207] = {.lex_state = 33, .external_lex_state = 5}, [208] = {.lex_state = 41, .external_lex_state = 4}, - [209] = {.lex_state = 41, .external_lex_state = 4}, - [210] = {.lex_state = 41, .external_lex_state = 4}, - [211] = {.lex_state = 41, .external_lex_state = 6}, + [209] = {.lex_state = 41, .external_lex_state = 5}, + [210] = {.lex_state = 41, .external_lex_state = 5}, + [211] = {.lex_state = 41, .external_lex_state = 4}, [212] = {.lex_state = 41, .external_lex_state = 4}, [213] = {.lex_state = 41, .external_lex_state = 4}, [214] = {.lex_state = 41, .external_lex_state = 4}, [215] = {.lex_state = 41, .external_lex_state = 4}, [216] = {.lex_state = 41, .external_lex_state = 4}, - [217] = {.lex_state = 41, .external_lex_state = 6}, - [218] = {.lex_state = 41, .external_lex_state = 6}, - [219] = {.lex_state = 41, .external_lex_state = 4}, - [220] = {.lex_state = 41, .external_lex_state = 6}, - [221] = {.lex_state = 41, .external_lex_state = 3}, - [222] = {.lex_state = 41, .external_lex_state = 5}, + [217] = {.lex_state = 41, .external_lex_state = 4}, + [218] = {.lex_state = 41, .external_lex_state = 5}, + [219] = {.lex_state = 41, .external_lex_state = 5}, + [220] = {.lex_state = 41, .external_lex_state = 4}, + [221] = {.lex_state = 41, .external_lex_state = 5}, + [222] = {.lex_state = 41, .external_lex_state = 4}, [223] = {.lex_state = 41, .external_lex_state = 4}, - [224] = {.lex_state = 41, .external_lex_state = 6}, - [225] = {.lex_state = 41, .external_lex_state = 6}, - [226] = {.lex_state = 41, .external_lex_state = 5}, - [227] = {.lex_state = 41, .external_lex_state = 6}, - [228] = {.lex_state = 41, .external_lex_state = 6}, - [229] = {.lex_state = 41, .external_lex_state = 6}, - [230] = {.lex_state = 41, .external_lex_state = 6}, + [224] = {.lex_state = 41, .external_lex_state = 4}, + [225] = {.lex_state = 41, .external_lex_state = 4}, + [226] = {.lex_state = 41, .external_lex_state = 4}, + [227] = {.lex_state = 41, .external_lex_state = 4}, + [228] = {.lex_state = 41, .external_lex_state = 4}, + [229] = {.lex_state = 41, .external_lex_state = 4}, + [230] = {.lex_state = 41, .external_lex_state = 4}, [231] = {.lex_state = 41, .external_lex_state = 4}, - [232] = {.lex_state = 41, .external_lex_state = 6}, + [232] = {.lex_state = 41, .external_lex_state = 4}, [233] = {.lex_state = 41, .external_lex_state = 4}, - [234] = {.lex_state = 41, .external_lex_state = 6}, - [235] = {.lex_state = 41, .external_lex_state = 6}, - [236] = {.lex_state = 41, .external_lex_state = 6}, - [237] = {.lex_state = 41, .external_lex_state = 6}, - [238] = {.lex_state = 41, .external_lex_state = 6}, - [239] = {.lex_state = 41, .external_lex_state = 5}, - [240] = {.lex_state = 41, .external_lex_state = 6}, - [241] = {.lex_state = 33, .external_lex_state = 4}, - [242] = {.lex_state = 41, .external_lex_state = 6}, - [243] = {.lex_state = 41, .external_lex_state = 5}, - [244] = {.lex_state = 41, .external_lex_state = 6}, - [245] = {.lex_state = 41, .external_lex_state = 6}, - [246] = {.lex_state = 33, .external_lex_state = 4}, + [234] = {.lex_state = 41, .external_lex_state = 5}, + [235] = {.lex_state = 41, .external_lex_state = 4}, + [236] = {.lex_state = 41, .external_lex_state = 4}, + [237] = {.lex_state = 41, .external_lex_state = 4}, + [238] = {.lex_state = 33, .external_lex_state = 5}, + [239] = {.lex_state = 41, .external_lex_state = 4}, + [240] = {.lex_state = 41, .external_lex_state = 5}, + [241] = {.lex_state = 41, .external_lex_state = 5}, + [242] = {.lex_state = 41, .external_lex_state = 4}, + [243] = {.lex_state = 41, .external_lex_state = 4}, + [244] = {.lex_state = 41, .external_lex_state = 4}, + [245] = {.lex_state = 41, .external_lex_state = 4}, + [246] = {.lex_state = 41, .external_lex_state = 4}, [247] = {.lex_state = 41, .external_lex_state = 4}, - [248] = {.lex_state = 41, .external_lex_state = 6}, - [249] = {.lex_state = 41, .external_lex_state = 6}, - [250] = {.lex_state = 41, .external_lex_state = 6}, - [251] = {.lex_state = 41, .external_lex_state = 6}, - [252] = {.lex_state = 41, .external_lex_state = 6}, - [253] = {.lex_state = 41, .external_lex_state = 6}, + [248] = {.lex_state = 41, .external_lex_state = 4}, + [249] = {.lex_state = 41, .external_lex_state = 4}, + [250] = {.lex_state = 41, .external_lex_state = 4}, + [251] = {.lex_state = 41, .external_lex_state = 5}, + [252] = {.lex_state = 41, .external_lex_state = 4}, + [253] = {.lex_state = 41, .external_lex_state = 5}, [254] = {.lex_state = 41, .external_lex_state = 4}, [255] = {.lex_state = 41, .external_lex_state = 4}, [256] = {.lex_state = 41, .external_lex_state = 4}, [257] = {.lex_state = 41, .external_lex_state = 4}, [258] = {.lex_state = 41, .external_lex_state = 4}, [259] = {.lex_state = 41, .external_lex_state = 4}, - [260] = {.lex_state = 33, .external_lex_state = 6}, - [261] = {.lex_state = 41, .external_lex_state = 4}, - [262] = {.lex_state = 41, .external_lex_state = 4}, - [263] = {.lex_state = 33, .external_lex_state = 6}, - [264] = {.lex_state = 41, .external_lex_state = 4}, - [265] = {.lex_state = 41, .external_lex_state = 4}, - [266] = {.lex_state = 41, .external_lex_state = 4}, - [267] = {.lex_state = 41, .external_lex_state = 6}, - [268] = {.lex_state = 41, .external_lex_state = 4}, - [269] = {.lex_state = 41, .external_lex_state = 6}, - [270] = {.lex_state = 41, .external_lex_state = 4}, - [271] = {.lex_state = 41, .external_lex_state = 4}, - [272] = {.lex_state = 41, .external_lex_state = 4}, - [273] = {.lex_state = 41, .external_lex_state = 4}, - [274] = {.lex_state = 41, .external_lex_state = 6}, - [275] = {.lex_state = 41, .external_lex_state = 4}, - [276] = {.lex_state = 41, .external_lex_state = 4}, - [277] = {.lex_state = 41, .external_lex_state = 6}, - [278] = {.lex_state = 41, .external_lex_state = 6}, - [279] = {.lex_state = 41, .external_lex_state = 6}, - [280] = {.lex_state = 41, .external_lex_state = 6}, - [281] = {.lex_state = 41, .external_lex_state = 6}, - [282] = {.lex_state = 41, .external_lex_state = 6}, - [283] = {.lex_state = 41, .external_lex_state = 6}, - [284] = {.lex_state = 41, .external_lex_state = 6}, - [285] = {.lex_state = 41, .external_lex_state = 6}, - [286] = {.lex_state = 41, .external_lex_state = 6}, - [287] = {.lex_state = 41, .external_lex_state = 6}, - [288] = {.lex_state = 41, .external_lex_state = 6}, - [289] = {.lex_state = 41, .external_lex_state = 6}, - [290] = {.lex_state = 41, .external_lex_state = 6}, - [291] = {.lex_state = 41, .external_lex_state = 6}, - [292] = {.lex_state = 41, .external_lex_state = 6}, - [293] = {.lex_state = 41, .external_lex_state = 6}, - [294] = {.lex_state = 41, .external_lex_state = 6}, - [295] = {.lex_state = 94, .external_lex_state = 5}, - [296] = {.lex_state = 94, .external_lex_state = 6}, - [297] = {.lex_state = 94, .external_lex_state = 5}, - [298] = {.lex_state = 4, .external_lex_state = 2}, - [299] = {.lex_state = 94, .external_lex_state = 5}, - [300] = {.lex_state = 4, .external_lex_state = 2}, - [301] = {.lex_state = 96}, + [260] = {.lex_state = 41, .external_lex_state = 5}, + [261] = {.lex_state = 41, .external_lex_state = 5}, + [262] = {.lex_state = 41, .external_lex_state = 5}, + [263] = {.lex_state = 41, .external_lex_state = 5}, + [264] = {.lex_state = 41, .external_lex_state = 5}, + [265] = {.lex_state = 41, .external_lex_state = 5}, + [266] = {.lex_state = 41, .external_lex_state = 5}, + [267] = {.lex_state = 41, .external_lex_state = 5}, + [268] = {.lex_state = 41, .external_lex_state = 5}, + [269] = {.lex_state = 41, .external_lex_state = 5}, + [270] = {.lex_state = 41, .external_lex_state = 5}, + [271] = {.lex_state = 41, .external_lex_state = 5}, + [272] = {.lex_state = 41, .external_lex_state = 5}, + [273] = {.lex_state = 41, .external_lex_state = 5}, + [274] = {.lex_state = 41, .external_lex_state = 5}, + [275] = {.lex_state = 41, .external_lex_state = 5}, + [276] = {.lex_state = 41, .external_lex_state = 5}, + [277] = {.lex_state = 41, .external_lex_state = 5}, + [278] = {.lex_state = 41, .external_lex_state = 5}, + [279] = {.lex_state = 41, .external_lex_state = 5}, + [280] = {.lex_state = 41, .external_lex_state = 5}, + [281] = {.lex_state = 41, .external_lex_state = 5}, + [282] = {.lex_state = 41, .external_lex_state = 5}, + [283] = {.lex_state = 41, .external_lex_state = 5}, + [284] = {.lex_state = 41, .external_lex_state = 5}, + [285] = {.lex_state = 41, .external_lex_state = 5}, + [286] = {.lex_state = 41, .external_lex_state = 5}, + [287] = {.lex_state = 41, .external_lex_state = 5}, + [288] = {.lex_state = 41, .external_lex_state = 5}, + [289] = {.lex_state = 41, .external_lex_state = 5}, + [290] = {.lex_state = 41, .external_lex_state = 5}, + [291] = {.lex_state = 41, .external_lex_state = 5}, + [292] = {.lex_state = 41, .external_lex_state = 5}, + [293] = {.lex_state = 41, .external_lex_state = 5}, + [294] = {.lex_state = 41, .external_lex_state = 5}, + [295] = {.lex_state = 41, .external_lex_state = 5}, + [296] = {.lex_state = 41, .external_lex_state = 5}, + [297] = {.lex_state = 41, .external_lex_state = 5}, + [298] = {.lex_state = 41, .external_lex_state = 5}, + [299] = {.lex_state = 41, .external_lex_state = 5}, + [300] = {.lex_state = 41, .external_lex_state = 5}, + [301] = {.lex_state = 4, .external_lex_state = 2}, [302] = {.lex_state = 96}, - [303] = {.lex_state = 4, .external_lex_state = 4}, - [304] = {.lex_state = 4, .external_lex_state = 4}, - [305] = {.lex_state = 94, .external_lex_state = 6}, - [306] = {.lex_state = 94, .external_lex_state = 5}, - [307] = {.lex_state = 94, .external_lex_state = 6}, - [308] = {.lex_state = 94, .external_lex_state = 5}, + [303] = {.lex_state = 96}, + [304] = {.lex_state = 4, .external_lex_state = 2}, + [305] = {.lex_state = 4, .external_lex_state = 4}, + [306] = {.lex_state = 4}, + [307] = {.lex_state = 4}, + [308] = {.lex_state = 4, .external_lex_state = 4}, [309] = {.lex_state = 4, .external_lex_state = 4}, - [310] = {.lex_state = 94, .external_lex_state = 6}, - [311] = {.lex_state = 94, .external_lex_state = 6}, - [312] = {.lex_state = 4, .external_lex_state = 4}, - [313] = {.lex_state = 94, .external_lex_state = 6}, - [314] = {.lex_state = 94, .external_lex_state = 6}, - [315] = {.lex_state = 4, .external_lex_state = 6}, - [316] = {.lex_state = 94, .external_lex_state = 6}, - [317] = {.lex_state = 94, .external_lex_state = 6}, - [318] = {.lex_state = 4, .external_lex_state = 2}, - [319] = {.lex_state = 4, .external_lex_state = 2}, - [320] = {.lex_state = 4, .external_lex_state = 2}, - [321] = {.lex_state = 4, .external_lex_state = 6}, + [310] = {.lex_state = 4, .external_lex_state = 2}, + [311] = {.lex_state = 4, .external_lex_state = 4}, + [312] = {.lex_state = 4, .external_lex_state = 5}, + [313] = {.lex_state = 4, .external_lex_state = 5}, + [314] = {.lex_state = 4, .external_lex_state = 4}, + [315] = {.lex_state = 4, .external_lex_state = 2}, + [316] = {.lex_state = 4, .external_lex_state = 2}, + [317] = {.lex_state = 4, .external_lex_state = 2}, + [318] = {.lex_state = 4, .external_lex_state = 4}, + [319] = {.lex_state = 4, .external_lex_state = 4}, + [320] = {.lex_state = 4}, + [321] = {.lex_state = 35, .external_lex_state = 4}, [322] = {.lex_state = 4, .external_lex_state = 2}, [323] = {.lex_state = 4, .external_lex_state = 4}, - [324] = {.lex_state = 4}, + [324] = {.lex_state = 4, .external_lex_state = 4}, [325] = {.lex_state = 4}, - [326] = {.lex_state = 94, .external_lex_state = 6}, - [327] = {.lex_state = 94, .external_lex_state = 6}, - [328] = {.lex_state = 94, .external_lex_state = 6}, - [329] = {.lex_state = 94, .external_lex_state = 6}, - [330] = {.lex_state = 94, .external_lex_state = 6}, - [331] = {.lex_state = 94, .external_lex_state = 6}, - [332] = {.lex_state = 94, .external_lex_state = 6}, - [333] = {.lex_state = 4, .external_lex_state = 4}, - [334] = {.lex_state = 94, .external_lex_state = 6}, - [335] = {.lex_state = 94, .external_lex_state = 6}, - [336] = {.lex_state = 4, .external_lex_state = 4}, - [337] = {.lex_state = 4}, + [326] = {.lex_state = 4, .external_lex_state = 5}, + [327] = {.lex_state = 4, .external_lex_state = 2}, + [328] = {.lex_state = 4}, + [329] = {.lex_state = 4, .external_lex_state = 5}, + [330] = {.lex_state = 4, .external_lex_state = 4}, + [331] = {.lex_state = 4, .external_lex_state = 5}, + [332] = {.lex_state = 4, .external_lex_state = 2}, + [333] = {.lex_state = 4}, + [334] = {.lex_state = 35, .external_lex_state = 4}, + [335] = {.lex_state = 4, .external_lex_state = 4}, + [336] = {.lex_state = 94, .external_lex_state = 5}, + [337] = {.lex_state = 4, .external_lex_state = 4}, [338] = {.lex_state = 94, .external_lex_state = 6}, - [339] = {.lex_state = 35, .external_lex_state = 4}, - [340] = {.lex_state = 4}, + [339] = {.lex_state = 4}, + [340] = {.lex_state = 4, .external_lex_state = 4}, [341] = {.lex_state = 4, .external_lex_state = 4}, - [342] = {.lex_state = 94, .external_lex_state = 6}, - [343] = {.lex_state = 94, .external_lex_state = 6}, - [344] = {.lex_state = 94, .external_lex_state = 6}, - [345] = {.lex_state = 94, .external_lex_state = 6}, - [346] = {.lex_state = 94, .external_lex_state = 6}, + [342] = {.lex_state = 4}, + [343] = {.lex_state = 4, .external_lex_state = 4}, + [344] = {.lex_state = 4, .external_lex_state = 4}, + [345] = {.lex_state = 4, .external_lex_state = 5}, + [346] = {.lex_state = 4, .external_lex_state = 4}, [347] = {.lex_state = 4, .external_lex_state = 4}, - [348] = {.lex_state = 4, .external_lex_state = 6}, - [349] = {.lex_state = 4, .external_lex_state = 2}, - [350] = {.lex_state = 94, .external_lex_state = 6}, - [351] = {.lex_state = 94, .external_lex_state = 6}, - [352] = {.lex_state = 4, .external_lex_state = 2}, - [353] = {.lex_state = 4}, - [354] = {.lex_state = 35, .external_lex_state = 4}, - [355] = {.lex_state = 4, .external_lex_state = 4}, - [356] = {.lex_state = 94, .external_lex_state = 6}, - [357] = {.lex_state = 94, .external_lex_state = 6}, - [358] = {.lex_state = 4, .external_lex_state = 6}, - [359] = {.lex_state = 94, .external_lex_state = 6}, - [360] = {.lex_state = 4, .external_lex_state = 6}, - [361] = {.lex_state = 94, .external_lex_state = 6}, - [362] = {.lex_state = 4, .external_lex_state = 2}, - [363] = {.lex_state = 4}, - [364] = {.lex_state = 4, .external_lex_state = 4}, + [348] = {.lex_state = 4, .external_lex_state = 4}, + [349] = {.lex_state = 4, .external_lex_state = 4}, + [350] = {.lex_state = 4, .external_lex_state = 4}, + [351] = {.lex_state = 4, .external_lex_state = 4}, + [352] = {.lex_state = 4, .external_lex_state = 4}, + [353] = {.lex_state = 4, .external_lex_state = 4}, + [354] = {.lex_state = 4, .external_lex_state = 4}, + [355] = {.lex_state = 94, .external_lex_state = 6}, + [356] = {.lex_state = 4, .external_lex_state = 4}, + [357] = {.lex_state = 35, .external_lex_state = 5}, + [358] = {.lex_state = 4, .external_lex_state = 4}, + [359] = {.lex_state = 4, .external_lex_state = 2}, + [360] = {.lex_state = 4, .external_lex_state = 4}, + [361] = {.lex_state = 4, .external_lex_state = 2}, + [362] = {.lex_state = 4, .external_lex_state = 5}, + [363] = {.lex_state = 35, .external_lex_state = 2}, + [364] = {.lex_state = 4, .external_lex_state = 5}, [365] = {.lex_state = 4, .external_lex_state = 4}, - [366] = {.lex_state = 4, .external_lex_state = 2}, - [367] = {.lex_state = 4, .external_lex_state = 6}, - [368] = {.lex_state = 4, .external_lex_state = 4}, - [369] = {.lex_state = 4, .external_lex_state = 4}, + [366] = {.lex_state = 4, .external_lex_state = 4}, + [367] = {.lex_state = 35, .external_lex_state = 5}, + [368] = {.lex_state = 4, .external_lex_state = 5}, + [369] = {.lex_state = 4, .external_lex_state = 5}, [370] = {.lex_state = 4, .external_lex_state = 4}, - [371] = {.lex_state = 4, .external_lex_state = 6}, + [371] = {.lex_state = 4, .external_lex_state = 4}, [372] = {.lex_state = 4, .external_lex_state = 4}, - [373] = {.lex_state = 94, .external_lex_state = 5}, + [373] = {.lex_state = 4, .external_lex_state = 4}, [374] = {.lex_state = 4, .external_lex_state = 4}, [375] = {.lex_state = 4, .external_lex_state = 4}, - [376] = {.lex_state = 4, .external_lex_state = 4}, + [376] = {.lex_state = 4}, [377] = {.lex_state = 4, .external_lex_state = 4}, - [378] = {.lex_state = 4, .external_lex_state = 2}, - [379] = {.lex_state = 4, .external_lex_state = 2}, - [380] = {.lex_state = 4}, + [378] = {.lex_state = 4, .external_lex_state = 4}, + [379] = {.lex_state = 4, .external_lex_state = 4}, + [380] = {.lex_state = 4, .external_lex_state = 2}, [381] = {.lex_state = 4, .external_lex_state = 4}, [382] = {.lex_state = 4, .external_lex_state = 4}, - [383] = {.lex_state = 4, .external_lex_state = 4}, + [383] = {.lex_state = 94, .external_lex_state = 6}, [384] = {.lex_state = 4, .external_lex_state = 4}, - [385] = {.lex_state = 4, .external_lex_state = 4}, - [386] = {.lex_state = 4, .external_lex_state = 4}, + [385] = {.lex_state = 35, .external_lex_state = 2}, + [386] = {.lex_state = 94, .external_lex_state = 5}, [387] = {.lex_state = 4, .external_lex_state = 4}, [388] = {.lex_state = 4, .external_lex_state = 4}, [389] = {.lex_state = 4, .external_lex_state = 4}, - [390] = {.lex_state = 4, .external_lex_state = 4}, - [391] = {.lex_state = 4}, - [392] = {.lex_state = 4, .external_lex_state = 4}, + [390] = {.lex_state = 94, .external_lex_state = 6}, + [391] = {.lex_state = 4, .external_lex_state = 4}, + [392] = {.lex_state = 94, .external_lex_state = 6}, [393] = {.lex_state = 4, .external_lex_state = 4}, - [394] = {.lex_state = 4, .external_lex_state = 4}, - [395] = {.lex_state = 4, .external_lex_state = 6}, - [396] = {.lex_state = 4, .external_lex_state = 4}, - [397] = {.lex_state = 4, .external_lex_state = 4}, - [398] = {.lex_state = 4, .external_lex_state = 6}, - [399] = {.lex_state = 4, .external_lex_state = 4}, - [400] = {.lex_state = 4, .external_lex_state = 4}, - [401] = {.lex_state = 4, .external_lex_state = 4}, - [402] = {.lex_state = 4, .external_lex_state = 4}, - [403] = {.lex_state = 4, .external_lex_state = 4}, - [404] = {.lex_state = 4, .external_lex_state = 4}, - [405] = {.lex_state = 35, .external_lex_state = 2}, - [406] = {.lex_state = 94, .external_lex_state = 5}, - [407] = {.lex_state = 4, .external_lex_state = 4}, - [408] = {.lex_state = 4}, - [409] = {.lex_state = 4, .external_lex_state = 4}, - [410] = {.lex_state = 35, .external_lex_state = 6}, - [411] = {.lex_state = 35, .external_lex_state = 6}, - [412] = {.lex_state = 35, .external_lex_state = 2}, - [413] = {.lex_state = 94, .external_lex_state = 6}, - [414] = {.lex_state = 4, .external_lex_state = 4}, - [415] = {.lex_state = 4, .external_lex_state = 6}, - [416] = {.lex_state = 94, .external_lex_state = 5}, - [417] = {.lex_state = 4, .external_lex_state = 2}, + [394] = {.lex_state = 4, .external_lex_state = 2}, + [395] = {.lex_state = 4, .external_lex_state = 2}, + [396] = {.lex_state = 4, .external_lex_state = 2}, + [397] = {.lex_state = 4, .external_lex_state = 2}, + [398] = {.lex_state = 4, .external_lex_state = 5}, + [399] = {.lex_state = 4, .external_lex_state = 2}, + [400] = {.lex_state = 4, .external_lex_state = 2}, + [401] = {.lex_state = 94, .external_lex_state = 5}, + [402] = {.lex_state = 4, .external_lex_state = 5}, + [403] = {.lex_state = 94, .external_lex_state = 6}, + [404] = {.lex_state = 94, .external_lex_state = 5}, + [405] = {.lex_state = 4, .external_lex_state = 2}, + [406] = {.lex_state = 4, .external_lex_state = 5}, + [407] = {.lex_state = 4, .external_lex_state = 5}, + [408] = {.lex_state = 94, .external_lex_state = 5}, + [409] = {.lex_state = 94, .external_lex_state = 6}, + [410] = {.lex_state = 4, .external_lex_state = 5}, + [411] = {.lex_state = 4, .external_lex_state = 5}, + [412] = {.lex_state = 94, .external_lex_state = 6}, + [413] = {.lex_state = 4}, + [414] = {.lex_state = 4, .external_lex_state = 2}, + [415] = {.lex_state = 4, .external_lex_state = 5}, + [416] = {.lex_state = 4, .external_lex_state = 2}, + [417] = {.lex_state = 94, .external_lex_state = 6}, [418] = {.lex_state = 4}, - [419] = {.lex_state = 4, .external_lex_state = 6}, - [420] = {.lex_state = 4, .external_lex_state = 2}, - [421] = {.lex_state = 4, .external_lex_state = 2}, - [422] = {.lex_state = 4, .external_lex_state = 6}, - [423] = {.lex_state = 4, .external_lex_state = 2}, - [424] = {.lex_state = 4, .external_lex_state = 2}, - [425] = {.lex_state = 4, .external_lex_state = 2}, - [426] = {.lex_state = 4, .external_lex_state = 6}, + [419] = {.lex_state = 4, .external_lex_state = 2}, + [420] = {.lex_state = 4, .external_lex_state = 5}, + [421] = {.lex_state = 4, .external_lex_state = 5}, + [422] = {.lex_state = 4, .external_lex_state = 2}, + [423] = {.lex_state = 4, .external_lex_state = 5}, + [424] = {.lex_state = 4, .external_lex_state = 5}, + [425] = {.lex_state = 4, .external_lex_state = 5}, + [426] = {.lex_state = 4, .external_lex_state = 5}, [427] = {.lex_state = 4, .external_lex_state = 2}, [428] = {.lex_state = 4, .external_lex_state = 2}, - [429] = {.lex_state = 4, .external_lex_state = 6}, - [430] = {.lex_state = 4, .external_lex_state = 6}, - [431] = {.lex_state = 4, .external_lex_state = 6}, - [432] = {.lex_state = 94, .external_lex_state = 6}, - [433] = {.lex_state = 4, .external_lex_state = 6}, - [434] = {.lex_state = 4, .external_lex_state = 2}, - [435] = {.lex_state = 4, .external_lex_state = 2}, - [436] = {.lex_state = 4, .external_lex_state = 2}, - [437] = {.lex_state = 4, .external_lex_state = 6}, - [438] = {.lex_state = 4, .external_lex_state = 2}, - [439] = {.lex_state = 4, .external_lex_state = 6}, - [440] = {.lex_state = 4, .external_lex_state = 6}, - [441] = {.lex_state = 4, .external_lex_state = 6}, - [442] = {.lex_state = 4, .external_lex_state = 6}, - [443] = {.lex_state = 4, .external_lex_state = 6}, - [444] = {.lex_state = 94, .external_lex_state = 5}, - [445] = {.lex_state = 4, .external_lex_state = 6}, - [446] = {.lex_state = 4, .external_lex_state = 6}, - [447] = {.lex_state = 4, .external_lex_state = 6}, - [448] = {.lex_state = 94, .external_lex_state = 5}, - [449] = {.lex_state = 4}, - [450] = {.lex_state = 4, .external_lex_state = 6}, - [451] = {.lex_state = 4, .external_lex_state = 6}, - [452] = {.lex_state = 4, .external_lex_state = 6}, - [453] = {.lex_state = 4, .external_lex_state = 6}, - [454] = {.lex_state = 4, .external_lex_state = 6}, - [455] = {.lex_state = 4, .external_lex_state = 6}, - [456] = {.lex_state = 4, .external_lex_state = 6}, - [457] = {.lex_state = 4, .external_lex_state = 6}, - [458] = {.lex_state = 4, .external_lex_state = 6}, - [459] = {.lex_state = 4, .external_lex_state = 6}, - [460] = {.lex_state = 4, .external_lex_state = 6}, - [461] = {.lex_state = 4, .external_lex_state = 6}, - [462] = {.lex_state = 4, .external_lex_state = 6}, - [463] = {.lex_state = 4, .external_lex_state = 6}, - [464] = {.lex_state = 4, .external_lex_state = 2}, + [429] = {.lex_state = 4, .external_lex_state = 5}, + [430] = {.lex_state = 35}, + [431] = {.lex_state = 4, .external_lex_state = 5}, + [432] = {.lex_state = 4, .external_lex_state = 5}, + [433] = {.lex_state = 4, .external_lex_state = 5}, + [434] = {.lex_state = 4, .external_lex_state = 5}, + [435] = {.lex_state = 4}, + [436] = {.lex_state = 4, .external_lex_state = 5}, + [437] = {.lex_state = 4, .external_lex_state = 5}, + [438] = {.lex_state = 4, .external_lex_state = 5}, + [439] = {.lex_state = 4, .external_lex_state = 5}, + [440] = {.lex_state = 4, .external_lex_state = 5}, + [441] = {.lex_state = 4, .external_lex_state = 5}, + [442] = {.lex_state = 4, .external_lex_state = 2}, + [443] = {.lex_state = 4, .external_lex_state = 5}, + [444] = {.lex_state = 4, .external_lex_state = 5}, + [445] = {.lex_state = 4, .external_lex_state = 2}, + [446] = {.lex_state = 23, .external_lex_state = 2}, + [447] = {.lex_state = 4, .external_lex_state = 5}, + [448] = {.lex_state = 4, .external_lex_state = 5}, + [449] = {.lex_state = 4, .external_lex_state = 5}, + [450] = {.lex_state = 4, .external_lex_state = 2}, + [451] = {.lex_state = 4, .external_lex_state = 5}, + [452] = {.lex_state = 4, .external_lex_state = 5}, + [453] = {.lex_state = 4, .external_lex_state = 5}, + [454] = {.lex_state = 4, .external_lex_state = 2}, + [455] = {.lex_state = 94, .external_lex_state = 6}, + [456] = {.lex_state = 4, .external_lex_state = 5}, + [457] = {.lex_state = 4, .external_lex_state = 5}, + [458] = {.lex_state = 94, .external_lex_state = 6}, + [459] = {.lex_state = 4, .external_lex_state = 2}, + [460] = {.lex_state = 35}, + [461] = {.lex_state = 4, .external_lex_state = 5}, + [462] = {.lex_state = 4, .external_lex_state = 5}, + [463] = {.lex_state = 4, .external_lex_state = 5}, + [464] = {.lex_state = 4}, [465] = {.lex_state = 94, .external_lex_state = 5}, - [466] = {.lex_state = 4, .external_lex_state = 2}, - [467] = {.lex_state = 4, .external_lex_state = 2}, - [468] = {.lex_state = 4, .external_lex_state = 6}, - [469] = {.lex_state = 4, .external_lex_state = 6}, - [470] = {.lex_state = 35}, - [471] = {.lex_state = 35}, - [472] = {.lex_state = 4, .external_lex_state = 6}, - [473] = {.lex_state = 4, .external_lex_state = 6}, + [466] = {.lex_state = 94, .external_lex_state = 5}, + [467] = {.lex_state = 4}, + [468] = {.lex_state = 4}, + [469] = {.lex_state = 4}, + [470] = {.lex_state = 4}, + [471] = {.lex_state = 4}, + [472] = {.lex_state = 4}, + [473] = {.lex_state = 4}, [474] = {.lex_state = 4}, [475] = {.lex_state = 4}, [476] = {.lex_state = 4}, - [477] = {.lex_state = 4}, + [477] = {.lex_state = 94, .external_lex_state = 5}, [478] = {.lex_state = 4}, [479] = {.lex_state = 4}, - [480] = {.lex_state = 4}, - [481] = {.lex_state = 4}, - [482] = {.lex_state = 94, .external_lex_state = 6}, - [483] = {.lex_state = 94, .external_lex_state = 6}, - [484] = {.lex_state = 92, .external_lex_state = 6}, - [485] = {.lex_state = 4}, + [480] = {.lex_state = 94, .external_lex_state = 5}, + [481] = {.lex_state = 94, .external_lex_state = 5}, + [482] = {.lex_state = 94, .external_lex_state = 5}, + [483] = {.lex_state = 94, .external_lex_state = 5}, + [484] = {.lex_state = 4}, + [485] = {.lex_state = 94, .external_lex_state = 5}, [486] = {.lex_state = 4}, [487] = {.lex_state = 4}, - [488] = {.lex_state = 94, .external_lex_state = 6}, - [489] = {.lex_state = 4}, - [490] = {.lex_state = 4}, - [491] = {.lex_state = 23, .external_lex_state = 2}, + [488] = {.lex_state = 92, .external_lex_state = 5}, + [489] = {.lex_state = 94, .external_lex_state = 5}, + [490] = {.lex_state = 94, .external_lex_state = 5}, + [491] = {.lex_state = 92, .external_lex_state = 5}, [492] = {.lex_state = 4}, - [493] = {.lex_state = 92, .external_lex_state = 6}, - [494] = {.lex_state = 94, .external_lex_state = 6}, - [495] = {.lex_state = 4}, - [496] = {.lex_state = 4}, - [497] = {.lex_state = 94, .external_lex_state = 6}, - [498] = {.lex_state = 4, .external_lex_state = 2}, - [499] = {.lex_state = 94, .external_lex_state = 6}, - [500] = {.lex_state = 94, .external_lex_state = 6}, - [501] = {.lex_state = 94, .external_lex_state = 6}, - [502] = {.lex_state = 94, .external_lex_state = 6}, - [503] = {.lex_state = 94, .external_lex_state = 6}, - [504] = {.lex_state = 94, .external_lex_state = 6}, + [493] = {.lex_state = 4}, + [494] = {.lex_state = 23}, + [495] = {.lex_state = 94, .external_lex_state = 5}, + [496] = {.lex_state = 94, .external_lex_state = 5}, + [497] = {.lex_state = 94, .external_lex_state = 5}, + [498] = {.lex_state = 94, .external_lex_state = 5}, + [499] = {.lex_state = 94, .external_lex_state = 5}, + [500] = {.lex_state = 94, .external_lex_state = 5}, + [501] = {.lex_state = 94, .external_lex_state = 5}, + [502] = {.lex_state = 94, .external_lex_state = 5}, + [503] = {.lex_state = 94, .external_lex_state = 5}, + [504] = {.lex_state = 4, .external_lex_state = 2}, [505] = {.lex_state = 4, .external_lex_state = 2}, - [506] = {.lex_state = 4, .external_lex_state = 2}, - [507] = {.lex_state = 94, .external_lex_state = 6}, - [508] = {.lex_state = 4, .external_lex_state = 2}, - [509] = {.lex_state = 4, .external_lex_state = 2}, - [510] = {.lex_state = 94, .external_lex_state = 6}, - [511] = {.lex_state = 23}, - [512] = {.lex_state = 94, .external_lex_state = 6}, - [513] = {.lex_state = 94, .external_lex_state = 6}, - [514] = {.lex_state = 94, .external_lex_state = 6}, - [515] = {.lex_state = 94, .external_lex_state = 6}, - [516] = {.lex_state = 94, .external_lex_state = 6}, - [517] = {.lex_state = 94, .external_lex_state = 6}, - [518] = {.lex_state = 94, .external_lex_state = 6}, - [519] = {.lex_state = 94, .external_lex_state = 6}, - [520] = {.lex_state = 4}, - [521] = {.lex_state = 4}, - [522] = {.lex_state = 4}, - [523] = {.lex_state = 4}, - [524] = {.lex_state = 4}, - [525] = {.lex_state = 23, .external_lex_state = 2}, - [526] = {.lex_state = 23}, - [527] = {.lex_state = 96, .external_lex_state = 6}, - [528] = {.lex_state = 96, .external_lex_state = 6}, - [529] = {.lex_state = 96, .external_lex_state = 6}, - [530] = {.lex_state = 96}, - [531] = {.lex_state = 96}, - [532] = {.lex_state = 96, .external_lex_state = 6}, - [533] = {.lex_state = 96, .external_lex_state = 6}, - [534] = {.lex_state = 96, .external_lex_state = 6}, - [535] = {.lex_state = 96}, - [536] = {.lex_state = 96, .external_lex_state = 6}, - [537] = {.lex_state = 97, .external_lex_state = 6}, - [538] = {.lex_state = 96, .external_lex_state = 6}, - [539] = {.lex_state = 96, .external_lex_state = 6}, - [540] = {.lex_state = 97, .external_lex_state = 6}, - [541] = {.lex_state = 96}, - [542] = {.lex_state = 96, .external_lex_state = 6}, - [543] = {.lex_state = 96}, - [544] = {.lex_state = 96}, - [545] = {.lex_state = 96}, - [546] = {.lex_state = 96, .external_lex_state = 6}, - [547] = {.lex_state = 96, .external_lex_state = 6}, - [548] = {.lex_state = 96, .external_lex_state = 6}, - [549] = {.lex_state = 96, .external_lex_state = 6}, + [506] = {.lex_state = 94, .external_lex_state = 5}, + [507] = {.lex_state = 94, .external_lex_state = 5}, + [508] = {.lex_state = 94, .external_lex_state = 5}, + [509] = {.lex_state = 94, .external_lex_state = 5}, + [510] = {.lex_state = 94, .external_lex_state = 5}, + [511] = {.lex_state = 94, .external_lex_state = 5}, + [512] = {.lex_state = 94, .external_lex_state = 5}, + [513] = {.lex_state = 94, .external_lex_state = 5}, + [514] = {.lex_state = 94, .external_lex_state = 5}, + [515] = {.lex_state = 94, .external_lex_state = 5}, + [516] = {.lex_state = 94, .external_lex_state = 5}, + [517] = {.lex_state = 4, .external_lex_state = 2}, + [518] = {.lex_state = 94, .external_lex_state = 5}, + [519] = {.lex_state = 94, .external_lex_state = 5}, + [520] = {.lex_state = 94, .external_lex_state = 5}, + [521] = {.lex_state = 4, .external_lex_state = 2}, + [522] = {.lex_state = 94, .external_lex_state = 5}, + [523] = {.lex_state = 94, .external_lex_state = 5}, + [524] = {.lex_state = 94, .external_lex_state = 5}, + [525] = {.lex_state = 94, .external_lex_state = 5}, + [526] = {.lex_state = 94, .external_lex_state = 5}, + [527] = {.lex_state = 94, .external_lex_state = 5}, + [528] = {.lex_state = 94, .external_lex_state = 5}, + [529] = {.lex_state = 4, .external_lex_state = 2}, + [530] = {.lex_state = 94, .external_lex_state = 5}, + [531] = {.lex_state = 94, .external_lex_state = 5}, + [532] = {.lex_state = 94, .external_lex_state = 5}, + [533] = {.lex_state = 94, .external_lex_state = 5}, + [534] = {.lex_state = 94, .external_lex_state = 5}, + [535] = {.lex_state = 94, .external_lex_state = 5}, + [536] = {.lex_state = 94, .external_lex_state = 5}, + [537] = {.lex_state = 94, .external_lex_state = 5}, + [538] = {.lex_state = 94, .external_lex_state = 5}, + [539] = {.lex_state = 94, .external_lex_state = 5}, + [540] = {.lex_state = 94, .external_lex_state = 5}, + [541] = {.lex_state = 4}, + [542] = {.lex_state = 4}, + [543] = {.lex_state = 23, .external_lex_state = 2}, + [544] = {.lex_state = 4}, + [545] = {.lex_state = 4}, + [546] = {.lex_state = 4}, + [547] = {.lex_state = 23}, + [548] = {.lex_state = 96, .external_lex_state = 5}, + [549] = {.lex_state = 96, .external_lex_state = 5}, [550] = {.lex_state = 96}, [551] = {.lex_state = 96}, - [552] = {.lex_state = 97}, - [553] = {.lex_state = 96, .external_lex_state = 6}, - [554] = {.lex_state = 96, .external_lex_state = 6}, + [552] = {.lex_state = 96, .external_lex_state = 5}, + [553] = {.lex_state = 96, .external_lex_state = 5}, + [554] = {.lex_state = 96, .external_lex_state = 5}, [555] = {.lex_state = 96}, - [556] = {.lex_state = 96, .external_lex_state = 6}, - [557] = {.lex_state = 96, .external_lex_state = 6}, - [558] = {.lex_state = 96, .external_lex_state = 6}, - [559] = {.lex_state = 96, .external_lex_state = 6}, - [560] = {.lex_state = 96, .external_lex_state = 6}, - [561] = {.lex_state = 96}, - [562] = {.lex_state = 96, .external_lex_state = 6}, - [563] = {.lex_state = 96, .external_lex_state = 6}, - [564] = {.lex_state = 96, .external_lex_state = 6}, - [565] = {.lex_state = 96, .external_lex_state = 6}, - [566] = {.lex_state = 96, .external_lex_state = 6}, - [567] = {.lex_state = 96, .external_lex_state = 6}, - [568] = {.lex_state = 96, .external_lex_state = 6}, - [569] = {.lex_state = 96, .external_lex_state = 6}, - [570] = {.lex_state = 96, .external_lex_state = 6}, - [571] = {.lex_state = 96, .external_lex_state = 6}, - [572] = {.lex_state = 96, .external_lex_state = 6}, - [573] = {.lex_state = 96, .external_lex_state = 6}, - [574] = {.lex_state = 96}, - [575] = {.lex_state = 97}, - [576] = {.lex_state = 96, .external_lex_state = 6}, - [577] = {.lex_state = 4, .external_lex_state = 2}, - [578] = {.lex_state = 96, .external_lex_state = 6}, - [579] = {.lex_state = 96, .external_lex_state = 6}, - [580] = {.lex_state = 96, .external_lex_state = 6}, - [581] = {.lex_state = 4, .external_lex_state = 2}, - [582] = {.lex_state = 96, .external_lex_state = 6}, - [583] = {.lex_state = 96, .external_lex_state = 6}, - [584] = {.lex_state = 96, .external_lex_state = 6}, - [585] = {.lex_state = 96, .external_lex_state = 6}, - [586] = {.lex_state = 96, .external_lex_state = 6}, - [587] = {.lex_state = 96, .external_lex_state = 6}, - [588] = {.lex_state = 96, .external_lex_state = 6}, + [556] = {.lex_state = 96, .external_lex_state = 5}, + [557] = {.lex_state = 96}, + [558] = {.lex_state = 97, .external_lex_state = 5}, + [559] = {.lex_state = 96}, + [560] = {.lex_state = 96}, + [561] = {.lex_state = 96, .external_lex_state = 5}, + [562] = {.lex_state = 96, .external_lex_state = 5}, + [563] = {.lex_state = 96}, + [564] = {.lex_state = 96, .external_lex_state = 5}, + [565] = {.lex_state = 96, .external_lex_state = 5}, + [566] = {.lex_state = 4, .external_lex_state = 2}, + [567] = {.lex_state = 4, .external_lex_state = 2}, + [568] = {.lex_state = 97, .external_lex_state = 5}, + [569] = {.lex_state = 96, .external_lex_state = 5}, + [570] = {.lex_state = 96, .external_lex_state = 5}, + [571] = {.lex_state = 96, .external_lex_state = 5}, + [572] = {.lex_state = 96, .external_lex_state = 5}, + [573] = {.lex_state = 96, .external_lex_state = 5}, + [574] = {.lex_state = 96, .external_lex_state = 5}, + [575] = {.lex_state = 96, .external_lex_state = 5}, + [576] = {.lex_state = 96, .external_lex_state = 5}, + [577] = {.lex_state = 96, .external_lex_state = 5}, + [578] = {.lex_state = 96, .external_lex_state = 5}, + [579] = {.lex_state = 4}, + [580] = {.lex_state = 96, .external_lex_state = 5}, + [581] = {.lex_state = 96, .external_lex_state = 5}, + [582] = {.lex_state = 4}, + [583] = {.lex_state = 96, .external_lex_state = 5}, + [584] = {.lex_state = 96, .external_lex_state = 5}, + [585] = {.lex_state = 96}, + [586] = {.lex_state = 96, .external_lex_state = 5}, + [587] = {.lex_state = 96, .external_lex_state = 5}, + [588] = {.lex_state = 96, .external_lex_state = 5}, [589] = {.lex_state = 96}, - [590] = {.lex_state = 4}, - [591] = {.lex_state = 41, .external_lex_state = 3}, - [592] = {.lex_state = 96}, - [593] = {.lex_state = 96}, - [594] = {.lex_state = 96}, - [595] = {.lex_state = 96}, - [596] = {.lex_state = 96}, - [597] = {.lex_state = 96}, - [598] = {.lex_state = 96}, - [599] = {.lex_state = 96}, - [600] = {.lex_state = 41, .external_lex_state = 4}, - [601] = {.lex_state = 96}, + [590] = {.lex_state = 96}, + [591] = {.lex_state = 97}, + [592] = {.lex_state = 96, .external_lex_state = 5}, + [593] = {.lex_state = 96, .external_lex_state = 5}, + [594] = {.lex_state = 96, .external_lex_state = 5}, + [595] = {.lex_state = 96, .external_lex_state = 5}, + [596] = {.lex_state = 96, .external_lex_state = 5}, + [597] = {.lex_state = 96, .external_lex_state = 5}, + [598] = {.lex_state = 96, .external_lex_state = 5}, + [599] = {.lex_state = 96, .external_lex_state = 5}, + [600] = {.lex_state = 96, .external_lex_state = 5}, + [601] = {.lex_state = 96, .external_lex_state = 5}, [602] = {.lex_state = 96}, - [603] = {.lex_state = 4}, + [603] = {.lex_state = 97}, [604] = {.lex_state = 96}, - [605] = {.lex_state = 41, .external_lex_state = 3}, - [606] = {.lex_state = 41, .external_lex_state = 3}, - [607] = {.lex_state = 41, .external_lex_state = 6}, - [608] = {.lex_state = 96}, - [609] = {.lex_state = 41, .external_lex_state = 5}, - [610] = {.lex_state = 41, .external_lex_state = 3}, - [611] = {.lex_state = 41, .external_lex_state = 4}, - [612] = {.lex_state = 41, .external_lex_state = 3}, - [613] = {.lex_state = 41, .external_lex_state = 3}, - [614] = {.lex_state = 41, .external_lex_state = 5}, - [615] = {.lex_state = 4, .external_lex_state = 2}, - [616] = {.lex_state = 41, .external_lex_state = 4}, - [617] = {.lex_state = 4, .external_lex_state = 2}, - [618] = {.lex_state = 41, .external_lex_state = 5}, - [619] = {.lex_state = 41, .external_lex_state = 5}, - [620] = {.lex_state = 41, .external_lex_state = 4}, - [621] = {.lex_state = 33, .external_lex_state = 4}, - [622] = {.lex_state = 41, .external_lex_state = 6}, - [623] = {.lex_state = 41, .external_lex_state = 4}, - [624] = {.lex_state = 33, .external_lex_state = 4}, - [625] = {.lex_state = 41, .external_lex_state = 5}, - [626] = {.lex_state = 41, .external_lex_state = 4}, - [627] = {.lex_state = 4}, - [628] = {.lex_state = 4}, - [629] = {.lex_state = 41, .external_lex_state = 5}, - [630] = {.lex_state = 41, .external_lex_state = 4}, - [631] = {.lex_state = 41, .external_lex_state = 4}, - [632] = {.lex_state = 41, .external_lex_state = 6}, - [633] = {.lex_state = 41, .external_lex_state = 4}, - [634] = {.lex_state = 41, .external_lex_state = 3}, - [635] = {.lex_state = 33, .external_lex_state = 6}, + [605] = {.lex_state = 96, .external_lex_state = 5}, + [606] = {.lex_state = 96, .external_lex_state = 5}, + [607] = {.lex_state = 96, .external_lex_state = 5}, + [608] = {.lex_state = 96, .external_lex_state = 5}, + [609] = {.lex_state = 96, .external_lex_state = 5}, + [610] = {.lex_state = 96, .external_lex_state = 5}, + [611] = {.lex_state = 96, .external_lex_state = 5}, + [612] = {.lex_state = 96, .external_lex_state = 5}, + [613] = {.lex_state = 96, .external_lex_state = 5}, + [614] = {.lex_state = 96, .external_lex_state = 5}, + [615] = {.lex_state = 96}, + [616] = {.lex_state = 96}, + [617] = {.lex_state = 96}, + [618] = {.lex_state = 96}, + [619] = {.lex_state = 96}, + [620] = {.lex_state = 96}, + [621] = {.lex_state = 96}, + [622] = {.lex_state = 96}, + [623] = {.lex_state = 96}, + [624] = {.lex_state = 96}, + [625] = {.lex_state = 96}, + [626] = {.lex_state = 96}, + [627] = {.lex_state = 96}, + [628] = {.lex_state = 96}, + [629] = {.lex_state = 96}, + [630] = {.lex_state = 96}, + [631] = {.lex_state = 4, .external_lex_state = 2}, + [632] = {.lex_state = 4, .external_lex_state = 2}, + [633] = {.lex_state = 4}, + [634] = {.lex_state = 4}, + [635] = {.lex_state = 44}, [636] = {.lex_state = 44}, [637] = {.lex_state = 44}, [638] = {.lex_state = 44}, - [639] = {.lex_state = 41, .external_lex_state = 6}, - [640] = {.lex_state = 41, .external_lex_state = 4}, - [641] = {.lex_state = 41, .external_lex_state = 4}, + [639] = {.lex_state = 44}, + [640] = {.lex_state = 44}, + [641] = {.lex_state = 44}, [642] = {.lex_state = 44}, [643] = {.lex_state = 44}, - [644] = {.lex_state = 41, .external_lex_state = 4}, - [645] = {.lex_state = 41, .external_lex_state = 4}, - [646] = {.lex_state = 41, .external_lex_state = 4}, + [644] = {.lex_state = 44}, + [645] = {.lex_state = 44}, + [646] = {.lex_state = 44}, [647] = {.lex_state = 44}, - [648] = {.lex_state = 41, .external_lex_state = 4}, - [649] = {.lex_state = 41, .external_lex_state = 3}, - [650] = {.lex_state = 41, .external_lex_state = 4}, - [651] = {.lex_state = 41, .external_lex_state = 6}, - [652] = {.lex_state = 41, .external_lex_state = 4}, - [653] = {.lex_state = 41, .external_lex_state = 4}, + [648] = {.lex_state = 44}, + [649] = {.lex_state = 44}, + [650] = {.lex_state = 4, .external_lex_state = 2}, + [651] = {.lex_state = 44}, + [652] = {.lex_state = 44}, + [653] = {.lex_state = 44}, [654] = {.lex_state = 44}, - [655] = {.lex_state = 41, .external_lex_state = 4}, - [656] = {.lex_state = 33, .external_lex_state = 6}, - [657] = {.lex_state = 41, .external_lex_state = 6}, + [655] = {.lex_state = 44}, + [656] = {.lex_state = 44}, + [657] = {.lex_state = 44}, [658] = {.lex_state = 44}, [659] = {.lex_state = 44}, [660] = {.lex_state = 44}, - [661] = {.lex_state = 4, .external_lex_state = 2}, + [661] = {.lex_state = 44}, [662] = {.lex_state = 4, .external_lex_state = 2}, - [663] = {.lex_state = 41, .external_lex_state = 4}, - [664] = {.lex_state = 41, .external_lex_state = 4}, - [665] = {.lex_state = 41, .external_lex_state = 6}, - [666] = {.lex_state = 41, .external_lex_state = 4}, - [667] = {.lex_state = 41, .external_lex_state = 4}, - [668] = {.lex_state = 41, .external_lex_state = 6}, - [669] = {.lex_state = 41, .external_lex_state = 4}, - [670] = {.lex_state = 4, .external_lex_state = 2}, - [671] = {.lex_state = 4, .external_lex_state = 2}, + [663] = {.lex_state = 44}, + [664] = {.lex_state = 44}, + [665] = {.lex_state = 44}, + [666] = {.lex_state = 44}, + [667] = {.lex_state = 44}, + [668] = {.lex_state = 44}, + [669] = {.lex_state = 44}, + [670] = {.lex_state = 44}, + [671] = {.lex_state = 44}, [672] = {.lex_state = 44}, [673] = {.lex_state = 44}, [674] = {.lex_state = 44}, @@ -6575,38 +7610,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [678] = {.lex_state = 44}, [679] = {.lex_state = 44}, [680] = {.lex_state = 44}, - [681] = {.lex_state = 41, .external_lex_state = 5}, + [681] = {.lex_state = 44}, [682] = {.lex_state = 44}, [683] = {.lex_state = 44}, - [684] = {.lex_state = 41, .external_lex_state = 5}, - [685] = {.lex_state = 41, .external_lex_state = 3}, + [684] = {.lex_state = 44}, + [685] = {.lex_state = 44}, [686] = {.lex_state = 44}, [687] = {.lex_state = 44}, [688] = {.lex_state = 44}, - [689] = {.lex_state = 41, .external_lex_state = 3}, + [689] = {.lex_state = 44}, [690] = {.lex_state = 44}, [691] = {.lex_state = 44}, [692] = {.lex_state = 44}, [693] = {.lex_state = 44}, - [694] = {.lex_state = 41, .external_lex_state = 6}, + [694] = {.lex_state = 44}, [695] = {.lex_state = 44}, [696] = {.lex_state = 44}, [697] = {.lex_state = 44}, [698] = {.lex_state = 44}, - [699] = {.lex_state = 41, .external_lex_state = 6}, + [699] = {.lex_state = 44}, [700] = {.lex_state = 44}, [701] = {.lex_state = 44}, [702] = {.lex_state = 44}, - [703] = {.lex_state = 41, .external_lex_state = 6}, + [703] = {.lex_state = 44}, [704] = {.lex_state = 44}, [705] = {.lex_state = 44}, - [706] = {.lex_state = 4}, - [707] = {.lex_state = 4}, + [706] = {.lex_state = 44}, + [707] = {.lex_state = 44}, [708] = {.lex_state = 44}, [709] = {.lex_state = 44}, [710] = {.lex_state = 44}, [711] = {.lex_state = 44}, - [712] = {.lex_state = 41, .external_lex_state = 6}, + [712] = {.lex_state = 44}, [713] = {.lex_state = 44}, [714] = {.lex_state = 44}, [715] = {.lex_state = 44}, @@ -6650,58 +7685,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [753] = {.lex_state = 44}, [754] = {.lex_state = 44}, [755] = {.lex_state = 44}, - [756] = {.lex_state = 41, .external_lex_state = 6}, - [757] = {.lex_state = 44}, - [758] = {.lex_state = 44}, - [759] = {.lex_state = 41, .external_lex_state = 6}, - [760] = {.lex_state = 41, .external_lex_state = 6}, + [756] = {.lex_state = 44}, + [757] = {.lex_state = 4, .external_lex_state = 2}, + [758] = {.lex_state = 4, .external_lex_state = 2}, + [759] = {.lex_state = 44}, + [760] = {.lex_state = 44}, [761] = {.lex_state = 44}, - [762] = {.lex_state = 41, .external_lex_state = 6}, + [762] = {.lex_state = 44}, [763] = {.lex_state = 44}, [764] = {.lex_state = 44}, [765] = {.lex_state = 44}, - [766] = {.lex_state = 41, .external_lex_state = 6}, + [766] = {.lex_state = 44}, [767] = {.lex_state = 44}, [768] = {.lex_state = 44}, - [769] = {.lex_state = 41, .external_lex_state = 6}, + [769] = {.lex_state = 44}, [770] = {.lex_state = 44}, [771] = {.lex_state = 44}, [772] = {.lex_state = 44}, [773] = {.lex_state = 44}, [774] = {.lex_state = 44}, - [775] = {.lex_state = 41, .external_lex_state = 6}, + [775] = {.lex_state = 44}, [776] = {.lex_state = 44}, - [777] = {.lex_state = 94, .external_lex_state = 6}, - [778] = {.lex_state = 4}, - [779] = {.lex_state = 41, .external_lex_state = 6}, + [777] = {.lex_state = 44}, + [778] = {.lex_state = 44}, + [779] = {.lex_state = 44}, [780] = {.lex_state = 44}, - [781] = {.lex_state = 4}, - [782] = {.lex_state = 41, .external_lex_state = 6}, - [783] = {.lex_state = 44}, - [784] = {.lex_state = 41, .external_lex_state = 6}, - [785] = {.lex_state = 41, .external_lex_state = 4}, + [781] = {.lex_state = 44}, + [782] = {.lex_state = 4}, + [783] = {.lex_state = 4}, + [784] = {.lex_state = 44}, + [785] = {.lex_state = 44}, [786] = {.lex_state = 44}, - [787] = {.lex_state = 41, .external_lex_state = 6}, + [787] = {.lex_state = 44}, [788] = {.lex_state = 44}, - [789] = {.lex_state = 41, .external_lex_state = 6}, + [789] = {.lex_state = 44}, [790] = {.lex_state = 44}, [791] = {.lex_state = 44}, [792] = {.lex_state = 44}, [793] = {.lex_state = 44}, [794] = {.lex_state = 44}, [795] = {.lex_state = 44}, - [796] = {.lex_state = 41, .external_lex_state = 6}, + [796] = {.lex_state = 44}, [797] = {.lex_state = 44}, - [798] = {.lex_state = 33, .external_lex_state = 4}, + [798] = {.lex_state = 44}, [799] = {.lex_state = 44}, [800] = {.lex_state = 44}, - [801] = {.lex_state = 41, .external_lex_state = 4}, - [802] = {.lex_state = 33, .external_lex_state = 4}, + [801] = {.lex_state = 44}, + [802] = {.lex_state = 44}, [803] = {.lex_state = 44}, - [804] = {.lex_state = 44}, + [804] = {.lex_state = 4}, [805] = {.lex_state = 44}, [806] = {.lex_state = 44}, - [807] = {.lex_state = 44}, + [807] = {.lex_state = 4}, [808] = {.lex_state = 44}, [809] = {.lex_state = 44}, [810] = {.lex_state = 44}, @@ -6709,7 +7744,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [812] = {.lex_state = 44}, [813] = {.lex_state = 44}, [814] = {.lex_state = 44}, - [815] = {.lex_state = 94, .external_lex_state = 5}, + [815] = {.lex_state = 44}, [816] = {.lex_state = 44}, [817] = {.lex_state = 44}, [818] = {.lex_state = 44}, @@ -6725,17 +7760,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [828] = {.lex_state = 44}, [829] = {.lex_state = 44}, [830] = {.lex_state = 44}, - [831] = {.lex_state = 4, .external_lex_state = 2}, + [831] = {.lex_state = 44}, [832] = {.lex_state = 44}, [833] = {.lex_state = 44}, [834] = {.lex_state = 44}, - [835] = {.lex_state = 41, .external_lex_state = 4}, + [835] = {.lex_state = 44}, [836] = {.lex_state = 44}, - [837] = {.lex_state = 4, .external_lex_state = 2}, - [838] = {.lex_state = 94, .external_lex_state = 5}, + [837] = {.lex_state = 44}, + [838] = {.lex_state = 44}, [839] = {.lex_state = 44}, - [840] = {.lex_state = 41, .external_lex_state = 4}, - [841] = {.lex_state = 94, .external_lex_state = 5}, + [840] = {.lex_state = 44}, + [841] = {.lex_state = 44}, [842] = {.lex_state = 44}, [843] = {.lex_state = 44}, [844] = {.lex_state = 44}, @@ -6743,9 +7778,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [846] = {.lex_state = 44}, [847] = {.lex_state = 44}, [848] = {.lex_state = 44}, - [849] = {.lex_state = 41, .external_lex_state = 5}, + [849] = {.lex_state = 44}, [850] = {.lex_state = 44}, - [851] = {.lex_state = 41, .external_lex_state = 5}, + [851] = {.lex_state = 44}, [852] = {.lex_state = 44}, [853] = {.lex_state = 44}, [854] = {.lex_state = 44}, @@ -6770,7 +7805,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [873] = {.lex_state = 44}, [874] = {.lex_state = 44}, [875] = {.lex_state = 44}, - [876] = {.lex_state = 44}, + [876] = {.lex_state = 4, .external_lex_state = 2}, [877] = {.lex_state = 44}, [878] = {.lex_state = 44}, [879] = {.lex_state = 44}, @@ -6825,12 +7860,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [928] = {.lex_state = 44}, [929] = {.lex_state = 44}, [930] = {.lex_state = 44}, - [931] = {.lex_state = 41, .external_lex_state = 6}, + [931] = {.lex_state = 44}, [932] = {.lex_state = 44}, [933] = {.lex_state = 44}, [934] = {.lex_state = 44}, [935] = {.lex_state = 44}, - [936] = {.lex_state = 4}, + [936] = {.lex_state = 44}, [937] = {.lex_state = 44}, [938] = {.lex_state = 44}, [939] = {.lex_state = 44}, @@ -6842,7 +7877,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [945] = {.lex_state = 44}, [946] = {.lex_state = 44}, [947] = {.lex_state = 44}, - [948] = {.lex_state = 41, .external_lex_state = 6}, + [948] = {.lex_state = 44}, [949] = {.lex_state = 44}, [950] = {.lex_state = 44}, [951] = {.lex_state = 44}, @@ -6859,10 +7894,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [962] = {.lex_state = 44}, [963] = {.lex_state = 44}, [964] = {.lex_state = 44}, - [965] = {.lex_state = 41, .external_lex_state = 4}, + [965] = {.lex_state = 44}, [966] = {.lex_state = 44}, [967] = {.lex_state = 44}, - [968] = {.lex_state = 41, .external_lex_state = 4}, + [968] = {.lex_state = 44}, [969] = {.lex_state = 44}, [970] = {.lex_state = 44}, [971] = {.lex_state = 44}, @@ -6872,9 +7907,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [975] = {.lex_state = 44}, [976] = {.lex_state = 44}, [977] = {.lex_state = 44}, - [978] = {.lex_state = 41, .external_lex_state = 4}, + [978] = {.lex_state = 44}, [979] = {.lex_state = 44}, - [980] = {.lex_state = 41, .external_lex_state = 4}, + [980] = {.lex_state = 44}, [981] = {.lex_state = 44}, [982] = {.lex_state = 44}, [983] = {.lex_state = 44}, @@ -6883,25 +7918,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [986] = {.lex_state = 44}, [987] = {.lex_state = 44}, [988] = {.lex_state = 44}, - [989] = {.lex_state = 44}, + [989] = {.lex_state = 4, .external_lex_state = 2}, [990] = {.lex_state = 44}, - [991] = {.lex_state = 41, .external_lex_state = 4}, + [991] = {.lex_state = 44}, [992] = {.lex_state = 44}, - [993] = {.lex_state = 41, .external_lex_state = 4}, + [993] = {.lex_state = 44}, [994] = {.lex_state = 44}, - [995] = {.lex_state = 41, .external_lex_state = 4}, + [995] = {.lex_state = 44}, [996] = {.lex_state = 44}, [997] = {.lex_state = 44}, [998] = {.lex_state = 44}, [999] = {.lex_state = 44}, [1000] = {.lex_state = 44}, - [1001] = {.lex_state = 41, .external_lex_state = 4}, - [1002] = {.lex_state = 41, .external_lex_state = 4}, + [1001] = {.lex_state = 44}, + [1002] = {.lex_state = 44}, [1003] = {.lex_state = 44}, [1004] = {.lex_state = 44}, [1005] = {.lex_state = 44}, - [1006] = {.lex_state = 41, .external_lex_state = 4}, - [1007] = {.lex_state = 41, .external_lex_state = 4}, + [1006] = {.lex_state = 44}, + [1007] = {.lex_state = 44}, [1008] = {.lex_state = 44}, [1009] = {.lex_state = 44}, [1010] = {.lex_state = 44}, @@ -6930,7 +7965,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1033] = {.lex_state = 44}, [1034] = {.lex_state = 44}, [1035] = {.lex_state = 44}, - [1036] = {.lex_state = 41, .external_lex_state = 4}, + [1036] = {.lex_state = 44}, [1037] = {.lex_state = 44}, [1038] = {.lex_state = 44}, [1039] = {.lex_state = 44}, @@ -6957,7 +7992,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1060] = {.lex_state = 44}, [1061] = {.lex_state = 44}, [1062] = {.lex_state = 44}, - [1063] = {.lex_state = 94, .external_lex_state = 5}, + [1063] = {.lex_state = 44}, [1064] = {.lex_state = 44}, [1065] = {.lex_state = 44}, [1066] = {.lex_state = 44}, @@ -6968,15 +8003,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1071] = {.lex_state = 44}, [1072] = {.lex_state = 44}, [1073] = {.lex_state = 44}, - [1074] = {.lex_state = 41, .external_lex_state = 4}, + [1074] = {.lex_state = 44}, [1075] = {.lex_state = 44}, [1076] = {.lex_state = 44}, [1077] = {.lex_state = 44}, [1078] = {.lex_state = 44}, - [1079] = {.lex_state = 94, .external_lex_state = 6}, - [1080] = {.lex_state = 4}, + [1079] = {.lex_state = 44}, + [1080] = {.lex_state = 44}, [1081] = {.lex_state = 44}, - [1082] = {.lex_state = 33, .external_lex_state = 6}, + [1082] = {.lex_state = 44}, [1083] = {.lex_state = 44}, [1084] = {.lex_state = 44}, [1085] = {.lex_state = 44}, @@ -6988,7 +8023,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1091] = {.lex_state = 44}, [1092] = {.lex_state = 44}, [1093] = {.lex_state = 44}, - [1094] = {.lex_state = 33, .external_lex_state = 6}, + [1094] = {.lex_state = 44}, [1095] = {.lex_state = 44}, [1096] = {.lex_state = 44}, [1097] = {.lex_state = 44}, @@ -7005,7 +8040,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1108] = {.lex_state = 44}, [1109] = {.lex_state = 44}, [1110] = {.lex_state = 44}, - [1111] = {.lex_state = 94, .external_lex_state = 5}, + [1111] = {.lex_state = 44}, [1112] = {.lex_state = 44}, [1113] = {.lex_state = 44}, [1114] = {.lex_state = 44}, @@ -7015,7 +8050,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1118] = {.lex_state = 44}, [1119] = {.lex_state = 44}, [1120] = {.lex_state = 44}, - [1121] = {.lex_state = 41, .external_lex_state = 6}, + [1121] = {.lex_state = 44}, [1122] = {.lex_state = 44}, [1123] = {.lex_state = 44}, [1124] = {.lex_state = 44}, @@ -7025,8 +8060,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1128] = {.lex_state = 44}, [1129] = {.lex_state = 44}, [1130] = {.lex_state = 44}, - [1131] = {.lex_state = 41, .external_lex_state = 4}, - [1132] = {.lex_state = 94, .external_lex_state = 5}, + [1131] = {.lex_state = 44}, + [1132] = {.lex_state = 44}, [1133] = {.lex_state = 44}, [1134] = {.lex_state = 44}, [1135] = {.lex_state = 44}, @@ -7039,7 +8074,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1142] = {.lex_state = 44}, [1143] = {.lex_state = 44}, [1144] = {.lex_state = 44}, - [1145] = {.lex_state = 41, .external_lex_state = 4}, + [1145] = {.lex_state = 44}, [1146] = {.lex_state = 44}, [1147] = {.lex_state = 44}, [1148] = {.lex_state = 44}, @@ -7053,121 +8088,121 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1156] = {.lex_state = 44}, [1157] = {.lex_state = 44}, [1158] = {.lex_state = 44}, - [1159] = {.lex_state = 44}, - [1160] = {.lex_state = 44}, - [1161] = {.lex_state = 44}, - [1162] = {.lex_state = 44}, + [1159] = {.lex_state = 4}, + [1160] = {.lex_state = 4, .external_lex_state = 2}, + [1161] = {.lex_state = 4}, + [1162] = {.lex_state = 4, .external_lex_state = 2}, [1163] = {.lex_state = 4, .external_lex_state = 2}, - [1164] = {.lex_state = 44}, - [1165] = {.lex_state = 44}, - [1166] = {.lex_state = 44}, - [1167] = {.lex_state = 44}, - [1168] = {.lex_state = 44}, - [1169] = {.lex_state = 44}, - [1170] = {.lex_state = 44}, - [1171] = {.lex_state = 44}, - [1172] = {.lex_state = 44}, - [1173] = {.lex_state = 44}, - [1174] = {.lex_state = 44}, - [1175] = {.lex_state = 44}, - [1176] = {.lex_state = 44}, - [1177] = {.lex_state = 44}, - [1178] = {.lex_state = 44}, - [1179] = {.lex_state = 44}, - [1180] = {.lex_state = 44}, - [1181] = {.lex_state = 44}, - [1182] = {.lex_state = 44}, - [1183] = {.lex_state = 44}, - [1184] = {.lex_state = 44}, - [1185] = {.lex_state = 44}, - [1186] = {.lex_state = 44}, - [1187] = {.lex_state = 44}, - [1188] = {.lex_state = 44}, - [1189] = {.lex_state = 44}, - [1190] = {.lex_state = 44}, - [1191] = {.lex_state = 44}, - [1192] = {.lex_state = 44}, - [1193] = {.lex_state = 44}, - [1194] = {.lex_state = 44}, - [1195] = {.lex_state = 44}, - [1196] = {.lex_state = 44}, - [1197] = {.lex_state = 44}, - [1198] = {.lex_state = 44}, - [1199] = {.lex_state = 44}, - [1200] = {.lex_state = 44}, - [1201] = {.lex_state = 44}, - [1202] = {.lex_state = 44}, - [1203] = {.lex_state = 44}, - [1204] = {.lex_state = 44}, - [1205] = {.lex_state = 44}, - [1206] = {.lex_state = 44}, - [1207] = {.lex_state = 44}, - [1208] = {.lex_state = 44}, - [1209] = {.lex_state = 44}, - [1210] = {.lex_state = 44}, - [1211] = {.lex_state = 44}, - [1212] = {.lex_state = 44}, - [1213] = {.lex_state = 44}, - [1214] = {.lex_state = 44}, - [1215] = {.lex_state = 44}, - [1216] = {.lex_state = 44}, - [1217] = {.lex_state = 44}, - [1218] = {.lex_state = 41, .external_lex_state = 4}, - [1219] = {.lex_state = 37, .external_lex_state = 4}, - [1220] = {.lex_state = 4, .external_lex_state = 2}, - [1221] = {.lex_state = 4, .external_lex_state = 2}, - [1222] = {.lex_state = 94, .external_lex_state = 6}, - [1223] = {.lex_state = 94, .external_lex_state = 6}, - [1224] = {.lex_state = 4, .external_lex_state = 2}, - [1225] = {.lex_state = 4, .external_lex_state = 2}, - [1226] = {.lex_state = 4, .external_lex_state = 2}, - [1227] = {.lex_state = 41, .external_lex_state = 6}, - [1228] = {.lex_state = 4, .external_lex_state = 2}, - [1229] = {.lex_state = 4, .external_lex_state = 2}, - [1230] = {.lex_state = 4, .external_lex_state = 2}, - [1231] = {.lex_state = 4, .external_lex_state = 2}, - [1232] = {.lex_state = 4, .external_lex_state = 2}, - [1233] = {.lex_state = 4, .external_lex_state = 2}, - [1234] = {.lex_state = 41, .external_lex_state = 6}, - [1235] = {.lex_state = 4, .external_lex_state = 2}, - [1236] = {.lex_state = 4, .external_lex_state = 2}, - [1237] = {.lex_state = 4, .external_lex_state = 2}, - [1238] = {.lex_state = 4, .external_lex_state = 2}, - [1239] = {.lex_state = 4, .external_lex_state = 2}, - [1240] = {.lex_state = 4, .external_lex_state = 2}, - [1241] = {.lex_state = 94, .external_lex_state = 6}, - [1242] = {.lex_state = 4, .external_lex_state = 2}, - [1243] = {.lex_state = 4, .external_lex_state = 2}, - [1244] = {.lex_state = 4, .external_lex_state = 2}, - [1245] = {.lex_state = 4, .external_lex_state = 2}, - [1246] = {.lex_state = 4, .external_lex_state = 2}, - [1247] = {.lex_state = 4, .external_lex_state = 2}, - [1248] = {.lex_state = 4, .external_lex_state = 2}, - [1249] = {.lex_state = 4, .external_lex_state = 2}, - [1250] = {.lex_state = 4, .external_lex_state = 2}, - [1251] = {.lex_state = 4, .external_lex_state = 2}, - [1252] = {.lex_state = 4, .external_lex_state = 2}, - [1253] = {.lex_state = 4, .external_lex_state = 2}, - [1254] = {.lex_state = 4, .external_lex_state = 2}, - [1255] = {.lex_state = 4, .external_lex_state = 2}, - [1256] = {.lex_state = 4, .external_lex_state = 2}, - [1257] = {.lex_state = 4, .external_lex_state = 2}, - [1258] = {.lex_state = 4, .external_lex_state = 2}, - [1259] = {.lex_state = 4, .external_lex_state = 2}, - [1260] = {.lex_state = 4, .external_lex_state = 2}, - [1261] = {.lex_state = 4, .external_lex_state = 2}, - [1262] = {.lex_state = 4, .external_lex_state = 2}, - [1263] = {.lex_state = 4, .external_lex_state = 2}, - [1264] = {.lex_state = 4, .external_lex_state = 2}, - [1265] = {.lex_state = 4, .external_lex_state = 2}, + [1164] = {.lex_state = 4, .external_lex_state = 2}, + [1165] = {.lex_state = 4, .external_lex_state = 2}, + [1166] = {.lex_state = 4, .external_lex_state = 2}, + [1167] = {.lex_state = 4, .external_lex_state = 2}, + [1168] = {.lex_state = 4, .external_lex_state = 2}, + [1169] = {.lex_state = 4, .external_lex_state = 2}, + [1170] = {.lex_state = 4, .external_lex_state = 2}, + [1171] = {.lex_state = 4, .external_lex_state = 2}, + [1172] = {.lex_state = 4}, + [1173] = {.lex_state = 4, .external_lex_state = 2}, + [1174] = {.lex_state = 4, .external_lex_state = 2}, + [1175] = {.lex_state = 4, .external_lex_state = 2}, + [1176] = {.lex_state = 4, .external_lex_state = 2}, + [1177] = {.lex_state = 4, .external_lex_state = 2}, + [1178] = {.lex_state = 4, .external_lex_state = 2}, + [1179] = {.lex_state = 4, .external_lex_state = 2}, + [1180] = {.lex_state = 4, .external_lex_state = 2}, + [1181] = {.lex_state = 4, .external_lex_state = 2}, + [1182] = {.lex_state = 4, .external_lex_state = 2}, + [1183] = {.lex_state = 4, .external_lex_state = 2}, + [1184] = {.lex_state = 4, .external_lex_state = 2}, + [1185] = {.lex_state = 4, .external_lex_state = 2}, + [1186] = {.lex_state = 4, .external_lex_state = 2}, + [1187] = {.lex_state = 4, .external_lex_state = 2}, + [1188] = {.lex_state = 4, .external_lex_state = 2}, + [1189] = {.lex_state = 4, .external_lex_state = 2}, + [1190] = {.lex_state = 4, .external_lex_state = 2}, + [1191] = {.lex_state = 4, .external_lex_state = 2}, + [1192] = {.lex_state = 4, .external_lex_state = 2}, + [1193] = {.lex_state = 4, .external_lex_state = 2}, + [1194] = {.lex_state = 4, .external_lex_state = 2}, + [1195] = {.lex_state = 4, .external_lex_state = 2}, + [1196] = {.lex_state = 4, .external_lex_state = 2}, + [1197] = {.lex_state = 4, .external_lex_state = 2}, + [1198] = {.lex_state = 4, .external_lex_state = 2}, + [1199] = {.lex_state = 4, .external_lex_state = 2}, + [1200] = {.lex_state = 4, .external_lex_state = 2}, + [1201] = {.lex_state = 4, .external_lex_state = 2}, + [1202] = {.lex_state = 4, .external_lex_state = 2}, + [1203] = {.lex_state = 4, .external_lex_state = 2}, + [1204] = {.lex_state = 4, .external_lex_state = 2}, + [1205] = {.lex_state = 4, .external_lex_state = 2}, + [1206] = {.lex_state = 4, .external_lex_state = 2}, + [1207] = {.lex_state = 4, .external_lex_state = 2}, + [1208] = {.lex_state = 4, .external_lex_state = 2}, + [1209] = {.lex_state = 4, .external_lex_state = 2}, + [1210] = {.lex_state = 4, .external_lex_state = 2}, + [1211] = {.lex_state = 4, .external_lex_state = 2}, + [1212] = {.lex_state = 4, .external_lex_state = 2}, + [1213] = {.lex_state = 4, .external_lex_state = 2}, + [1214] = {.lex_state = 4, .external_lex_state = 2}, + [1215] = {.lex_state = 4, .external_lex_state = 2}, + [1216] = {.lex_state = 4, .external_lex_state = 2}, + [1217] = {.lex_state = 4, .external_lex_state = 2}, + [1218] = {.lex_state = 4}, + [1219] = {.lex_state = 4}, + [1220] = {.lex_state = 4}, + [1221] = {.lex_state = 4}, + [1222] = {.lex_state = 4}, + [1223] = {.lex_state = 4}, + [1224] = {.lex_state = 4}, + [1225] = {.lex_state = 4}, + [1226] = {.lex_state = 4}, + [1227] = {.lex_state = 4}, + [1228] = {.lex_state = 4}, + [1229] = {.lex_state = 4}, + [1230] = {.lex_state = 4}, + [1231] = {.lex_state = 4}, + [1232] = {.lex_state = 4}, + [1233] = {.lex_state = 4}, + [1234] = {.lex_state = 4}, + [1235] = {.lex_state = 4}, + [1236] = {.lex_state = 4}, + [1237] = {.lex_state = 4}, + [1238] = {.lex_state = 44}, + [1239] = {.lex_state = 4}, + [1240] = {.lex_state = 4}, + [1241] = {.lex_state = 4}, + [1242] = {.lex_state = 4}, + [1243] = {.lex_state = 4}, + [1244] = {.lex_state = 4}, + [1245] = {.lex_state = 4}, + [1246] = {.lex_state = 4}, + [1247] = {.lex_state = 4}, + [1248] = {.lex_state = 4}, + [1249] = {.lex_state = 4}, + [1250] = {.lex_state = 4}, + [1251] = {.lex_state = 4}, + [1252] = {.lex_state = 4}, + [1253] = {.lex_state = 4}, + [1254] = {.lex_state = 4}, + [1255] = {.lex_state = 4}, + [1256] = {.lex_state = 4}, + [1257] = {.lex_state = 4}, + [1258] = {.lex_state = 4}, + [1259] = {.lex_state = 4}, + [1260] = {.lex_state = 4}, + [1261] = {.lex_state = 4}, + [1262] = {.lex_state = 4}, + [1263] = {.lex_state = 4}, + [1264] = {.lex_state = 4}, + [1265] = {.lex_state = 4}, [1266] = {.lex_state = 4}, - [1267] = {.lex_state = 4, .external_lex_state = 2}, - [1268] = {.lex_state = 4, .external_lex_state = 2}, - [1269] = {.lex_state = 94, .external_lex_state = 6}, - [1270] = {.lex_state = 4, .external_lex_state = 2}, - [1271] = {.lex_state = 4, .external_lex_state = 2}, - [1272] = {.lex_state = 4, .external_lex_state = 2}, - [1273] = {.lex_state = 41, .external_lex_state = 6}, + [1267] = {.lex_state = 4}, + [1268] = {.lex_state = 4}, + [1269] = {.lex_state = 4}, + [1270] = {.lex_state = 4}, + [1271] = {.lex_state = 4}, + [1272] = {.lex_state = 4}, + [1273] = {.lex_state = 4}, [1274] = {.lex_state = 4, .external_lex_state = 2}, [1275] = {.lex_state = 4, .external_lex_state = 2}, [1276] = {.lex_state = 4, .external_lex_state = 2}, @@ -7176,1012 +8211,1279 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1279] = {.lex_state = 4, .external_lex_state = 2}, [1280] = {.lex_state = 4, .external_lex_state = 2}, [1281] = {.lex_state = 4, .external_lex_state = 2}, - [1282] = {.lex_state = 4, .external_lex_state = 2}, - [1283] = {.lex_state = 41, .external_lex_state = 6}, - [1284] = {.lex_state = 41, .external_lex_state = 6}, - [1285] = {.lex_state = 41, .external_lex_state = 6}, - [1286] = {.lex_state = 41, .external_lex_state = 6}, - [1287] = {.lex_state = 41, .external_lex_state = 6}, - [1288] = {.lex_state = 41, .external_lex_state = 6}, - [1289] = {.lex_state = 41, .external_lex_state = 6}, - [1290] = {.lex_state = 41, .external_lex_state = 6}, - [1291] = {.lex_state = 41, .external_lex_state = 6}, - [1292] = {.lex_state = 41, .external_lex_state = 6}, - [1293] = {.lex_state = 41, .external_lex_state = 6}, - [1294] = {.lex_state = 41, .external_lex_state = 6}, - [1295] = {.lex_state = 41, .external_lex_state = 6}, - [1296] = {.lex_state = 92, .external_lex_state = 6}, - [1297] = {.lex_state = 92, .external_lex_state = 6}, - [1298] = {.lex_state = 94, .external_lex_state = 6}, - [1299] = {.lex_state = 4}, - [1300] = {.lex_state = 4}, - [1301] = {.lex_state = 94, .external_lex_state = 6}, - [1302] = {.lex_state = 94, .external_lex_state = 6}, - [1303] = {.lex_state = 94, .external_lex_state = 6}, - [1304] = {.lex_state = 4}, - [1305] = {.lex_state = 4}, - [1306] = {.lex_state = 94, .external_lex_state = 6}, - [1307] = {.lex_state = 94, .external_lex_state = 6}, - [1308] = {.lex_state = 94, .external_lex_state = 6}, - [1309] = {.lex_state = 94, .external_lex_state = 6}, - [1310] = {.lex_state = 94, .external_lex_state = 6}, - [1311] = {.lex_state = 94, .external_lex_state = 6}, - [1312] = {.lex_state = 4}, - [1313] = {.lex_state = 94, .external_lex_state = 6}, - [1314] = {.lex_state = 94, .external_lex_state = 6}, - [1315] = {.lex_state = 94, .external_lex_state = 6}, - [1316] = {.lex_state = 4}, - [1317] = {.lex_state = 4}, - [1318] = {.lex_state = 4}, - [1319] = {.lex_state = 94, .external_lex_state = 6}, - [1320] = {.lex_state = 4}, - [1321] = {.lex_state = 4}, - [1322] = {.lex_state = 4}, - [1323] = {.lex_state = 4}, - [1324] = {.lex_state = 4}, - [1325] = {.lex_state = 4}, - [1326] = {.lex_state = 4}, - [1327] = {.lex_state = 94, .external_lex_state = 6}, - [1328] = {.lex_state = 4}, - [1329] = {.lex_state = 4}, - [1330] = {.lex_state = 4}, - [1331] = {.lex_state = 4}, - [1332] = {.lex_state = 4}, - [1333] = {.lex_state = 4}, - [1334] = {.lex_state = 4}, - [1335] = {.lex_state = 37, .external_lex_state = 2}, - [1336] = {.lex_state = 4}, - [1337] = {.lex_state = 4}, - [1338] = {.lex_state = 94, .external_lex_state = 6}, - [1339] = {.lex_state = 4}, - [1340] = {.lex_state = 4}, - [1341] = {.lex_state = 4}, - [1342] = {.lex_state = 37, .external_lex_state = 6}, - [1343] = {.lex_state = 4}, - [1344] = {.lex_state = 4}, - [1345] = {.lex_state = 4}, - [1346] = {.lex_state = 4}, - [1347] = {.lex_state = 4}, - [1348] = {.lex_state = 37, .external_lex_state = 4}, - [1349] = {.lex_state = 44}, - [1350] = {.lex_state = 4}, - [1351] = {.lex_state = 4}, - [1352] = {.lex_state = 4}, - [1353] = {.lex_state = 4}, - [1354] = {.lex_state = 4}, - [1355] = {.lex_state = 4}, - [1356] = {.lex_state = 4}, - [1357] = {.lex_state = 4}, - [1358] = {.lex_state = 4}, - [1359] = {.lex_state = 4}, - [1360] = {.lex_state = 4}, - [1361] = {.lex_state = 4}, - [1362] = {.lex_state = 4}, - [1363] = {.lex_state = 4}, - [1364] = {.lex_state = 4}, - [1365] = {.lex_state = 4}, - [1366] = {.lex_state = 4}, - [1367] = {.lex_state = 4}, - [1368] = {.lex_state = 4}, - [1369] = {.lex_state = 4}, - [1370] = {.lex_state = 4}, - [1371] = {.lex_state = 4}, - [1372] = {.lex_state = 94, .external_lex_state = 6}, - [1373] = {.lex_state = 4}, - [1374] = {.lex_state = 94, .external_lex_state = 5}, - [1375] = {.lex_state = 94, .external_lex_state = 5}, - [1376] = {.lex_state = 4, .external_lex_state = 2}, - [1377] = {.lex_state = 37, .external_lex_state = 6}, - [1378] = {.lex_state = 37, .external_lex_state = 4}, - [1379] = {.lex_state = 4, .external_lex_state = 2}, - [1380] = {.lex_state = 94, .external_lex_state = 5}, - [1381] = {.lex_state = 4, .external_lex_state = 2}, - [1382] = {.lex_state = 94, .external_lex_state = 5}, - [1383] = {.lex_state = 37, .external_lex_state = 4}, - [1384] = {.lex_state = 37, .external_lex_state = 2}, - [1385] = {.lex_state = 4, .external_lex_state = 2}, - [1386] = {.lex_state = 4, .external_lex_state = 2}, - [1387] = {.lex_state = 94, .external_lex_state = 5}, - [1388] = {.lex_state = 94, .external_lex_state = 5}, - [1389] = {.lex_state = 4, .external_lex_state = 2}, - [1390] = {.lex_state = 37}, - [1391] = {.lex_state = 4, .external_lex_state = 2}, - [1392] = {.lex_state = 4, .external_lex_state = 2}, - [1393] = {.lex_state = 37, .external_lex_state = 4}, - [1394] = {.lex_state = 94, .external_lex_state = 5}, - [1395] = {.lex_state = 94, .external_lex_state = 5}, - [1396] = {.lex_state = 37, .external_lex_state = 6}, - [1397] = {.lex_state = 37, .external_lex_state = 6}, - [1398] = {.lex_state = 37, .external_lex_state = 2}, - [1399] = {.lex_state = 94, .external_lex_state = 5}, - [1400] = {.lex_state = 37, .external_lex_state = 4}, - [1401] = {.lex_state = 94, .external_lex_state = 5}, - [1402] = {.lex_state = 37, .external_lex_state = 4}, - [1403] = {.lex_state = 94, .external_lex_state = 5}, - [1404] = {.lex_state = 37}, - [1405] = {.lex_state = 94, .external_lex_state = 5}, - [1406] = {.lex_state = 37, .external_lex_state = 4}, - [1407] = {.lex_state = 44}, - [1408] = {.lex_state = 37, .external_lex_state = 4}, - [1409] = {.lex_state = 37, .external_lex_state = 2}, - [1410] = {.lex_state = 4}, - [1411] = {.lex_state = 39, .external_lex_state = 4}, - [1412] = {.lex_state = 37, .external_lex_state = 4}, - [1413] = {.lex_state = 37, .external_lex_state = 4}, - [1414] = {.lex_state = 37, .external_lex_state = 4}, - [1415] = {.lex_state = 37, .external_lex_state = 2}, - [1416] = {.lex_state = 37, .external_lex_state = 4}, - [1417] = {.lex_state = 37, .external_lex_state = 4}, - [1418] = {.lex_state = 37, .external_lex_state = 4}, - [1419] = {.lex_state = 37, .external_lex_state = 4}, - [1420] = {.lex_state = 37, .external_lex_state = 4}, - [1421] = {.lex_state = 37, .external_lex_state = 4}, - [1422] = {.lex_state = 37, .external_lex_state = 4}, - [1423] = {.lex_state = 37}, - [1424] = {.lex_state = 37, .external_lex_state = 4}, - [1425] = {.lex_state = 37, .external_lex_state = 6}, - [1426] = {.lex_state = 37, .external_lex_state = 4}, - [1427] = {.lex_state = 37, .external_lex_state = 2}, - [1428] = {.lex_state = 39, .external_lex_state = 4}, - [1429] = {.lex_state = 37, .external_lex_state = 4}, - [1430] = {.lex_state = 37, .external_lex_state = 2}, - [1431] = {.lex_state = 37}, - [1432] = {.lex_state = 37, .external_lex_state = 4}, - [1433] = {.lex_state = 37, .external_lex_state = 4}, - [1434] = {.lex_state = 37, .external_lex_state = 6}, - [1435] = {.lex_state = 37, .external_lex_state = 4}, - [1436] = {.lex_state = 37, .external_lex_state = 4}, - [1437] = {.lex_state = 37, .external_lex_state = 4}, - [1438] = {.lex_state = 37, .external_lex_state = 2}, - [1439] = {.lex_state = 37, .external_lex_state = 6}, - [1440] = {.lex_state = 37, .external_lex_state = 4}, - [1441] = {.lex_state = 37, .external_lex_state = 4}, - [1442] = {.lex_state = 37, .external_lex_state = 2}, - [1443] = {.lex_state = 37, .external_lex_state = 6}, - [1444] = {.lex_state = 37, .external_lex_state = 6}, - [1445] = {.lex_state = 37, .external_lex_state = 4}, - [1446] = {.lex_state = 37, .external_lex_state = 2}, - [1447] = {.lex_state = 37, .external_lex_state = 2}, - [1448] = {.lex_state = 37, .external_lex_state = 4}, - [1449] = {.lex_state = 37, .external_lex_state = 4}, - [1450] = {.lex_state = 37, .external_lex_state = 4}, - [1451] = {.lex_state = 37, .external_lex_state = 4}, - [1452] = {.lex_state = 37, .external_lex_state = 4}, - [1453] = {.lex_state = 37, .external_lex_state = 2}, - [1454] = {.lex_state = 37, .external_lex_state = 4}, - [1455] = {.lex_state = 37}, - [1456] = {.lex_state = 37, .external_lex_state = 6}, - [1457] = {.lex_state = 37, .external_lex_state = 2}, - [1458] = {.lex_state = 37}, - [1459] = {.lex_state = 37, .external_lex_state = 4}, - [1460] = {.lex_state = 37, .external_lex_state = 4}, - [1461] = {.lex_state = 37, .external_lex_state = 4}, - [1462] = {.lex_state = 37, .external_lex_state = 4}, - [1463] = {.lex_state = 37, .external_lex_state = 4}, - [1464] = {.lex_state = 37, .external_lex_state = 4}, - [1465] = {.lex_state = 37, .external_lex_state = 4}, - [1466] = {.lex_state = 37, .external_lex_state = 6}, - [1467] = {.lex_state = 37, .external_lex_state = 6}, - [1468] = {.lex_state = 37, .external_lex_state = 2}, - [1469] = {.lex_state = 37, .external_lex_state = 6}, - [1470] = {.lex_state = 37, .external_lex_state = 6}, - [1471] = {.lex_state = 37, .external_lex_state = 6}, - [1472] = {.lex_state = 37, .external_lex_state = 6}, - [1473] = {.lex_state = 37, .external_lex_state = 6}, - [1474] = {.lex_state = 37}, - [1475] = {.lex_state = 37, .external_lex_state = 6}, - [1476] = {.lex_state = 37, .external_lex_state = 2}, - [1477] = {.lex_state = 37, .external_lex_state = 2}, - [1478] = {.lex_state = 37, .external_lex_state = 2}, - [1479] = {.lex_state = 37, .external_lex_state = 6}, - [1480] = {.lex_state = 37, .external_lex_state = 6}, - [1481] = {.lex_state = 37, .external_lex_state = 2}, - [1482] = {.lex_state = 37, .external_lex_state = 6}, - [1483] = {.lex_state = 37, .external_lex_state = 6}, - [1484] = {.lex_state = 37, .external_lex_state = 2}, - [1485] = {.lex_state = 37, .external_lex_state = 6}, - [1486] = {.lex_state = 37, .external_lex_state = 6}, - [1487] = {.lex_state = 37, .external_lex_state = 6}, - [1488] = {.lex_state = 37, .external_lex_state = 2}, - [1489] = {.lex_state = 37, .external_lex_state = 6}, - [1490] = {.lex_state = 37, .external_lex_state = 2}, - [1491] = {.lex_state = 39, .external_lex_state = 2}, - [1492] = {.lex_state = 39, .external_lex_state = 2}, - [1493] = {.lex_state = 37, .external_lex_state = 4}, - [1494] = {.lex_state = 37, .external_lex_state = 2}, - [1495] = {.lex_state = 39, .external_lex_state = 6}, - [1496] = {.lex_state = 37, .external_lex_state = 2}, - [1497] = {.lex_state = 39, .external_lex_state = 6}, - [1498] = {.lex_state = 37, .external_lex_state = 6}, - [1499] = {.lex_state = 37, .external_lex_state = 6}, - [1500] = {.lex_state = 37}, - [1501] = {.lex_state = 37}, - [1502] = {.lex_state = 37, .external_lex_state = 6}, - [1503] = {.lex_state = 37, .external_lex_state = 4}, - [1504] = {.lex_state = 37, .external_lex_state = 6}, - [1505] = {.lex_state = 37}, - [1506] = {.lex_state = 37, .external_lex_state = 2}, - [1507] = {.lex_state = 44}, - [1508] = {.lex_state = 37, .external_lex_state = 6}, - [1509] = {.lex_state = 37, .external_lex_state = 6}, - [1510] = {.lex_state = 39}, - [1511] = {.lex_state = 37, .external_lex_state = 6}, - [1512] = {.lex_state = 37, .external_lex_state = 6}, - [1513] = {.lex_state = 49, .external_lex_state = 6}, - [1514] = {.lex_state = 37}, - [1515] = {.lex_state = 37, .external_lex_state = 6}, - [1516] = {.lex_state = 37}, - [1517] = {.lex_state = 39}, - [1518] = {.lex_state = 37, .external_lex_state = 6}, - [1519] = {.lex_state = 37, .external_lex_state = 6}, - [1520] = {.lex_state = 37, .external_lex_state = 2}, - [1521] = {.lex_state = 37, .external_lex_state = 6}, - [1522] = {.lex_state = 37, .external_lex_state = 6}, - [1523] = {.lex_state = 37, .external_lex_state = 6}, - [1524] = {.lex_state = 37}, - [1525] = {.lex_state = 37, .external_lex_state = 6}, - [1526] = {.lex_state = 37, .external_lex_state = 6}, - [1527] = {.lex_state = 49, .external_lex_state = 6}, - [1528] = {.lex_state = 37, .external_lex_state = 6}, - [1529] = {.lex_state = 37, .external_lex_state = 2}, - [1530] = {.lex_state = 37}, - [1531] = {.lex_state = 37, .external_lex_state = 4}, - [1532] = {.lex_state = 37, .external_lex_state = 6}, - [1533] = {.lex_state = 37, .external_lex_state = 6}, - [1534] = {.lex_state = 37}, - [1535] = {.lex_state = 37}, - [1536] = {.lex_state = 37}, - [1537] = {.lex_state = 37}, - [1538] = {.lex_state = 44}, - [1539] = {.lex_state = 37}, - [1540] = {.lex_state = 37}, - [1541] = {.lex_state = 37}, - [1542] = {.lex_state = 37}, - [1543] = {.lex_state = 37}, - [1544] = {.lex_state = 37, .external_lex_state = 4}, - [1545] = {.lex_state = 49}, - [1546] = {.lex_state = 37, .external_lex_state = 6}, - [1547] = {.lex_state = 37}, - [1548] = {.lex_state = 37, .external_lex_state = 2}, - [1549] = {.lex_state = 37}, - [1550] = {.lex_state = 39, .external_lex_state = 4}, - [1551] = {.lex_state = 37}, - [1552] = {.lex_state = 96}, - [1553] = {.lex_state = 49}, - [1554] = {.lex_state = 39, .external_lex_state = 4}, - [1555] = {.lex_state = 39, .external_lex_state = 6}, - [1556] = {.lex_state = 37, .external_lex_state = 4}, - [1557] = {.lex_state = 37, .external_lex_state = 2}, - [1558] = {.lex_state = 37, .external_lex_state = 2}, - [1559] = {.lex_state = 37, .external_lex_state = 4}, - [1560] = {.lex_state = 37, .external_lex_state = 2}, - [1561] = {.lex_state = 37, .external_lex_state = 6}, - [1562] = {.lex_state = 37, .external_lex_state = 2}, - [1563] = {.lex_state = 39, .external_lex_state = 6}, - [1564] = {.lex_state = 37, .external_lex_state = 2}, - [1565] = {.lex_state = 37}, - [1566] = {.lex_state = 37, .external_lex_state = 4}, - [1567] = {.lex_state = 37, .external_lex_state = 4}, - [1568] = {.lex_state = 39, .external_lex_state = 2}, - [1569] = {.lex_state = 39, .external_lex_state = 2}, - [1570] = {.lex_state = 49, .external_lex_state = 6}, - [1571] = {.lex_state = 37, .external_lex_state = 4}, - [1572] = {.lex_state = 37, .external_lex_state = 4}, - [1573] = {.lex_state = 37, .external_lex_state = 4}, - [1574] = {.lex_state = 37, .external_lex_state = 4}, - [1575] = {.lex_state = 37, .external_lex_state = 4}, - [1576] = {.lex_state = 37, .external_lex_state = 4}, - [1577] = {.lex_state = 49, .external_lex_state = 6}, - [1578] = {.lex_state = 37, .external_lex_state = 4}, - [1579] = {.lex_state = 49, .external_lex_state = 6}, - [1580] = {.lex_state = 37, .external_lex_state = 2}, - [1581] = {.lex_state = 37, .external_lex_state = 4}, - [1582] = {.lex_state = 37, .external_lex_state = 4}, - [1583] = {.lex_state = 37, .external_lex_state = 4}, - [1584] = {.lex_state = 37, .external_lex_state = 4}, - [1585] = {.lex_state = 37, .external_lex_state = 6}, - [1586] = {.lex_state = 37, .external_lex_state = 6}, - [1587] = {.lex_state = 49}, - [1588] = {.lex_state = 37, .external_lex_state = 6}, - [1589] = {.lex_state = 47, .external_lex_state = 6}, - [1590] = {.lex_state = 39}, - [1591] = {.lex_state = 49, .external_lex_state = 6}, - [1592] = {.lex_state = 37, .external_lex_state = 2}, - [1593] = {.lex_state = 47, .external_lex_state = 6}, - [1594] = {.lex_state = 49, .external_lex_state = 6}, - [1595] = {.lex_state = 49, .external_lex_state = 6}, - [1596] = {.lex_state = 37, .external_lex_state = 6}, - [1597] = {.lex_state = 37, .external_lex_state = 6}, - [1598] = {.lex_state = 37, .external_lex_state = 6}, - [1599] = {.lex_state = 37, .external_lex_state = 6}, - [1600] = {.lex_state = 37, .external_lex_state = 6}, - [1601] = {.lex_state = 49}, - [1602] = {.lex_state = 37, .external_lex_state = 6}, - [1603] = {.lex_state = 37, .external_lex_state = 6}, - [1604] = {.lex_state = 37, .external_lex_state = 6}, - [1605] = {.lex_state = 49}, - [1606] = {.lex_state = 37, .external_lex_state = 6}, - [1607] = {.lex_state = 37, .external_lex_state = 6}, - [1608] = {.lex_state = 37, .external_lex_state = 6}, - [1609] = {.lex_state = 37, .external_lex_state = 6}, + [1282] = {.lex_state = 44}, + [1283] = {.lex_state = 4}, + [1284] = {.lex_state = 44}, + [1285] = {.lex_state = 44}, + [1286] = {.lex_state = 96}, + [1287] = {.lex_state = 96}, + [1288] = {.lex_state = 96}, + [1289] = {.lex_state = 96}, + [1290] = {.lex_state = 96}, + [1291] = {.lex_state = 96}, + [1292] = {.lex_state = 96}, + [1293] = {.lex_state = 96}, + [1294] = {.lex_state = 96}, + [1295] = {.lex_state = 96}, + [1296] = {.lex_state = 96}, + [1297] = {.lex_state = 96}, + [1298] = {.lex_state = 44}, + [1299] = {.lex_state = 41, .external_lex_state = 4}, + [1300] = {.lex_state = 41, .external_lex_state = 4}, + [1301] = {.lex_state = 41, .external_lex_state = 3}, + [1302] = {.lex_state = 41, .external_lex_state = 3}, + [1303] = {.lex_state = 41, .external_lex_state = 5}, + [1304] = {.lex_state = 41, .external_lex_state = 3}, + [1305] = {.lex_state = 96}, + [1306] = {.lex_state = 96}, + [1307] = {.lex_state = 41, .external_lex_state = 6}, + [1308] = {.lex_state = 96}, + [1309] = {.lex_state = 96}, + [1310] = {.lex_state = 96}, + [1311] = {.lex_state = 96}, + [1312] = {.lex_state = 41, .external_lex_state = 6}, + [1313] = {.lex_state = 41, .external_lex_state = 3}, + [1314] = {.lex_state = 96}, + [1315] = {.lex_state = 96}, + [1316] = {.lex_state = 96}, + [1317] = {.lex_state = 41, .external_lex_state = 6}, + [1318] = {.lex_state = 41, .external_lex_state = 5}, + [1319] = {.lex_state = 96}, + [1320] = {.lex_state = 41, .external_lex_state = 3}, + [1321] = {.lex_state = 96}, + [1322] = {.lex_state = 96}, + [1323] = {.lex_state = 41, .external_lex_state = 3}, + [1324] = {.lex_state = 96}, + [1325] = {.lex_state = 41, .external_lex_state = 3}, + [1326] = {.lex_state = 96}, + [1327] = {.lex_state = 96}, + [1328] = {.lex_state = 96}, + [1329] = {.lex_state = 96}, + [1330] = {.lex_state = 96}, + [1331] = {.lex_state = 96}, + [1332] = {.lex_state = 41, .external_lex_state = 3}, + [1333] = {.lex_state = 96}, + [1334] = {.lex_state = 41, .external_lex_state = 4}, + [1335] = {.lex_state = 96}, + [1336] = {.lex_state = 96}, + [1337] = {.lex_state = 41, .external_lex_state = 3}, + [1338] = {.lex_state = 41, .external_lex_state = 4}, + [1339] = {.lex_state = 96}, + [1340] = {.lex_state = 96}, + [1341] = {.lex_state = 41, .external_lex_state = 4}, + [1342] = {.lex_state = 41, .external_lex_state = 6}, + [1343] = {.lex_state = 41, .external_lex_state = 6}, + [1344] = {.lex_state = 41, .external_lex_state = 6}, + [1345] = {.lex_state = 41, .external_lex_state = 4}, + [1346] = {.lex_state = 41, .external_lex_state = 3}, + [1347] = {.lex_state = 41, .external_lex_state = 3}, + [1348] = {.lex_state = 41, .external_lex_state = 6}, + [1349] = {.lex_state = 41, .external_lex_state = 4}, + [1350] = {.lex_state = 41, .external_lex_state = 6}, + [1351] = {.lex_state = 41, .external_lex_state = 5}, + [1352] = {.lex_state = 41, .external_lex_state = 4}, + [1353] = {.lex_state = 41, .external_lex_state = 4}, + [1354] = {.lex_state = 41, .external_lex_state = 4}, + [1355] = {.lex_state = 41, .external_lex_state = 4}, + [1356] = {.lex_state = 41, .external_lex_state = 6}, + [1357] = {.lex_state = 41, .external_lex_state = 5}, + [1358] = {.lex_state = 41, .external_lex_state = 4}, + [1359] = {.lex_state = 41, .external_lex_state = 4}, + [1360] = {.lex_state = 41, .external_lex_state = 4}, + [1361] = {.lex_state = 41, .external_lex_state = 4}, + [1362] = {.lex_state = 41, .external_lex_state = 5}, + [1363] = {.lex_state = 41, .external_lex_state = 4}, + [1364] = {.lex_state = 41, .external_lex_state = 6}, + [1365] = {.lex_state = 41, .external_lex_state = 4}, + [1366] = {.lex_state = 41, .external_lex_state = 5}, + [1367] = {.lex_state = 41, .external_lex_state = 4}, + [1368] = {.lex_state = 41, .external_lex_state = 5}, + [1369] = {.lex_state = 33, .external_lex_state = 4}, + [1370] = {.lex_state = 41, .external_lex_state = 5}, + [1371] = {.lex_state = 33, .external_lex_state = 4}, + [1372] = {.lex_state = 41, .external_lex_state = 4}, + [1373] = {.lex_state = 41, .external_lex_state = 4}, + [1374] = {.lex_state = 41, .external_lex_state = 4}, + [1375] = {.lex_state = 41, .external_lex_state = 6}, + [1376] = {.lex_state = 41, .external_lex_state = 4}, + [1377] = {.lex_state = 41, .external_lex_state = 4}, + [1378] = {.lex_state = 41, .external_lex_state = 4}, + [1379] = {.lex_state = 41, .external_lex_state = 4}, + [1380] = {.lex_state = 41, .external_lex_state = 4}, + [1381] = {.lex_state = 41, .external_lex_state = 4}, + [1382] = {.lex_state = 41, .external_lex_state = 5}, + [1383] = {.lex_state = 41, .external_lex_state = 4}, + [1384] = {.lex_state = 41, .external_lex_state = 4}, + [1385] = {.lex_state = 41, .external_lex_state = 4}, + [1386] = {.lex_state = 41, .external_lex_state = 4}, + [1387] = {.lex_state = 41, .external_lex_state = 4}, + [1388] = {.lex_state = 41, .external_lex_state = 4}, + [1389] = {.lex_state = 41, .external_lex_state = 4}, + [1390] = {.lex_state = 41, .external_lex_state = 4}, + [1391] = {.lex_state = 41, .external_lex_state = 5}, + [1392] = {.lex_state = 41, .external_lex_state = 4}, + [1393] = {.lex_state = 41, .external_lex_state = 4}, + [1394] = {.lex_state = 41, .external_lex_state = 4}, + [1395] = {.lex_state = 41, .external_lex_state = 5}, + [1396] = {.lex_state = 41, .external_lex_state = 4}, + [1397] = {.lex_state = 41, .external_lex_state = 4}, + [1398] = {.lex_state = 41, .external_lex_state = 4}, + [1399] = {.lex_state = 41, .external_lex_state = 5}, + [1400] = {.lex_state = 41, .external_lex_state = 5}, + [1401] = {.lex_state = 41, .external_lex_state = 4}, + [1402] = {.lex_state = 41, .external_lex_state = 5}, + [1403] = {.lex_state = 41, .external_lex_state = 4}, + [1404] = {.lex_state = 41, .external_lex_state = 5}, + [1405] = {.lex_state = 41, .external_lex_state = 5}, + [1406] = {.lex_state = 41, .external_lex_state = 4}, + [1407] = {.lex_state = 41, .external_lex_state = 5}, + [1408] = {.lex_state = 41, .external_lex_state = 4}, + [1409] = {.lex_state = 41, .external_lex_state = 5}, + [1410] = {.lex_state = 41, .external_lex_state = 5}, + [1411] = {.lex_state = 41, .external_lex_state = 5}, + [1412] = {.lex_state = 41, .external_lex_state = 5}, + [1413] = {.lex_state = 41, .external_lex_state = 5}, + [1414] = {.lex_state = 41, .external_lex_state = 5}, + [1415] = {.lex_state = 41, .external_lex_state = 3}, + [1416] = {.lex_state = 41, .external_lex_state = 5}, + [1417] = {.lex_state = 41, .external_lex_state = 5}, + [1418] = {.lex_state = 41, .external_lex_state = 5}, + [1419] = {.lex_state = 41, .external_lex_state = 4}, + [1420] = {.lex_state = 41, .external_lex_state = 4}, + [1421] = {.lex_state = 41, .external_lex_state = 5}, + [1422] = {.lex_state = 41, .external_lex_state = 4}, + [1423] = {.lex_state = 41, .external_lex_state = 5}, + [1424] = {.lex_state = 41, .external_lex_state = 5}, + [1425] = {.lex_state = 41, .external_lex_state = 5}, + [1426] = {.lex_state = 41, .external_lex_state = 4}, + [1427] = {.lex_state = 41, .external_lex_state = 5}, + [1428] = {.lex_state = 41, .external_lex_state = 5}, + [1429] = {.lex_state = 41, .external_lex_state = 5}, + [1430] = {.lex_state = 41, .external_lex_state = 4}, + [1431] = {.lex_state = 41, .external_lex_state = 5}, + [1432] = {.lex_state = 41, .external_lex_state = 5}, + [1433] = {.lex_state = 41, .external_lex_state = 5}, + [1434] = {.lex_state = 33, .external_lex_state = 5}, + [1435] = {.lex_state = 33, .external_lex_state = 5}, + [1436] = {.lex_state = 41, .external_lex_state = 5}, + [1437] = {.lex_state = 41, .external_lex_state = 4}, + [1438] = {.lex_state = 41, .external_lex_state = 3}, + [1439] = {.lex_state = 41, .external_lex_state = 4}, + [1440] = {.lex_state = 41, .external_lex_state = 5}, + [1441] = {.lex_state = 41, .external_lex_state = 4}, + [1442] = {.lex_state = 41, .external_lex_state = 4}, + [1443] = {.lex_state = 41, .external_lex_state = 4}, + [1444] = {.lex_state = 41, .external_lex_state = 5}, + [1445] = {.lex_state = 41, .external_lex_state = 5}, + [1446] = {.lex_state = 41, .external_lex_state = 4}, + [1447] = {.lex_state = 41, .external_lex_state = 4}, + [1448] = {.lex_state = 41, .external_lex_state = 5}, + [1449] = {.lex_state = 41, .external_lex_state = 5}, + [1450] = {.lex_state = 41, .external_lex_state = 5}, + [1451] = {.lex_state = 41, .external_lex_state = 5}, + [1452] = {.lex_state = 41, .external_lex_state = 5}, + [1453] = {.lex_state = 41, .external_lex_state = 5}, + [1454] = {.lex_state = 41, .external_lex_state = 5}, + [1455] = {.lex_state = 94, .external_lex_state = 5}, + [1456] = {.lex_state = 41, .external_lex_state = 5}, + [1457] = {.lex_state = 41, .external_lex_state = 5}, + [1458] = {.lex_state = 94, .external_lex_state = 5}, + [1459] = {.lex_state = 41, .external_lex_state = 6}, + [1460] = {.lex_state = 41, .external_lex_state = 5}, + [1461] = {.lex_state = 41, .external_lex_state = 3}, + [1462] = {.lex_state = 41, .external_lex_state = 6}, + [1463] = {.lex_state = 41, .external_lex_state = 5}, + [1464] = {.lex_state = 41, .external_lex_state = 5}, + [1465] = {.lex_state = 41, .external_lex_state = 5}, + [1466] = {.lex_state = 41, .external_lex_state = 3}, + [1467] = {.lex_state = 41, .external_lex_state = 5}, + [1468] = {.lex_state = 41, .external_lex_state = 5}, + [1469] = {.lex_state = 41, .external_lex_state = 5}, + [1470] = {.lex_state = 41, .external_lex_state = 5}, + [1471] = {.lex_state = 41, .external_lex_state = 4}, + [1472] = {.lex_state = 41, .external_lex_state = 4}, + [1473] = {.lex_state = 94, .external_lex_state = 6}, + [1474] = {.lex_state = 41, .external_lex_state = 4}, + [1475] = {.lex_state = 41, .external_lex_state = 6}, + [1476] = {.lex_state = 41, .external_lex_state = 5}, + [1477] = {.lex_state = 94, .external_lex_state = 6}, + [1478] = {.lex_state = 94, .external_lex_state = 6}, + [1479] = {.lex_state = 41, .external_lex_state = 4}, + [1480] = {.lex_state = 41, .external_lex_state = 6}, + [1481] = {.lex_state = 33, .external_lex_state = 4}, + [1482] = {.lex_state = 94, .external_lex_state = 6}, + [1483] = {.lex_state = 33, .external_lex_state = 4}, + [1484] = {.lex_state = 94, .external_lex_state = 6}, + [1485] = {.lex_state = 41, .external_lex_state = 4}, + [1486] = {.lex_state = 41, .external_lex_state = 4}, + [1487] = {.lex_state = 41, .external_lex_state = 4}, + [1488] = {.lex_state = 41, .external_lex_state = 5}, + [1489] = {.lex_state = 94, .external_lex_state = 6}, + [1490] = {.lex_state = 94, .external_lex_state = 5}, + [1491] = {.lex_state = 94, .external_lex_state = 6}, + [1492] = {.lex_state = 94, .external_lex_state = 6}, + [1493] = {.lex_state = 41, .external_lex_state = 4}, + [1494] = {.lex_state = 94, .external_lex_state = 5}, + [1495] = {.lex_state = 94, .external_lex_state = 5}, + [1496] = {.lex_state = 41, .external_lex_state = 4}, + [1497] = {.lex_state = 94, .external_lex_state = 6}, + [1498] = {.lex_state = 33, .external_lex_state = 5}, + [1499] = {.lex_state = 41, .external_lex_state = 4}, + [1500] = {.lex_state = 41, .external_lex_state = 4}, + [1501] = {.lex_state = 94, .external_lex_state = 6}, + [1502] = {.lex_state = 41, .external_lex_state = 5}, + [1503] = {.lex_state = 41, .external_lex_state = 4}, + [1504] = {.lex_state = 41, .external_lex_state = 4}, + [1505] = {.lex_state = 41, .external_lex_state = 4}, + [1506] = {.lex_state = 41, .external_lex_state = 4}, + [1507] = {.lex_state = 33, .external_lex_state = 5}, + [1508] = {.lex_state = 41, .external_lex_state = 4}, + [1509] = {.lex_state = 94, .external_lex_state = 6}, + [1510] = {.lex_state = 41, .external_lex_state = 4}, + [1511] = {.lex_state = 41, .external_lex_state = 5}, + [1512] = {.lex_state = 41, .external_lex_state = 4}, + [1513] = {.lex_state = 41, .external_lex_state = 4}, + [1514] = {.lex_state = 41, .external_lex_state = 4}, + [1515] = {.lex_state = 37, .external_lex_state = 4}, + [1516] = {.lex_state = 41, .external_lex_state = 5}, + [1517] = {.lex_state = 94, .external_lex_state = 5}, + [1518] = {.lex_state = 94, .external_lex_state = 5}, + [1519] = {.lex_state = 94, .external_lex_state = 5}, + [1520] = {.lex_state = 94, .external_lex_state = 5}, + [1521] = {.lex_state = 92, .external_lex_state = 5}, + [1522] = {.lex_state = 94, .external_lex_state = 5}, + [1523] = {.lex_state = 92, .external_lex_state = 5}, + [1524] = {.lex_state = 94, .external_lex_state = 5}, + [1525] = {.lex_state = 94, .external_lex_state = 5}, + [1526] = {.lex_state = 41, .external_lex_state = 5}, + [1527] = {.lex_state = 94, .external_lex_state = 5}, + [1528] = {.lex_state = 41, .external_lex_state = 5}, + [1529] = {.lex_state = 41, .external_lex_state = 5}, + [1530] = {.lex_state = 41, .external_lex_state = 5}, + [1531] = {.lex_state = 41, .external_lex_state = 5}, + [1532] = {.lex_state = 41, .external_lex_state = 5}, + [1533] = {.lex_state = 41, .external_lex_state = 5}, + [1534] = {.lex_state = 41, .external_lex_state = 5}, + [1535] = {.lex_state = 41, .external_lex_state = 5}, + [1536] = {.lex_state = 41, .external_lex_state = 5}, + [1537] = {.lex_state = 94, .external_lex_state = 5}, + [1538] = {.lex_state = 41, .external_lex_state = 5}, + [1539] = {.lex_state = 41, .external_lex_state = 5}, + [1540] = {.lex_state = 41, .external_lex_state = 5}, + [1541] = {.lex_state = 41, .external_lex_state = 5}, + [1542] = {.lex_state = 94, .external_lex_state = 5}, + [1543] = {.lex_state = 41, .external_lex_state = 5}, + [1544] = {.lex_state = 94, .external_lex_state = 5}, + [1545] = {.lex_state = 37, .external_lex_state = 4}, + [1546] = {.lex_state = 94, .external_lex_state = 5}, + [1547] = {.lex_state = 94, .external_lex_state = 5}, + [1548] = {.lex_state = 94, .external_lex_state = 5}, + [1549] = {.lex_state = 94, .external_lex_state = 5}, + [1550] = {.lex_state = 37, .external_lex_state = 5}, + [1551] = {.lex_state = 94, .external_lex_state = 5}, + [1552] = {.lex_state = 94, .external_lex_state = 5}, + [1553] = {.lex_state = 94, .external_lex_state = 5}, + [1554] = {.lex_state = 94, .external_lex_state = 5}, + [1555] = {.lex_state = 94, .external_lex_state = 5}, + [1556] = {.lex_state = 94, .external_lex_state = 5}, + [1557] = {.lex_state = 94, .external_lex_state = 5}, + [1558] = {.lex_state = 94, .external_lex_state = 5}, + [1559] = {.lex_state = 94, .external_lex_state = 5}, + [1560] = {.lex_state = 94, .external_lex_state = 5}, + [1561] = {.lex_state = 94, .external_lex_state = 5}, + [1562] = {.lex_state = 94, .external_lex_state = 5}, + [1563] = {.lex_state = 94, .external_lex_state = 5}, + [1564] = {.lex_state = 94, .external_lex_state = 5}, + [1565] = {.lex_state = 94, .external_lex_state = 5}, + [1566] = {.lex_state = 94, .external_lex_state = 5}, + [1567] = {.lex_state = 94, .external_lex_state = 5}, + [1568] = {.lex_state = 94, .external_lex_state = 5}, + [1569] = {.lex_state = 94, .external_lex_state = 5}, + [1570] = {.lex_state = 94, .external_lex_state = 5}, + [1571] = {.lex_state = 94, .external_lex_state = 5}, + [1572] = {.lex_state = 94, .external_lex_state = 5}, + [1573] = {.lex_state = 94, .external_lex_state = 5}, + [1574] = {.lex_state = 94, .external_lex_state = 5}, + [1575] = {.lex_state = 94, .external_lex_state = 5}, + [1576] = {.lex_state = 94, .external_lex_state = 5}, + [1577] = {.lex_state = 94, .external_lex_state = 5}, + [1578] = {.lex_state = 37, .external_lex_state = 2}, + [1579] = {.lex_state = 94, .external_lex_state = 5}, + [1580] = {.lex_state = 94, .external_lex_state = 5}, + [1581] = {.lex_state = 94, .external_lex_state = 5}, + [1582] = {.lex_state = 94, .external_lex_state = 5}, + [1583] = {.lex_state = 94, .external_lex_state = 5}, + [1584] = {.lex_state = 94, .external_lex_state = 5}, + [1585] = {.lex_state = 94, .external_lex_state = 5}, + [1586] = {.lex_state = 94, .external_lex_state = 5}, + [1587] = {.lex_state = 94, .external_lex_state = 5}, + [1588] = {.lex_state = 94, .external_lex_state = 6}, + [1589] = {.lex_state = 94, .external_lex_state = 6}, + [1590] = {.lex_state = 94, .external_lex_state = 6}, + [1591] = {.lex_state = 37, .external_lex_state = 2}, + [1592] = {.lex_state = 37, .external_lex_state = 4}, + [1593] = {.lex_state = 94, .external_lex_state = 6}, + [1594] = {.lex_state = 37}, + [1595] = {.lex_state = 37, .external_lex_state = 4}, + [1596] = {.lex_state = 94, .external_lex_state = 6}, + [1597] = {.lex_state = 94, .external_lex_state = 6}, + [1598] = {.lex_state = 37, .external_lex_state = 5}, + [1599] = {.lex_state = 94, .external_lex_state = 6}, + [1600] = {.lex_state = 94, .external_lex_state = 6}, + [1601] = {.lex_state = 37, .external_lex_state = 4}, + [1602] = {.lex_state = 37, .external_lex_state = 4}, + [1603] = {.lex_state = 37, .external_lex_state = 4}, + [1604] = {.lex_state = 94, .external_lex_state = 6}, + [1605] = {.lex_state = 37, .external_lex_state = 5}, + [1606] = {.lex_state = 94, .external_lex_state = 6}, + [1607] = {.lex_state = 94, .external_lex_state = 6}, + [1608] = {.lex_state = 37, .external_lex_state = 5}, + [1609] = {.lex_state = 37, .external_lex_state = 2}, [1610] = {.lex_state = 37}, - [1611] = {.lex_state = 37, .external_lex_state = 2}, - [1612] = {.lex_state = 37, .external_lex_state = 2}, - [1613] = {.lex_state = 37}, - [1614] = {.lex_state = 37}, - [1615] = {.lex_state = 37}, - [1616] = {.lex_state = 39}, - [1617] = {.lex_state = 49, .external_lex_state = 6}, - [1618] = {.lex_state = 49, .external_lex_state = 6}, - [1619] = {.lex_state = 37}, - [1620] = {.lex_state = 37}, - [1621] = {.lex_state = 49, .external_lex_state = 6}, - [1622] = {.lex_state = 49, .external_lex_state = 6}, - [1623] = {.lex_state = 96}, - [1624] = {.lex_state = 49, .external_lex_state = 6}, - [1625] = {.lex_state = 49, .external_lex_state = 6}, - [1626] = {.lex_state = 49}, - [1627] = {.lex_state = 37}, - [1628] = {.lex_state = 49, .external_lex_state = 6}, - [1629] = {.lex_state = 49, .external_lex_state = 6}, - [1630] = {.lex_state = 49, .external_lex_state = 6}, - [1631] = {.lex_state = 96}, - [1632] = {.lex_state = 96}, - [1633] = {.lex_state = 49, .external_lex_state = 6}, - [1634] = {.lex_state = 49, .external_lex_state = 6}, - [1635] = {.lex_state = 49, .external_lex_state = 6}, - [1636] = {.lex_state = 47}, - [1637] = {.lex_state = 49, .external_lex_state = 6}, - [1638] = {.lex_state = 49}, - [1639] = {.lex_state = 49}, - [1640] = {.lex_state = 49}, - [1641] = {.lex_state = 49, .external_lex_state = 6}, - [1642] = {.lex_state = 49, .external_lex_state = 6}, - [1643] = {.lex_state = 49, .external_lex_state = 6}, - [1644] = {.lex_state = 49, .external_lex_state = 6}, - [1645] = {.lex_state = 37}, - [1646] = {.lex_state = 49, .external_lex_state = 6}, - [1647] = {.lex_state = 49, .external_lex_state = 6}, - [1648] = {.lex_state = 49, .external_lex_state = 6}, - [1649] = {.lex_state = 49, .external_lex_state = 6}, - [1650] = {.lex_state = 49, .external_lex_state = 6}, - [1651] = {.lex_state = 49, .external_lex_state = 6}, - [1652] = {.lex_state = 49, .external_lex_state = 6}, - [1653] = {.lex_state = 49, .external_lex_state = 6}, - [1654] = {.lex_state = 49, .external_lex_state = 6}, - [1655] = {.lex_state = 49, .external_lex_state = 6}, - [1656] = {.lex_state = 49, .external_lex_state = 6}, - [1657] = {.lex_state = 96}, + [1611] = {.lex_state = 37, .external_lex_state = 4}, + [1612] = {.lex_state = 94, .external_lex_state = 6}, + [1613] = {.lex_state = 37, .external_lex_state = 2}, + [1614] = {.lex_state = 37, .external_lex_state = 4}, + [1615] = {.lex_state = 37, .external_lex_state = 4}, + [1616] = {.lex_state = 37, .external_lex_state = 4}, + [1617] = {.lex_state = 37}, + [1618] = {.lex_state = 37, .external_lex_state = 4}, + [1619] = {.lex_state = 37, .external_lex_state = 4}, + [1620] = {.lex_state = 37, .external_lex_state = 4}, + [1621] = {.lex_state = 37, .external_lex_state = 4}, + [1622] = {.lex_state = 37}, + [1623] = {.lex_state = 37, .external_lex_state = 4}, + [1624] = {.lex_state = 37, .external_lex_state = 5}, + [1625] = {.lex_state = 39, .external_lex_state = 4}, + [1626] = {.lex_state = 39, .external_lex_state = 4}, + [1627] = {.lex_state = 37, .external_lex_state = 2}, + [1628] = {.lex_state = 37, .external_lex_state = 5}, + [1629] = {.lex_state = 37, .external_lex_state = 4}, + [1630] = {.lex_state = 37, .external_lex_state = 2}, + [1631] = {.lex_state = 37, .external_lex_state = 4}, + [1632] = {.lex_state = 37, .external_lex_state = 4}, + [1633] = {.lex_state = 37, .external_lex_state = 4}, + [1634] = {.lex_state = 37, .external_lex_state = 4}, + [1635] = {.lex_state = 37, .external_lex_state = 4}, + [1636] = {.lex_state = 37, .external_lex_state = 4}, + [1637] = {.lex_state = 37, .external_lex_state = 4}, + [1638] = {.lex_state = 37, .external_lex_state = 4}, + [1639] = {.lex_state = 37, .external_lex_state = 5}, + [1640] = {.lex_state = 37, .external_lex_state = 4}, + [1641] = {.lex_state = 37, .external_lex_state = 5}, + [1642] = {.lex_state = 37, .external_lex_state = 2}, + [1643] = {.lex_state = 37, .external_lex_state = 2}, + [1644] = {.lex_state = 37, .external_lex_state = 4}, + [1645] = {.lex_state = 37, .external_lex_state = 4}, + [1646] = {.lex_state = 37, .external_lex_state = 2}, + [1647] = {.lex_state = 37, .external_lex_state = 4}, + [1648] = {.lex_state = 37, .external_lex_state = 4}, + [1649] = {.lex_state = 37, .external_lex_state = 4}, + [1650] = {.lex_state = 37, .external_lex_state = 4}, + [1651] = {.lex_state = 37, .external_lex_state = 4}, + [1652] = {.lex_state = 37, .external_lex_state = 5}, + [1653] = {.lex_state = 37, .external_lex_state = 2}, + [1654] = {.lex_state = 37, .external_lex_state = 4}, + [1655] = {.lex_state = 37, .external_lex_state = 5}, + [1656] = {.lex_state = 37, .external_lex_state = 5}, + [1657] = {.lex_state = 37, .external_lex_state = 5}, [1658] = {.lex_state = 37}, - [1659] = {.lex_state = 49, .external_lex_state = 6}, - [1660] = {.lex_state = 49, .external_lex_state = 6}, - [1661] = {.lex_state = 49, .external_lex_state = 6}, - [1662] = {.lex_state = 49, .external_lex_state = 6}, - [1663] = {.lex_state = 96}, - [1664] = {.lex_state = 49, .external_lex_state = 6}, - [1665] = {.lex_state = 49, .external_lex_state = 6}, - [1666] = {.lex_state = 49}, - [1667] = {.lex_state = 49, .external_lex_state = 6}, - [1668] = {.lex_state = 47}, - [1669] = {.lex_state = 49, .external_lex_state = 6}, - [1670] = {.lex_state = 96}, - [1671] = {.lex_state = 49}, - [1672] = {.lex_state = 49}, - [1673] = {.lex_state = 96}, - [1674] = {.lex_state = 49}, - [1675] = {.lex_state = 49}, - [1676] = {.lex_state = 49}, - [1677] = {.lex_state = 49}, - [1678] = {.lex_state = 49}, - [1679] = {.lex_state = 49}, - [1680] = {.lex_state = 49}, - [1681] = {.lex_state = 49}, - [1682] = {.lex_state = 49}, - [1683] = {.lex_state = 49}, - [1684] = {.lex_state = 96}, - [1685] = {.lex_state = 96}, + [1659] = {.lex_state = 37}, + [1660] = {.lex_state = 37, .external_lex_state = 5}, + [1661] = {.lex_state = 37, .external_lex_state = 5}, + [1662] = {.lex_state = 37, .external_lex_state = 5}, + [1663] = {.lex_state = 37, .external_lex_state = 5}, + [1664] = {.lex_state = 37, .external_lex_state = 5}, + [1665] = {.lex_state = 37}, + [1666] = {.lex_state = 37, .external_lex_state = 5}, + [1667] = {.lex_state = 37, .external_lex_state = 5}, + [1668] = {.lex_state = 37, .external_lex_state = 2}, + [1669] = {.lex_state = 37, .external_lex_state = 5}, + [1670] = {.lex_state = 37, .external_lex_state = 5}, + [1671] = {.lex_state = 37, .external_lex_state = 5}, + [1672] = {.lex_state = 37, .external_lex_state = 5}, + [1673] = {.lex_state = 37, .external_lex_state = 5}, + [1674] = {.lex_state = 37, .external_lex_state = 5}, + [1675] = {.lex_state = 37, .external_lex_state = 5}, + [1676] = {.lex_state = 37, .external_lex_state = 5}, + [1677] = {.lex_state = 37, .external_lex_state = 4}, + [1678] = {.lex_state = 37, .external_lex_state = 5}, + [1679] = {.lex_state = 37, .external_lex_state = 4}, + [1680] = {.lex_state = 37, .external_lex_state = 5}, + [1681] = {.lex_state = 37, .external_lex_state = 5}, + [1682] = {.lex_state = 37}, + [1683] = {.lex_state = 37}, + [1684] = {.lex_state = 37, .external_lex_state = 5}, + [1685] = {.lex_state = 37, .external_lex_state = 2}, [1686] = {.lex_state = 37, .external_lex_state = 2}, [1687] = {.lex_state = 37, .external_lex_state = 2}, [1688] = {.lex_state = 37, .external_lex_state = 2}, - [1689] = {.lex_state = 49}, - [1690] = {.lex_state = 37, .external_lex_state = 2}, - [1691] = {.lex_state = 96}, + [1689] = {.lex_state = 37, .external_lex_state = 4}, + [1690] = {.lex_state = 37, .external_lex_state = 4}, + [1691] = {.lex_state = 37, .external_lex_state = 2}, [1692] = {.lex_state = 37, .external_lex_state = 2}, - [1693] = {.lex_state = 96}, - [1694] = {.lex_state = 37}, - [1695] = {.lex_state = 37}, - [1696] = {.lex_state = 37}, - [1697] = {.lex_state = 37}, - [1698] = {.lex_state = 37}, - [1699] = {.lex_state = 49}, - [1700] = {.lex_state = 49}, - [1701] = {.lex_state = 49}, - [1702] = {.lex_state = 49}, - [1703] = {.lex_state = 49}, - [1704] = {.lex_state = 49}, - [1705] = {.lex_state = 49}, - [1706] = {.lex_state = 49}, - [1707] = {.lex_state = 49}, - [1708] = {.lex_state = 49}, - [1709] = {.lex_state = 49}, - [1710] = {.lex_state = 49}, - [1711] = {.lex_state = 49}, - [1712] = {.lex_state = 49}, - [1713] = {.lex_state = 49}, - [1714] = {.lex_state = 49}, - [1715] = {.lex_state = 49}, - [1716] = {.lex_state = 49}, - [1717] = {.lex_state = 49}, - [1718] = {.lex_state = 49}, - [1719] = {.lex_state = 49}, - [1720] = {.lex_state = 49}, - [1721] = {.lex_state = 49}, - [1722] = {.lex_state = 49}, - [1723] = {.lex_state = 49}, - [1724] = {.lex_state = 49}, - [1725] = {.lex_state = 49}, - [1726] = {.lex_state = 49}, - [1727] = {.lex_state = 49}, - [1728] = {.lex_state = 49}, - [1729] = {.lex_state = 49}, - [1730] = {.lex_state = 49}, - [1731] = {.lex_state = 49}, - [1732] = {.lex_state = 49}, - [1733] = {.lex_state = 49}, - [1734] = {.lex_state = 49}, - [1735] = {.lex_state = 49}, - [1736] = {.lex_state = 49}, - [1737] = {.lex_state = 49}, - [1738] = {.lex_state = 49}, - [1739] = {.lex_state = 49}, - [1740] = {.lex_state = 49}, - [1741] = {.lex_state = 49}, - [1742] = {.lex_state = 49}, - [1743] = {.lex_state = 49}, - [1744] = {.lex_state = 49}, - [1745] = {.lex_state = 49}, - [1746] = {.lex_state = 49}, - [1747] = {.lex_state = 49}, - [1748] = {.lex_state = 49}, - [1749] = {.lex_state = 49}, - [1750] = {.lex_state = 49}, - [1751] = {.lex_state = 49}, - [1752] = {.lex_state = 49}, - [1753] = {.lex_state = 49}, - [1754] = {.lex_state = 49}, - [1755] = {.lex_state = 49}, - [1756] = {.lex_state = 49}, - [1757] = {.lex_state = 49}, - [1758] = {.lex_state = 49}, - [1759] = {.lex_state = 49}, - [1760] = {.lex_state = 49}, + [1693] = {.lex_state = 37, .external_lex_state = 2}, + [1694] = {.lex_state = 37, .external_lex_state = 2}, + [1695] = {.lex_state = 37, .external_lex_state = 2}, + [1696] = {.lex_state = 37, .external_lex_state = 4}, + [1697] = {.lex_state = 37, .external_lex_state = 5}, + [1698] = {.lex_state = 39, .external_lex_state = 2}, + [1699] = {.lex_state = 39, .external_lex_state = 2}, + [1700] = {.lex_state = 37, .external_lex_state = 4}, + [1701] = {.lex_state = 39, .external_lex_state = 5}, + [1702] = {.lex_state = 39, .external_lex_state = 5}, + [1703] = {.lex_state = 37, .external_lex_state = 4}, + [1704] = {.lex_state = 37, .external_lex_state = 4}, + [1705] = {.lex_state = 37, .external_lex_state = 4}, + [1706] = {.lex_state = 37, .external_lex_state = 5}, + [1707] = {.lex_state = 37, .external_lex_state = 2}, + [1708] = {.lex_state = 37, .external_lex_state = 2}, + [1709] = {.lex_state = 37, .external_lex_state = 2}, + [1710] = {.lex_state = 37, .external_lex_state = 2}, + [1711] = {.lex_state = 37, .external_lex_state = 2}, + [1712] = {.lex_state = 37, .external_lex_state = 4}, + [1713] = {.lex_state = 37, .external_lex_state = 4}, + [1714] = {.lex_state = 37, .external_lex_state = 4}, + [1715] = {.lex_state = 37, .external_lex_state = 2}, + [1716] = {.lex_state = 37, .external_lex_state = 4}, + [1717] = {.lex_state = 37, .external_lex_state = 4}, + [1718] = {.lex_state = 37}, + [1719] = {.lex_state = 37, .external_lex_state = 5}, + [1720] = {.lex_state = 37}, + [1721] = {.lex_state = 37}, + [1722] = {.lex_state = 37}, + [1723] = {.lex_state = 37}, + [1724] = {.lex_state = 37}, + [1725] = {.lex_state = 37}, + [1726] = {.lex_state = 37}, + [1727] = {.lex_state = 37}, + [1728] = {.lex_state = 37}, + [1729] = {.lex_state = 37}, + [1730] = {.lex_state = 49, .external_lex_state = 5}, + [1731] = {.lex_state = 37}, + [1732] = {.lex_state = 39}, + [1733] = {.lex_state = 39}, + [1734] = {.lex_state = 37, .external_lex_state = 2}, + [1735] = {.lex_state = 37}, + [1736] = {.lex_state = 37}, + [1737] = {.lex_state = 37, .external_lex_state = 5}, + [1738] = {.lex_state = 37}, + [1739] = {.lex_state = 37, .external_lex_state = 5}, + [1740] = {.lex_state = 37, .external_lex_state = 5}, + [1741] = {.lex_state = 37, .external_lex_state = 4}, + [1742] = {.lex_state = 37, .external_lex_state = 5}, + [1743] = {.lex_state = 37, .external_lex_state = 2}, + [1744] = {.lex_state = 37, .external_lex_state = 5}, + [1745] = {.lex_state = 37, .external_lex_state = 2}, + [1746] = {.lex_state = 37, .external_lex_state = 5}, + [1747] = {.lex_state = 37, .external_lex_state = 5}, + [1748] = {.lex_state = 49, .external_lex_state = 5}, + [1749] = {.lex_state = 37, .external_lex_state = 5}, + [1750] = {.lex_state = 37}, + [1751] = {.lex_state = 37, .external_lex_state = 5}, + [1752] = {.lex_state = 37, .external_lex_state = 5}, + [1753] = {.lex_state = 37, .external_lex_state = 5}, + [1754] = {.lex_state = 37, .external_lex_state = 5}, + [1755] = {.lex_state = 37}, + [1756] = {.lex_state = 37, .external_lex_state = 5}, + [1757] = {.lex_state = 37, .external_lex_state = 5}, + [1758] = {.lex_state = 39, .external_lex_state = 4}, + [1759] = {.lex_state = 37}, + [1760] = {.lex_state = 37}, [1761] = {.lex_state = 49}, [1762] = {.lex_state = 49}, - [1763] = {.lex_state = 49}, - [1764] = {.lex_state = 49}, - [1765] = {.lex_state = 49}, - [1766] = {.lex_state = 49}, - [1767] = {.lex_state = 49}, - [1768] = {.lex_state = 49}, - [1769] = {.lex_state = 49}, - [1770] = {.lex_state = 49}, - [1771] = {.lex_state = 49}, - [1772] = {.lex_state = 49}, - [1773] = {.lex_state = 49}, - [1774] = {.lex_state = 49}, - [1775] = {.lex_state = 49}, - [1776] = {.lex_state = 49}, - [1777] = {.lex_state = 49}, - [1778] = {.lex_state = 49}, - [1779] = {.lex_state = 49}, - [1780] = {.lex_state = 49}, - [1781] = {.lex_state = 49}, - [1782] = {.lex_state = 49}, - [1783] = {.lex_state = 49}, - [1784] = {.lex_state = 49}, - [1785] = {.lex_state = 49}, - [1786] = {.lex_state = 49}, - [1787] = {.lex_state = 49}, - [1788] = {.lex_state = 49}, - [1789] = {.lex_state = 49}, - [1790] = {.lex_state = 49}, - [1791] = {.lex_state = 49}, - [1792] = {.lex_state = 49}, - [1793] = {.lex_state = 49}, - [1794] = {.lex_state = 49}, - [1795] = {.lex_state = 49}, - [1796] = {.lex_state = 49}, - [1797] = {.lex_state = 49}, - [1798] = {.lex_state = 49}, - [1799] = {.lex_state = 49}, - [1800] = {.lex_state = 49}, - [1801] = {.lex_state = 49}, - [1802] = {.lex_state = 49}, - [1803] = {.lex_state = 49}, - [1804] = {.lex_state = 49}, - [1805] = {.lex_state = 49}, - [1806] = {.lex_state = 49}, - [1807] = {.lex_state = 49}, - [1808] = {.lex_state = 49}, - [1809] = {.lex_state = 49}, - [1810] = {.lex_state = 49}, + [1763] = {.lex_state = 37, .external_lex_state = 2}, + [1764] = {.lex_state = 39, .external_lex_state = 4}, + [1765] = {.lex_state = 37, .external_lex_state = 5}, + [1766] = {.lex_state = 37, .external_lex_state = 4}, + [1767] = {.lex_state = 37}, + [1768] = {.lex_state = 37, .external_lex_state = 2}, + [1769] = {.lex_state = 49, .external_lex_state = 5}, + [1770] = {.lex_state = 37, .external_lex_state = 4}, + [1771] = {.lex_state = 39, .external_lex_state = 5}, + [1772] = {.lex_state = 37, .external_lex_state = 4}, + [1773] = {.lex_state = 37, .external_lex_state = 2}, + [1774] = {.lex_state = 37, .external_lex_state = 2}, + [1775] = {.lex_state = 37, .external_lex_state = 2}, + [1776] = {.lex_state = 37, .external_lex_state = 4}, + [1777] = {.lex_state = 37}, + [1778] = {.lex_state = 37, .external_lex_state = 4}, + [1779] = {.lex_state = 37, .external_lex_state = 2}, + [1780] = {.lex_state = 39, .external_lex_state = 2}, + [1781] = {.lex_state = 39, .external_lex_state = 2}, + [1782] = {.lex_state = 37, .external_lex_state = 4}, + [1783] = {.lex_state = 39, .external_lex_state = 5}, + [1784] = {.lex_state = 37, .external_lex_state = 4}, + [1785] = {.lex_state = 37, .external_lex_state = 5}, + [1786] = {.lex_state = 37, .external_lex_state = 4}, + [1787] = {.lex_state = 49, .external_lex_state = 5}, + [1788] = {.lex_state = 37, .external_lex_state = 4}, + [1789] = {.lex_state = 37, .external_lex_state = 2}, + [1790] = {.lex_state = 37, .external_lex_state = 4}, + [1791] = {.lex_state = 37, .external_lex_state = 4}, + [1792] = {.lex_state = 37, .external_lex_state = 4}, + [1793] = {.lex_state = 37, .external_lex_state = 4}, + [1794] = {.lex_state = 49, .external_lex_state = 5}, + [1795] = {.lex_state = 37, .external_lex_state = 4}, + [1796] = {.lex_state = 37, .external_lex_state = 4}, + [1797] = {.lex_state = 37, .external_lex_state = 4}, + [1798] = {.lex_state = 37, .external_lex_state = 5}, + [1799] = {.lex_state = 37, .external_lex_state = 5}, + [1800] = {.lex_state = 37, .external_lex_state = 5}, + [1801] = {.lex_state = 37, .external_lex_state = 5}, + [1802] = {.lex_state = 37}, + [1803] = {.lex_state = 39}, + [1804] = {.lex_state = 37, .external_lex_state = 5}, + [1805] = {.lex_state = 37, .external_lex_state = 2}, + [1806] = {.lex_state = 37, .external_lex_state = 2}, + [1807] = {.lex_state = 39}, + [1808] = {.lex_state = 37, .external_lex_state = 5}, + [1809] = {.lex_state = 47, .external_lex_state = 5}, + [1810] = {.lex_state = 37, .external_lex_state = 5}, [1811] = {.lex_state = 49}, [1812] = {.lex_state = 49}, - [1813] = {.lex_state = 49}, - [1814] = {.lex_state = 49}, - [1815] = {.lex_state = 49}, - [1816] = {.lex_state = 49}, - [1817] = {.lex_state = 49}, - [1818] = {.lex_state = 49}, - [1819] = {.lex_state = 49}, + [1813] = {.lex_state = 37, .external_lex_state = 2}, + [1814] = {.lex_state = 49, .external_lex_state = 5}, + [1815] = {.lex_state = 37, .external_lex_state = 5}, + [1816] = {.lex_state = 37}, + [1817] = {.lex_state = 49, .external_lex_state = 5}, + [1818] = {.lex_state = 37, .external_lex_state = 5}, + [1819] = {.lex_state = 49, .external_lex_state = 5}, [1820] = {.lex_state = 49}, - [1821] = {.lex_state = 49}, - [1822] = {.lex_state = 49}, - [1823] = {.lex_state = 49}, - [1824] = {.lex_state = 49}, - [1825] = {.lex_state = 49}, - [1826] = {.lex_state = 49}, - [1827] = {.lex_state = 49}, - [1828] = {.lex_state = 49}, - [1829] = {.lex_state = 49}, - [1830] = {.lex_state = 49}, - [1831] = {.lex_state = 49}, - [1832] = {.lex_state = 49}, - [1833] = {.lex_state = 49}, - [1834] = {.lex_state = 49}, - [1835] = {.lex_state = 49}, - [1836] = {.lex_state = 49}, - [1837] = {.lex_state = 44}, - [1838] = {.lex_state = 4, .external_lex_state = 2}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 4}, - [1841] = {.lex_state = 4, .external_lex_state = 2}, - [1842] = {.lex_state = 4}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 4, .external_lex_state = 2}, - [1845] = {.lex_state = 4, .external_lex_state = 2}, - [1846] = {.lex_state = 4, .external_lex_state = 2}, - [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 4, .external_lex_state = 2}, - [1849] = {.lex_state = 96}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 4, .external_lex_state = 2}, - [1852] = {.lex_state = 4, .external_lex_state = 2}, - [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 4, .external_lex_state = 2}, - [1856] = {.lex_state = 4, .external_lex_state = 2}, - [1857] = {.lex_state = 53}, - [1858] = {.lex_state = 53}, - [1859] = {.lex_state = 53}, - [1860] = {.lex_state = 53}, - [1861] = {.lex_state = 4}, - [1862] = {.lex_state = 53}, - [1863] = {.lex_state = 53}, - [1864] = {.lex_state = 53}, - [1865] = {.lex_state = 4}, - [1866] = {.lex_state = 53}, - [1867] = {.lex_state = 53}, - [1868] = {.lex_state = 53}, - [1869] = {.lex_state = 53}, - [1870] = {.lex_state = 53}, - [1871] = {.lex_state = 53}, - [1872] = {.lex_state = 53}, - [1873] = {.lex_state = 53}, - [1874] = {.lex_state = 53}, - [1875] = {.lex_state = 53}, - [1876] = {.lex_state = 53}, - [1877] = {.lex_state = 53}, - [1878] = {.lex_state = 53}, - [1879] = {.lex_state = 4}, - [1880] = {.lex_state = 53}, - [1881] = {.lex_state = 53}, - [1882] = {.lex_state = 53}, - [1883] = {.lex_state = 4}, - [1884] = {.lex_state = 53}, - [1885] = {.lex_state = 53}, - [1886] = {.lex_state = 96}, - [1887] = {.lex_state = 96}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 96}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 96}, - [1893] = {.lex_state = 96}, - [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 96}, - [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 96}, - [1902] = {.lex_state = 96}, - [1903] = {.lex_state = 96}, - [1904] = {.lex_state = 0}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 96}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 96}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 96}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 53}, - [1918] = {.lex_state = 96}, - [1919] = {.lex_state = 96}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 96}, - [1922] = {.lex_state = 96}, - [1923] = {.lex_state = 59}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 96}, - [1926] = {.lex_state = 96}, - [1927] = {.lex_state = 59}, - [1928] = {.lex_state = 96}, - [1929] = {.lex_state = 53}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 96}, - [1932] = {.lex_state = 96}, - [1933] = {.lex_state = 96}, - [1934] = {.lex_state = 96}, - [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 96}, - [1938] = {.lex_state = 4, .external_lex_state = 2}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 4, .external_lex_state = 2}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 0}, - [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 4, .external_lex_state = 2}, - [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 4, .external_lex_state = 2}, - [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 0}, - [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 4, .external_lex_state = 2}, - [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 53}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 4, .external_lex_state = 2}, - [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 4, .external_lex_state = 2}, - [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 0}, - [1972] = {.lex_state = 4, .external_lex_state = 2}, - [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 0}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 50}, - [1978] = {.lex_state = 50}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 50}, - [1981] = {.lex_state = 4}, - [1982] = {.lex_state = 50}, - [1983] = {.lex_state = 50}, - [1984] = {.lex_state = 59}, - [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 50}, - [1987] = {.lex_state = 50}, - [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 4}, - [1990] = {.lex_state = 50}, - [1991] = {.lex_state = 50}, - [1992] = {.lex_state = 50}, - [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 50}, - [1995] = {.lex_state = 50}, - [1996] = {.lex_state = 53}, - [1997] = {.lex_state = 50}, - [1998] = {.lex_state = 50}, - [1999] = {.lex_state = 50}, - [2000] = {.lex_state = 50}, - [2001] = {.lex_state = 50}, - [2002] = {.lex_state = 50}, - [2003] = {.lex_state = 50}, - [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 4}, - [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 50}, - [2008] = {.lex_state = 50}, - [2009] = {.lex_state = 0}, - [2010] = {.lex_state = 4}, - [2011] = {.lex_state = 96}, - [2012] = {.lex_state = 96}, - [2013] = {.lex_state = 96}, - [2014] = {.lex_state = 96}, - [2015] = {.lex_state = 0}, - [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 96}, - [2019] = {.lex_state = 0}, - [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 0}, - [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 96}, - [2024] = {.lex_state = 0}, - [2025] = {.lex_state = 0}, - [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 56}, - [2029] = {.lex_state = 96}, - [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 56}, - [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 0}, - [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0}, - [2037] = {.lex_state = 96}, - [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 0}, - [2040] = {.lex_state = 96}, - [2041] = {.lex_state = 96}, - [2042] = {.lex_state = 0}, - [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 0}, - [2045] = {.lex_state = 96, .external_lex_state = 7}, - [2046] = {.lex_state = 96, .external_lex_state = 7}, - [2047] = {.lex_state = 0}, - [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 0}, + [1821] = {.lex_state = 37, .external_lex_state = 5}, + [1822] = {.lex_state = 49, .external_lex_state = 5}, + [1823] = {.lex_state = 37, .external_lex_state = 5}, + [1824] = {.lex_state = 49, .external_lex_state = 5}, + [1825] = {.lex_state = 37, .external_lex_state = 5}, + [1826] = {.lex_state = 37}, + [1827] = {.lex_state = 37, .external_lex_state = 5}, + [1828] = {.lex_state = 37, .external_lex_state = 5}, + [1829] = {.lex_state = 37, .external_lex_state = 5}, + [1830] = {.lex_state = 37}, + [1831] = {.lex_state = 47, .external_lex_state = 5}, + [1832] = {.lex_state = 37}, + [1833] = {.lex_state = 37}, + [1834] = {.lex_state = 37}, + [1835] = {.lex_state = 49, .external_lex_state = 5}, + [1836] = {.lex_state = 49, .external_lex_state = 5}, + [1837] = {.lex_state = 49, .external_lex_state = 5}, + [1838] = {.lex_state = 47}, + [1839] = {.lex_state = 49, .external_lex_state = 5}, + [1840] = {.lex_state = 37}, + [1841] = {.lex_state = 49, .external_lex_state = 5}, + [1842] = {.lex_state = 49, .external_lex_state = 5}, + [1843] = {.lex_state = 49, .external_lex_state = 5}, + [1844] = {.lex_state = 49, .external_lex_state = 5}, + [1845] = {.lex_state = 49, .external_lex_state = 5}, + [1846] = {.lex_state = 49, .external_lex_state = 5}, + [1847] = {.lex_state = 49, .external_lex_state = 5}, + [1848] = {.lex_state = 49, .external_lex_state = 5}, + [1849] = {.lex_state = 49, .external_lex_state = 5}, + [1850] = {.lex_state = 49, .external_lex_state = 5}, + [1851] = {.lex_state = 49, .external_lex_state = 5}, + [1852] = {.lex_state = 49, .external_lex_state = 5}, + [1853] = {.lex_state = 49, .external_lex_state = 5}, + [1854] = {.lex_state = 49, .external_lex_state = 5}, + [1855] = {.lex_state = 49, .external_lex_state = 5}, + [1856] = {.lex_state = 49, .external_lex_state = 5}, + [1857] = {.lex_state = 49, .external_lex_state = 5}, + [1858] = {.lex_state = 49}, + [1859] = {.lex_state = 49, .external_lex_state = 5}, + [1860] = {.lex_state = 49, .external_lex_state = 5}, + [1861] = {.lex_state = 49, .external_lex_state = 5}, + [1862] = {.lex_state = 49, .external_lex_state = 5}, + [1863] = {.lex_state = 49, .external_lex_state = 5}, + [1864] = {.lex_state = 37}, + [1865] = {.lex_state = 49, .external_lex_state = 5}, + [1866] = {.lex_state = 49}, + [1867] = {.lex_state = 49}, + [1868] = {.lex_state = 49, .external_lex_state = 5}, + [1869] = {.lex_state = 49, .external_lex_state = 5}, + [1870] = {.lex_state = 47}, + [1871] = {.lex_state = 49, .external_lex_state = 5}, + [1872] = {.lex_state = 49, .external_lex_state = 5}, + [1873] = {.lex_state = 49}, + [1874] = {.lex_state = 49, .external_lex_state = 5}, + [1875] = {.lex_state = 49, .external_lex_state = 5}, + [1876] = {.lex_state = 49, .external_lex_state = 5}, + [1877] = {.lex_state = 49}, + [1878] = {.lex_state = 49, .external_lex_state = 5}, + [1879] = {.lex_state = 49, .external_lex_state = 5}, + [1880] = {.lex_state = 49, .external_lex_state = 5}, + [1881] = {.lex_state = 49}, + [1882] = {.lex_state = 37, .external_lex_state = 2}, + [1883] = {.lex_state = 37, .external_lex_state = 2}, + [1884] = {.lex_state = 37, .external_lex_state = 2}, + [1885] = {.lex_state = 49}, + [1886] = {.lex_state = 49}, + [1887] = {.lex_state = 49}, + [1888] = {.lex_state = 49}, + [1889] = {.lex_state = 37, .external_lex_state = 2}, + [1890] = {.lex_state = 49}, + [1891] = {.lex_state = 49}, + [1892] = {.lex_state = 49}, + [1893] = {.lex_state = 49}, + [1894] = {.lex_state = 49}, + [1895] = {.lex_state = 49}, + [1896] = {.lex_state = 49}, + [1897] = {.lex_state = 37, .external_lex_state = 2}, + [1898] = {.lex_state = 49}, + [1899] = {.lex_state = 49}, + [1900] = {.lex_state = 49}, + [1901] = {.lex_state = 49}, + [1902] = {.lex_state = 37}, + [1903] = {.lex_state = 37}, + [1904] = {.lex_state = 37}, + [1905] = {.lex_state = 37}, + [1906] = {.lex_state = 37}, + [1907] = {.lex_state = 49}, + [1908] = {.lex_state = 49}, + [1909] = {.lex_state = 49}, + [1910] = {.lex_state = 49}, + [1911] = {.lex_state = 49}, + [1912] = {.lex_state = 49}, + [1913] = {.lex_state = 49}, + [1914] = {.lex_state = 49}, + [1915] = {.lex_state = 49}, + [1916] = {.lex_state = 49}, + [1917] = {.lex_state = 49}, + [1918] = {.lex_state = 49}, + [1919] = {.lex_state = 49}, + [1920] = {.lex_state = 49}, + [1921] = {.lex_state = 49}, + [1922] = {.lex_state = 49}, + [1923] = {.lex_state = 49}, + [1924] = {.lex_state = 49}, + [1925] = {.lex_state = 49}, + [1926] = {.lex_state = 49}, + [1927] = {.lex_state = 49}, + [1928] = {.lex_state = 49}, + [1929] = {.lex_state = 49}, + [1930] = {.lex_state = 49}, + [1931] = {.lex_state = 49}, + [1932] = {.lex_state = 49}, + [1933] = {.lex_state = 49}, + [1934] = {.lex_state = 49}, + [1935] = {.lex_state = 49}, + [1936] = {.lex_state = 49}, + [1937] = {.lex_state = 49}, + [1938] = {.lex_state = 49}, + [1939] = {.lex_state = 49}, + [1940] = {.lex_state = 49}, + [1941] = {.lex_state = 49}, + [1942] = {.lex_state = 49}, + [1943] = {.lex_state = 49}, + [1944] = {.lex_state = 49}, + [1945] = {.lex_state = 49}, + [1946] = {.lex_state = 49}, + [1947] = {.lex_state = 49}, + [1948] = {.lex_state = 49}, + [1949] = {.lex_state = 49}, + [1950] = {.lex_state = 49}, + [1951] = {.lex_state = 49}, + [1952] = {.lex_state = 49}, + [1953] = {.lex_state = 49}, + [1954] = {.lex_state = 49}, + [1955] = {.lex_state = 49}, + [1956] = {.lex_state = 49}, + [1957] = {.lex_state = 49}, + [1958] = {.lex_state = 49}, + [1959] = {.lex_state = 49}, + [1960] = {.lex_state = 49}, + [1961] = {.lex_state = 49}, + [1962] = {.lex_state = 49}, + [1963] = {.lex_state = 49}, + [1964] = {.lex_state = 49}, + [1965] = {.lex_state = 49}, + [1966] = {.lex_state = 49}, + [1967] = {.lex_state = 49}, + [1968] = {.lex_state = 49}, + [1969] = {.lex_state = 49}, + [1970] = {.lex_state = 49}, + [1971] = {.lex_state = 49}, + [1972] = {.lex_state = 49}, + [1973] = {.lex_state = 49}, + [1974] = {.lex_state = 49}, + [1975] = {.lex_state = 49}, + [1976] = {.lex_state = 49}, + [1977] = {.lex_state = 49}, + [1978] = {.lex_state = 49}, + [1979] = {.lex_state = 49}, + [1980] = {.lex_state = 49}, + [1981] = {.lex_state = 49}, + [1982] = {.lex_state = 49}, + [1983] = {.lex_state = 49}, + [1984] = {.lex_state = 49}, + [1985] = {.lex_state = 49}, + [1986] = {.lex_state = 49}, + [1987] = {.lex_state = 49}, + [1988] = {.lex_state = 49}, + [1989] = {.lex_state = 49}, + [1990] = {.lex_state = 49}, + [1991] = {.lex_state = 49}, + [1992] = {.lex_state = 49}, + [1993] = {.lex_state = 49}, + [1994] = {.lex_state = 49}, + [1995] = {.lex_state = 49}, + [1996] = {.lex_state = 49}, + [1997] = {.lex_state = 49}, + [1998] = {.lex_state = 49}, + [1999] = {.lex_state = 49}, + [2000] = {.lex_state = 49}, + [2001] = {.lex_state = 49}, + [2002] = {.lex_state = 49}, + [2003] = {.lex_state = 49}, + [2004] = {.lex_state = 49}, + [2005] = {.lex_state = 49}, + [2006] = {.lex_state = 49}, + [2007] = {.lex_state = 49}, + [2008] = {.lex_state = 49}, + [2009] = {.lex_state = 49}, + [2010] = {.lex_state = 49}, + [2011] = {.lex_state = 49}, + [2012] = {.lex_state = 49}, + [2013] = {.lex_state = 49}, + [2014] = {.lex_state = 49}, + [2015] = {.lex_state = 49}, + [2016] = {.lex_state = 49}, + [2017] = {.lex_state = 49}, + [2018] = {.lex_state = 49}, + [2019] = {.lex_state = 49}, + [2020] = {.lex_state = 49}, + [2021] = {.lex_state = 49}, + [2022] = {.lex_state = 49}, + [2023] = {.lex_state = 49}, + [2024] = {.lex_state = 49}, + [2025] = {.lex_state = 49}, + [2026] = {.lex_state = 49}, + [2027] = {.lex_state = 49}, + [2028] = {.lex_state = 49}, + [2029] = {.lex_state = 49}, + [2030] = {.lex_state = 49}, + [2031] = {.lex_state = 49}, + [2032] = {.lex_state = 49}, + [2033] = {.lex_state = 49}, + [2034] = {.lex_state = 49}, + [2035] = {.lex_state = 49}, + [2036] = {.lex_state = 49}, + [2037] = {.lex_state = 49}, + [2038] = {.lex_state = 49}, + [2039] = {.lex_state = 49}, + [2040] = {.lex_state = 49}, + [2041] = {.lex_state = 49}, + [2042] = {.lex_state = 49}, + [2043] = {.lex_state = 49}, + [2044] = {.lex_state = 49}, + [2045] = {.lex_state = 49}, + [2046] = {.lex_state = 49}, + [2047] = {.lex_state = 49}, + [2048] = {.lex_state = 49}, + [2049] = {.lex_state = 49}, + [2050] = {.lex_state = 49}, [2051] = {.lex_state = 0}, - [2052] = {.lex_state = 96, .external_lex_state = 7}, - [2053] = {.lex_state = 96}, - [2054] = {.lex_state = 96, .external_lex_state = 7}, - [2055] = {.lex_state = 96, .external_lex_state = 7}, - [2056] = {.lex_state = 96, .external_lex_state = 7}, - [2057] = {.lex_state = 96, .external_lex_state = 7}, - [2058] = {.lex_state = 96, .external_lex_state = 7}, - [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 96, .external_lex_state = 7}, - [2061] = {.lex_state = 96, .external_lex_state = 7}, - [2062] = {.lex_state = 96, .external_lex_state = 7}, - [2063] = {.lex_state = 96, .external_lex_state = 7}, - [2064] = {.lex_state = 96, .external_lex_state = 7}, - [2065] = {.lex_state = 96, .external_lex_state = 7}, - [2066] = {.lex_state = 96, .external_lex_state = 7}, - [2067] = {.lex_state = 96}, - [2068] = {.lex_state = 96}, - [2069] = {.lex_state = 0, .external_lex_state = 8}, - [2070] = {.lex_state = 0}, - [2071] = {.lex_state = 0}, - [2072] = {.lex_state = 0}, - [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 0}, - [2075] = {.lex_state = 0, .external_lex_state = 8}, - [2076] = {.lex_state = 96}, - [2077] = {.lex_state = 0}, - [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 0}, - [2081] = {.lex_state = 0, .external_lex_state = 8}, - [2082] = {.lex_state = 0}, - [2083] = {.lex_state = 0}, - [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 0, .external_lex_state = 8}, - [2087] = {.lex_state = 0}, + [2052] = {.lex_state = 4, .external_lex_state = 2}, + [2053] = {.lex_state = 4}, + [2054] = {.lex_state = 4, .external_lex_state = 2}, + [2055] = {.lex_state = 4, .external_lex_state = 2}, + [2056] = {.lex_state = 0}, + [2057] = {.lex_state = 4, .external_lex_state = 2}, + [2058] = {.lex_state = 4, .external_lex_state = 2}, + [2059] = {.lex_state = 4, .external_lex_state = 2}, + [2060] = {.lex_state = 4, .external_lex_state = 2}, + [2061] = {.lex_state = 0}, + [2062] = {.lex_state = 96}, + [2063] = {.lex_state = 4}, + [2064] = {.lex_state = 0}, + [2065] = {.lex_state = 4, .external_lex_state = 2}, + [2066] = {.lex_state = 4, .external_lex_state = 2}, + [2067] = {.lex_state = 0}, + [2068] = {.lex_state = 0}, + [2069] = {.lex_state = 4, .external_lex_state = 2}, + [2070] = {.lex_state = 53}, + [2071] = {.lex_state = 53}, + [2072] = {.lex_state = 4}, + [2073] = {.lex_state = 53}, + [2074] = {.lex_state = 53}, + [2075] = {.lex_state = 53}, + [2076] = {.lex_state = 53}, + [2077] = {.lex_state = 53}, + [2078] = {.lex_state = 53}, + [2079] = {.lex_state = 53}, + [2080] = {.lex_state = 53}, + [2081] = {.lex_state = 53}, + [2082] = {.lex_state = 4}, + [2083] = {.lex_state = 53}, + [2084] = {.lex_state = 53}, + [2085] = {.lex_state = 53}, + [2086] = {.lex_state = 53}, + [2087] = {.lex_state = 4}, [2088] = {.lex_state = 53}, - [2089] = {.lex_state = 0}, - [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 44}, - [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 0, .external_lex_state = 8}, - [2094] = {.lex_state = 0}, - [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 96}, - [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 0, .external_lex_state = 8}, + [2089] = {.lex_state = 4}, + [2090] = {.lex_state = 53}, + [2091] = {.lex_state = 53}, + [2092] = {.lex_state = 53}, + [2093] = {.lex_state = 53}, + [2094] = {.lex_state = 53}, + [2095] = {.lex_state = 53}, + [2096] = {.lex_state = 53}, + [2097] = {.lex_state = 53}, + [2098] = {.lex_state = 53}, + [2099] = {.lex_state = 53}, [2100] = {.lex_state = 0}, [2101] = {.lex_state = 0}, [2102] = {.lex_state = 0}, [2103] = {.lex_state = 0}, [2104] = {.lex_state = 0}, - [2105] = {.lex_state = 0, .external_lex_state = 8}, + [2105] = {.lex_state = 0}, [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 0, .external_lex_state = 8}, - [2109] = {.lex_state = 0, .external_lex_state = 8}, - [2110] = {.lex_state = 0, .external_lex_state = 8}, - [2111] = {.lex_state = 0, .external_lex_state = 8}, - [2112] = {.lex_state = 0, .external_lex_state = 8}, - [2113] = {.lex_state = 0, .external_lex_state = 8}, - [2114] = {.lex_state = 96}, - [2115] = {.lex_state = 96}, - [2116] = {.lex_state = 96}, - [2117] = {.lex_state = 0, .external_lex_state = 7}, - [2118] = {.lex_state = 96}, + [2107] = {.lex_state = 59}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 0}, + [2110] = {.lex_state = 0}, + [2111] = {.lex_state = 59}, + [2112] = {.lex_state = 0}, + [2113] = {.lex_state = 0}, + [2114] = {.lex_state = 0}, + [2115] = {.lex_state = 0}, + [2116] = {.lex_state = 0}, + [2117] = {.lex_state = 0}, + [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, - [2120] = {.lex_state = 96}, - [2121] = {.lex_state = 96}, - [2122] = {.lex_state = 96}, + [2120] = {.lex_state = 53}, + [2121] = {.lex_state = 0}, + [2122] = {.lex_state = 0}, [2123] = {.lex_state = 0}, [2124] = {.lex_state = 0}, [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 53}, - [2127] = {.lex_state = 44}, - [2128] = {.lex_state = 96}, - [2129] = {.lex_state = 53}, + [2126] = {.lex_state = 0}, + [2127] = {.lex_state = 4, .external_lex_state = 2}, + [2128] = {.lex_state = 0}, + [2129] = {.lex_state = 4, .external_lex_state = 2}, [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0, .external_lex_state = 8}, + [2131] = {.lex_state = 0}, [2132] = {.lex_state = 0}, - [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 0}, - [2135] = {.lex_state = 0}, + [2133] = {.lex_state = 4, .external_lex_state = 2}, + [2134] = {.lex_state = 4, .external_lex_state = 2}, + [2135] = {.lex_state = 4, .external_lex_state = 2}, [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 0}, - [2138] = {.lex_state = 0, .external_lex_state = 8}, + [2137] = {.lex_state = 4, .external_lex_state = 2}, + [2138] = {.lex_state = 0}, [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 96}, + [2140] = {.lex_state = 4, .external_lex_state = 2}, + [2141] = {.lex_state = 0}, [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 96}, - [2144] = {.lex_state = 53}, - [2145] = {.lex_state = 53}, - [2146] = {.lex_state = 0, .external_lex_state = 8}, + [2143] = {.lex_state = 0}, + [2144] = {.lex_state = 0}, + [2145] = {.lex_state = 0}, + [2146] = {.lex_state = 0}, [2147] = {.lex_state = 0}, [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0}, + [2149] = {.lex_state = 53}, [2150] = {.lex_state = 0}, [2151] = {.lex_state = 0}, [2152] = {.lex_state = 0}, [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, + [2154] = {.lex_state = 4, .external_lex_state = 2}, [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 4}, - [2157] = {.lex_state = 53}, - [2158] = {.lex_state = 0, .external_lex_state = 7}, + [2156] = {.lex_state = 0}, + [2157] = {.lex_state = 0}, + [2158] = {.lex_state = 0}, [2159] = {.lex_state = 0}, - [2160] = {.lex_state = 96}, + [2160] = {.lex_state = 0}, [2161] = {.lex_state = 0}, - [2162] = {.lex_state = 0, .external_lex_state = 8}, - [2163] = {.lex_state = 53}, - [2164] = {.lex_state = 96}, - [2165] = {.lex_state = 96}, - [2166] = {.lex_state = 0}, - [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 0}, - [2169] = {.lex_state = 96}, - [2170] = {.lex_state = 96}, - [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 0}, - [2173] = {.lex_state = 53}, - [2174] = {.lex_state = 96}, - [2175] = {.lex_state = 53}, - [2176] = {.lex_state = 96}, - [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 0}, + [2162] = {.lex_state = 0}, + [2163] = {.lex_state = 0}, + [2164] = {.lex_state = 0}, + [2165] = {.lex_state = 0}, + [2166] = {.lex_state = 50}, + [2167] = {.lex_state = 50}, + [2168] = {.lex_state = 50}, + [2169] = {.lex_state = 50}, + [2170] = {.lex_state = 0}, + [2171] = {.lex_state = 50}, + [2172] = {.lex_state = 50}, + [2173] = {.lex_state = 50}, + [2174] = {.lex_state = 50}, + [2175] = {.lex_state = 50}, + [2176] = {.lex_state = 50}, + [2177] = {.lex_state = 50}, + [2178] = {.lex_state = 50}, [2179] = {.lex_state = 53}, - [2180] = {.lex_state = 96}, - [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 0, .external_lex_state = 7}, + [2180] = {.lex_state = 0}, + [2181] = {.lex_state = 50}, + [2182] = {.lex_state = 50}, [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 96}, - [2185] = {.lex_state = 96}, - [2186] = {.lex_state = 96}, - [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 0, .external_lex_state = 7}, - [2189] = {.lex_state = 53}, - [2190] = {.lex_state = 53}, - [2191] = {.lex_state = 96}, - [2192] = {.lex_state = 0}, - [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 189}, - [2195] = {.lex_state = 53}, - [2196] = {.lex_state = 53}, - [2197] = {.lex_state = 96}, - [2198] = {.lex_state = 96}, + [2184] = {.lex_state = 50}, + [2185] = {.lex_state = 50}, + [2186] = {.lex_state = 50}, + [2187] = {.lex_state = 50}, + [2188] = {.lex_state = 0}, + [2189] = {.lex_state = 4}, + [2190] = {.lex_state = 50}, + [2191] = {.lex_state = 59}, + [2192] = {.lex_state = 50}, + [2193] = {.lex_state = 50}, + [2194] = {.lex_state = 4}, + [2195] = {.lex_state = 50}, + [2196] = {.lex_state = 4}, + [2197] = {.lex_state = 0}, + [2198] = {.lex_state = 50}, [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 0}, - [2202] = {.lex_state = 53}, - [2203] = {.lex_state = 96}, - [2204] = {.lex_state = 96}, - [2205] = {.lex_state = 96}, + [2200] = {.lex_state = 50}, + [2201] = {.lex_state = 50}, + [2202] = {.lex_state = 50}, + [2203] = {.lex_state = 0}, + [2204] = {.lex_state = 50}, + [2205] = {.lex_state = 4}, [2206] = {.lex_state = 0}, [2207] = {.lex_state = 96}, - [2208] = {.lex_state = 0}, + [2208] = {.lex_state = 96}, [2209] = {.lex_state = 96}, - [2210] = {.lex_state = 96}, + [2210] = {.lex_state = 0}, [2211] = {.lex_state = 0}, [2212] = {.lex_state = 96}, [2213] = {.lex_state = 96}, [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 0, .external_lex_state = 7}, + [2215] = {.lex_state = 0}, [2216] = {.lex_state = 0}, [2217] = {.lex_state = 0}, [2218] = {.lex_state = 0}, - [2219] = {.lex_state = 0}, - [2220] = {.lex_state = 53}, - [2221] = {.lex_state = 96}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0, .external_lex_state = 7}, - [2224] = {.lex_state = 189}, - [2225] = {.lex_state = 96}, - [2226] = {.lex_state = 53}, - [2227] = {.lex_state = 0, .external_lex_state = 7}, - [2228] = {.lex_state = 96}, - [2229] = {.lex_state = 0}, - [2230] = {.lex_state = 0, .external_lex_state = 7}, - [2231] = {.lex_state = 96}, - [2232] = {.lex_state = 53}, - [2233] = {.lex_state = 0, .external_lex_state = 7}, - [2234] = {.lex_state = 96}, - [2235] = {.lex_state = 0}, - [2236] = {.lex_state = 0, .external_lex_state = 7}, - [2237] = {.lex_state = 96}, - [2238] = {.lex_state = 53}, - [2239] = {.lex_state = 0, .external_lex_state = 7}, - [2240] = {.lex_state = 96}, - [2241] = {.lex_state = 0}, - [2242] = {.lex_state = 0, .external_lex_state = 7}, - [2243] = {.lex_state = 96}, - [2244] = {.lex_state = 53}, - [2245] = {.lex_state = 0, .external_lex_state = 7}, - [2246] = {.lex_state = 96}, - [2247] = {.lex_state = 0, .external_lex_state = 8}, - [2248] = {.lex_state = 0, .external_lex_state = 7}, - [2249] = {.lex_state = 96}, - [2250] = {.lex_state = 53}, - [2251] = {.lex_state = 0, .external_lex_state = 7}, - [2252] = {.lex_state = 96}, + [2219] = {.lex_state = 96}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 96, .external_lex_state = 7}, + [2222] = {.lex_state = 96, .external_lex_state = 7}, + [2223] = {.lex_state = 96, .external_lex_state = 7}, + [2224] = {.lex_state = 0}, + [2225] = {.lex_state = 96, .external_lex_state = 7}, + [2226] = {.lex_state = 96}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 0}, + [2229] = {.lex_state = 96}, + [2230] = {.lex_state = 96, .external_lex_state = 7}, + [2231] = {.lex_state = 96, .external_lex_state = 7}, + [2232] = {.lex_state = 96}, + [2233] = {.lex_state = 96}, + [2234] = {.lex_state = 0}, + [2235] = {.lex_state = 96, .external_lex_state = 7}, + [2236] = {.lex_state = 96, .external_lex_state = 7}, + [2237] = {.lex_state = 96, .external_lex_state = 7}, + [2238] = {.lex_state = 96, .external_lex_state = 7}, + [2239] = {.lex_state = 96, .external_lex_state = 7}, + [2240] = {.lex_state = 96, .external_lex_state = 7}, + [2241] = {.lex_state = 96, .external_lex_state = 7}, + [2242] = {.lex_state = 0}, + [2243] = {.lex_state = 96, .external_lex_state = 7}, + [2244] = {.lex_state = 96, .external_lex_state = 7}, + [2245] = {.lex_state = 0}, + [2246] = {.lex_state = 96, .external_lex_state = 7}, + [2247] = {.lex_state = 0}, + [2248] = {.lex_state = 0}, + [2249] = {.lex_state = 96, .external_lex_state = 7}, + [2250] = {.lex_state = 96}, + [2251] = {.lex_state = 0}, + [2252] = {.lex_state = 0}, [2253] = {.lex_state = 0}, - [2254] = {.lex_state = 0, .external_lex_state = 7}, - [2255] = {.lex_state = 96}, - [2256] = {.lex_state = 96}, - [2257] = {.lex_state = 96}, + [2254] = {.lex_state = 0}, + [2255] = {.lex_state = 0}, + [2256] = {.lex_state = 0}, + [2257] = {.lex_state = 0}, [2258] = {.lex_state = 96}, - [2259] = {.lex_state = 96}, - [2260] = {.lex_state = 96}, + [2259] = {.lex_state = 0}, + [2260] = {.lex_state = 0}, [2261] = {.lex_state = 96}, - [2262] = {.lex_state = 96}, - [2263] = {.lex_state = 0}, + [2262] = {.lex_state = 0}, + [2263] = {.lex_state = 96, .external_lex_state = 7}, [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 53}, - [2266] = {.lex_state = 53}, - [2267] = {.lex_state = 53}, - [2268] = {.lex_state = 0}, - [2269] = {.lex_state = 53}, - [2270] = {.lex_state = 0}, - [2271] = {.lex_state = 0}, + [2265] = {.lex_state = 0}, + [2266] = {.lex_state = 56}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 56}, + [2269] = {.lex_state = 0}, + [2270] = {.lex_state = 96}, + [2271] = {.lex_state = 0, .external_lex_state = 8}, [2272] = {.lex_state = 96}, - [2273] = {.lex_state = 96}, - [2274] = {.lex_state = 96}, - [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 0, .external_lex_state = 8}, + [2273] = {.lex_state = 0}, + [2274] = {.lex_state = 53}, + [2275] = {.lex_state = 96}, + [2276] = {.lex_state = 0}, [2277] = {.lex_state = 0}, - [2278] = {.lex_state = 0}, + [2278] = {.lex_state = 0, .external_lex_state = 8}, [2279] = {.lex_state = 96}, - [2280] = {.lex_state = 96}, - [2281] = {.lex_state = 96}, - [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 96}, - [2284] = {.lex_state = 0}, + [2280] = {.lex_state = 0}, + [2281] = {.lex_state = 0}, + [2282] = {.lex_state = 96}, + [2283] = {.lex_state = 0, .external_lex_state = 8}, + [2284] = {.lex_state = 96}, [2285] = {.lex_state = 0}, - [2286] = {.lex_state = 96}, - [2287] = {.lex_state = 96}, + [2286] = {.lex_state = 0}, + [2287] = {.lex_state = 0, .external_lex_state = 8}, + [2288] = {.lex_state = 0, .external_lex_state = 8}, + [2289] = {.lex_state = 0}, + [2290] = {.lex_state = 96}, + [2291] = {.lex_state = 0}, + [2292] = {.lex_state = 0}, + [2293] = {.lex_state = 0, .external_lex_state = 8}, + [2294] = {.lex_state = 0}, + [2295] = {.lex_state = 96}, + [2296] = {.lex_state = 0}, + [2297] = {.lex_state = 0}, + [2298] = {.lex_state = 0}, + [2299] = {.lex_state = 0}, + [2300] = {.lex_state = 0, .external_lex_state = 8}, + [2301] = {.lex_state = 0}, + [2302] = {.lex_state = 0}, + [2303] = {.lex_state = 96}, + [2304] = {.lex_state = 0}, + [2305] = {.lex_state = 0}, + [2306] = {.lex_state = 96}, + [2307] = {.lex_state = 0}, + [2308] = {.lex_state = 0, .external_lex_state = 8}, + [2309] = {.lex_state = 0}, + [2310] = {.lex_state = 0}, + [2311] = {.lex_state = 96}, + [2312] = {.lex_state = 0}, + [2313] = {.lex_state = 0}, + [2314] = {.lex_state = 0, .external_lex_state = 7}, + [2315] = {.lex_state = 0, .external_lex_state = 8}, + [2316] = {.lex_state = 0, .external_lex_state = 8}, + [2317] = {.lex_state = 0}, + [2318] = {.lex_state = 0}, + [2319] = {.lex_state = 96}, + [2320] = {.lex_state = 0}, + [2321] = {.lex_state = 0}, + [2322] = {.lex_state = 96}, + [2323] = {.lex_state = 0}, + [2324] = {.lex_state = 0, .external_lex_state = 8}, + [2325] = {.lex_state = 53}, + [2326] = {.lex_state = 96}, + [2327] = {.lex_state = 0}, + [2328] = {.lex_state = 0}, + [2329] = {.lex_state = 0}, + [2330] = {.lex_state = 0}, + [2331] = {.lex_state = 0, .external_lex_state = 8}, + [2332] = {.lex_state = 0}, + [2333] = {.lex_state = 96}, + [2334] = {.lex_state = 0}, + [2335] = {.lex_state = 0}, + [2336] = {.lex_state = 0}, + [2337] = {.lex_state = 0}, + [2338] = {.lex_state = 0, .external_lex_state = 8}, + [2339] = {.lex_state = 0}, + [2340] = {.lex_state = 96}, + [2341] = {.lex_state = 0}, + [2342] = {.lex_state = 0}, + [2343] = {.lex_state = 0}, + [2344] = {.lex_state = 0}, + [2345] = {.lex_state = 0, .external_lex_state = 8}, + [2346] = {.lex_state = 96}, + [2347] = {.lex_state = 96}, + [2348] = {.lex_state = 0}, + [2349] = {.lex_state = 0}, + [2350] = {.lex_state = 0}, + [2351] = {.lex_state = 96}, + [2352] = {.lex_state = 0, .external_lex_state = 8}, + [2353] = {.lex_state = 96}, + [2354] = {.lex_state = 96}, + [2355] = {.lex_state = 0}, + [2356] = {.lex_state = 53}, + [2357] = {.lex_state = 0, .external_lex_state = 8}, + [2358] = {.lex_state = 96}, + [2359] = {.lex_state = 0}, + [2360] = {.lex_state = 96}, + [2361] = {.lex_state = 0, .external_lex_state = 8}, + [2362] = {.lex_state = 0, .external_lex_state = 8}, + [2363] = {.lex_state = 0, .external_lex_state = 8}, + [2364] = {.lex_state = 0, .external_lex_state = 8}, + [2365] = {.lex_state = 0, .external_lex_state = 8}, + [2366] = {.lex_state = 0, .external_lex_state = 8}, + [2367] = {.lex_state = 0, .external_lex_state = 8}, + [2368] = {.lex_state = 0, .external_lex_state = 8}, + [2369] = {.lex_state = 96}, + [2370] = {.lex_state = 96}, + [2371] = {.lex_state = 96}, + [2372] = {.lex_state = 0, .external_lex_state = 7}, + [2373] = {.lex_state = 189}, + [2374] = {.lex_state = 96}, + [2375] = {.lex_state = 0}, + [2376] = {.lex_state = 189}, + [2377] = {.lex_state = 96}, + [2378] = {.lex_state = 44}, + [2379] = {.lex_state = 0}, + [2380] = {.lex_state = 96}, + [2381] = {.lex_state = 53}, + [2382] = {.lex_state = 0}, + [2383] = {.lex_state = 96}, + [2384] = {.lex_state = 96}, + [2385] = {.lex_state = 0}, + [2386] = {.lex_state = 0}, + [2387] = {.lex_state = 0}, + [2388] = {.lex_state = 53}, + [2389] = {.lex_state = 0}, + [2390] = {.lex_state = 96}, + [2391] = {.lex_state = 96}, + [2392] = {.lex_state = 0}, + [2393] = {.lex_state = 0}, + [2394] = {.lex_state = 0}, + [2395] = {.lex_state = 0}, + [2396] = {.lex_state = 0}, + [2397] = {.lex_state = 53}, + [2398] = {.lex_state = 0}, + [2399] = {.lex_state = 96}, + [2400] = {.lex_state = 96}, + [2401] = {.lex_state = 0}, + [2402] = {.lex_state = 0}, + [2403] = {.lex_state = 0}, + [2404] = {.lex_state = 0}, + [2405] = {.lex_state = 0}, + [2406] = {.lex_state = 0}, + [2407] = {.lex_state = 53}, + [2408] = {.lex_state = 0}, + [2409] = {.lex_state = 96}, + [2410] = {.lex_state = 0}, + [2411] = {.lex_state = 0}, + [2412] = {.lex_state = 0}, + [2413] = {.lex_state = 0}, + [2414] = {.lex_state = 0}, + [2415] = {.lex_state = 53}, + [2416] = {.lex_state = 96}, + [2417] = {.lex_state = 0}, + [2418] = {.lex_state = 0}, + [2419] = {.lex_state = 0}, + [2420] = {.lex_state = 44}, + [2421] = {.lex_state = 0}, + [2422] = {.lex_state = 53}, + [2423] = {.lex_state = 0}, + [2424] = {.lex_state = 96}, + [2425] = {.lex_state = 53}, + [2426] = {.lex_state = 0}, + [2427] = {.lex_state = 0}, + [2428] = {.lex_state = 0}, + [2429] = {.lex_state = 96}, + [2430] = {.lex_state = 0}, + [2431] = {.lex_state = 96}, + [2432] = {.lex_state = 0}, + [2433] = {.lex_state = 0}, + [2434] = {.lex_state = 0}, + [2435] = {.lex_state = 53}, + [2436] = {.lex_state = 0}, + [2437] = {.lex_state = 0}, + [2438] = {.lex_state = 96}, + [2439] = {.lex_state = 0}, + [2440] = {.lex_state = 0}, + [2441] = {.lex_state = 0}, + [2442] = {.lex_state = 4}, + [2443] = {.lex_state = 96}, + [2444] = {.lex_state = 53}, + [2445] = {.lex_state = 0}, + [2446] = {.lex_state = 96}, + [2447] = {.lex_state = 0}, + [2448] = {.lex_state = 0}, + [2449] = {.lex_state = 0}, + [2450] = {.lex_state = 96}, + [2451] = {.lex_state = 96}, + [2452] = {.lex_state = 53}, + [2453] = {.lex_state = 0, .external_lex_state = 7}, + [2454] = {.lex_state = 0, .external_lex_state = 8}, + [2455] = {.lex_state = 96}, + [2456] = {.lex_state = 96}, + [2457] = {.lex_state = 0}, + [2458] = {.lex_state = 0}, + [2459] = {.lex_state = 0}, + [2460] = {.lex_state = 96}, + [2461] = {.lex_state = 0}, + [2462] = {.lex_state = 0}, + [2463] = {.lex_state = 53}, + [2464] = {.lex_state = 0}, + [2465] = {.lex_state = 53}, + [2466] = {.lex_state = 0}, + [2467] = {.lex_state = 96}, + [2468] = {.lex_state = 96}, + [2469] = {.lex_state = 0}, + [2470] = {.lex_state = 0, .external_lex_state = 7}, + [2471] = {.lex_state = 53}, + [2472] = {.lex_state = 0}, + [2473] = {.lex_state = 53}, + [2474] = {.lex_state = 0}, + [2475] = {.lex_state = 53}, + [2476] = {.lex_state = 96}, + [2477] = {.lex_state = 53}, + [2478] = {.lex_state = 0, .external_lex_state = 7}, + [2479] = {.lex_state = 0}, + [2480] = {.lex_state = 96}, + [2481] = {.lex_state = 53}, + [2482] = {.lex_state = 0, .external_lex_state = 7}, + [2483] = {.lex_state = 96}, + [2484] = {.lex_state = 96}, + [2485] = {.lex_state = 0, .external_lex_state = 7}, + [2486] = {.lex_state = 96}, + [2487] = {.lex_state = 0}, + [2488] = {.lex_state = 0, .external_lex_state = 7}, + [2489] = {.lex_state = 96}, + [2490] = {.lex_state = 0}, + [2491] = {.lex_state = 0, .external_lex_state = 7}, + [2492] = {.lex_state = 96}, + [2493] = {.lex_state = 53}, + [2494] = {.lex_state = 0, .external_lex_state = 7}, + [2495] = {.lex_state = 96}, + [2496] = {.lex_state = 0}, + [2497] = {.lex_state = 0, .external_lex_state = 7}, + [2498] = {.lex_state = 96}, + [2499] = {.lex_state = 0}, + [2500] = {.lex_state = 0, .external_lex_state = 7}, + [2501] = {.lex_state = 96}, + [2502] = {.lex_state = 0}, + [2503] = {.lex_state = 0, .external_lex_state = 7}, + [2504] = {.lex_state = 96}, + [2505] = {.lex_state = 0}, + [2506] = {.lex_state = 0, .external_lex_state = 7}, + [2507] = {.lex_state = 96}, + [2508] = {.lex_state = 0}, + [2509] = {.lex_state = 0, .external_lex_state = 7}, + [2510] = {.lex_state = 96}, + [2511] = {.lex_state = 96}, + [2512] = {.lex_state = 0, .external_lex_state = 7}, + [2513] = {.lex_state = 96}, + [2514] = {.lex_state = 53}, + [2515] = {.lex_state = 0, .external_lex_state = 7}, + [2516] = {.lex_state = 96}, + [2517] = {.lex_state = 53}, + [2518] = {.lex_state = 0, .external_lex_state = 7}, + [2519] = {.lex_state = 96}, + [2520] = {.lex_state = 96}, + [2521] = {.lex_state = 96}, + [2522] = {.lex_state = 96}, + [2523] = {.lex_state = 96}, + [2524] = {.lex_state = 96}, + [2525] = {.lex_state = 96}, + [2526] = {.lex_state = 96}, + [2527] = {.lex_state = 96}, + [2528] = {.lex_state = 96}, + [2529] = {.lex_state = 96}, + [2530] = {.lex_state = 0}, + [2531] = {.lex_state = 0}, + [2532] = {.lex_state = 0}, + [2533] = {.lex_state = 0}, + [2534] = {.lex_state = 96}, + [2535] = {.lex_state = 0}, + [2536] = {.lex_state = 0}, + [2537] = {.lex_state = 53}, + [2538] = {.lex_state = 0, .external_lex_state = 7}, + [2539] = {.lex_state = 96}, + [2540] = {.lex_state = 96}, + [2541] = {.lex_state = 96}, + [2542] = {.lex_state = 0}, + [2543] = {.lex_state = 53}, + [2544] = {.lex_state = 96}, + [2545] = {.lex_state = 0}, + [2546] = {.lex_state = 96}, + [2547] = {.lex_state = 96}, + [2548] = {.lex_state = 96}, + [2549] = {.lex_state = 0}, + [2550] = {.lex_state = 96}, + [2551] = {.lex_state = 0}, + [2552] = {.lex_state = 96}, + [2553] = {.lex_state = 96}, + [2554] = {.lex_state = 96}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8278,6 +9580,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_escape_sequence] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), [anon_sym_func] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_asort] = ACTIONS(1), + [anon_sym_asorti] = ACTIONS(1), + [anon_sym_bindtextdomain] = ACTIONS(1), + [anon_sym_compl] = ACTIONS(1), + [anon_sym_cos] = ACTIONS(1), + [anon_sym_dcgettext] = ACTIONS(1), + [anon_sym_dcngettext] = ACTIONS(1), + [anon_sym_exp] = ACTIONS(1), + [anon_sym_gensub] = ACTIONS(1), + [anon_sym_gsub] = ACTIONS(1), + [anon_sym_index] = ACTIONS(1), + [anon_sym_int] = ACTIONS(1), + [anon_sym_isarray] = ACTIONS(1), + [anon_sym_length] = ACTIONS(1), + [anon_sym_log] = ACTIONS(1), + [anon_sym_lshift] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [anon_sym_mktime] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_patsplit] = ACTIONS(1), + [anon_sym_rand] = ACTIONS(1), + [anon_sym_rshift] = ACTIONS(1), + [anon_sym_sin] = ACTIONS(1), + [anon_sym_split] = ACTIONS(1), + [anon_sym_sprintf] = ACTIONS(1), + [anon_sym_sqrt] = ACTIONS(1), + [anon_sym_srand] = ACTIONS(1), + [anon_sym_strftime] = ACTIONS(1), + [anon_sym_strtonum] = ACTIONS(1), + [anon_sym_sub] = ACTIONS(1), + [anon_sym_substr] = ACTIONS(1), + [anon_sym_systime] = ACTIONS(1), + [anon_sym_tolower] = ACTIONS(1), + [anon_sym_toupper] = ACTIONS(1), + [anon_sym_typeof] = ACTIONS(1), + [anon_sym_xor] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), [sym_concatenating_space] = ACTIONS(1), [sym__if_else_separator] = ACTIONS(1), @@ -8285,40 +9624,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__func_call] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2217), - [sym_rule] = STATE(301), - [sym_pattern] = STATE(1632), - [sym_range_pattern] = STATE(1685), - [sym__special_pattern] = STATE(1685), - [sym_directive] = STATE(301), - [sym__getline_exp] = STATE(596), - [sym_getline_input] = STATE(596), - [sym_getline_file] = STATE(596), - [sym_block] = STATE(1693), - [sym__exp] = STATE(596), - [sym_ternary_exp] = STATE(567), - [sym_binary_exp] = STATE(567), - [sym__binary_in] = STATE(588), - [sym_unary_exp] = STATE(567), - [sym_update_exp] = STATE(596), - [sym_assignment_exp] = STATE(596), - [sym_piped_io_exp] = STATE(596), - [sym_string_concat] = STATE(567), - [sym_field_ref] = STATE(519), - [sym_array_ref] = STATE(483), - [sym_regex] = STATE(596), - [sym_regex_constant] = STATE(596), - [sym_grouping] = STATE(567), - [sym__primitive] = STATE(567), - [sym_namespace] = STATE(2209), - [sym_ns_qualified_name] = STATE(448), - [sym_number] = STATE(567), - [sym_string] = STATE(567), - [sym_func_def] = STATE(301), - [sym_func_call] = STATE(567), - [sym_indirect_func_call] = STATE(596), - [sym_comment] = STATE(301), - [aux_sym_program_repeat1] = STATE(301), + [sym_program] = STATE(2375), + [sym_rule] = STATE(302), + [sym_pattern] = STATE(1289), + [sym_range_pattern] = STATE(1297), + [sym__special_pattern] = STATE(1297), + [sym_directive] = STATE(302), + [sym__getline_exp] = STATE(618), + [sym_getline_input] = STATE(618), + [sym_getline_file] = STATE(618), + [sym_block] = STATE(1295), + [sym__exp] = STATE(618), + [sym_ternary_exp] = STATE(580), + [sym_binary_exp] = STATE(580), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(580), + [sym_update_exp] = STATE(618), + [sym_assignment_exp] = STATE(618), + [sym_piped_io_exp] = STATE(618), + [sym_string_concat] = STATE(580), + [sym_field_ref] = STATE(498), + [sym_array_ref] = STATE(490), + [sym_regex] = STATE(618), + [sym_regex_constant] = STATE(618), + [sym_grouping] = STATE(580), + [sym__primitive] = STATE(580), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(403), + [sym_number] = STATE(580), + [sym_string] = STATE(580), + [sym_func_def] = STATE(302), + [sym_func_call] = STATE(580), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(618), + [sym_comment] = STATE(302), + [aux_sym_program_repeat1] = STATE(302), [ts_builtin_sym_end] = ACTIONS(3), [sym_identifier] = ACTIONS(5), [anon_sym_BEGIN] = ACTIONS(7), @@ -8344,3488 +9684,5235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(33), [anon_sym_function] = ACTIONS(35), [anon_sym_func] = ACTIONS(35), - [anon_sym_POUND] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + [anon_sym_POUND] = ACTIONS(39), }, [2] = { - [sym__statement] = STATE(1221), + [sym__statement] = STATE(1178), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1221), - [sym_if_statement] = STATE(1221), - [sym_while_statement] = STATE(1221), - [sym_do_while_statement] = STATE(1221), - [sym_for_statement] = STATE(1221), - [sym_for_in_statement] = STATE(1221), - [sym_delete_statement] = STATE(1221), - [sym_exit_statement] = STATE(1221), - [sym_return_statement] = STATE(1221), - [sym_switch_statement] = STATE(1221), - [sym__io_statement] = STATE(1221), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1221), - [sym_piped_io_statement] = STATE(1221), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(41), - [anon_sym_LF] = ACTIONS(41), - [anon_sym_CR_LF] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(53), - [sym_continue_statement] = ACTIONS(53), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_RBRACE] = ACTIONS(41), - [anon_sym_case] = ACTIONS(41), - [anon_sym_default] = ACTIONS(41), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(53), - [sym_nextfile_statement] = ACTIONS(53), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_POUND] = ACTIONS(41), - [sym__if_else_separator] = ACTIONS(83), + [sym__control_statement] = STATE(1178), + [sym_if_statement] = STATE(1178), + [sym_while_statement] = STATE(1178), + [sym_do_while_statement] = STATE(1178), + [sym_for_statement] = STATE(1178), + [sym_for_in_statement] = STATE(1178), + [sym_delete_statement] = STATE(1178), + [sym_exit_statement] = STATE(1178), + [sym_return_statement] = STATE(1178), + [sym_switch_statement] = STATE(1178), + [sym__io_statement] = STATE(1178), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1178), + [sym_piped_io_statement] = STATE(1178), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_LF] = ACTIONS(43), + [anon_sym_CR_LF] = ACTIONS(43), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(55), + [sym_continue_statement] = ACTIONS(55), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_RBRACE] = ACTIONS(43), + [anon_sym_case] = ACTIONS(43), + [anon_sym_default] = ACTIONS(43), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(55), + [sym_nextfile_statement] = ACTIONS(55), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(43), + [sym__if_else_separator] = ACTIONS(87), }, [3] = { - [sym__statement] = STATE(1410), - [sym__statement_separated] = STATE(1410), - [sym__control_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_while_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_for_in_statement] = STATE(1410), - [sym_delete_statement] = STATE(1410), - [sym_exit_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym__io_statement] = STATE(1410), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1410), - [sym_piped_io_statement] = STATE(1410), - [sym_block] = STATE(3), - [sym__block_content] = STATE(3), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym__statement] = STATE(1283), + [sym__statement_separated] = STATE(1283), + [sym__control_statement] = STATE(1283), + [sym_if_statement] = STATE(1283), + [sym_while_statement] = STATE(1283), + [sym_do_while_statement] = STATE(1283), + [sym_for_statement] = STATE(1283), + [sym_for_in_statement] = STATE(1283), + [sym_delete_statement] = STATE(1283), + [sym_exit_statement] = STATE(1283), + [sym_return_statement] = STATE(1283), + [sym_switch_statement] = STATE(1283), + [sym__io_statement] = STATE(1283), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1283), + [sym_piped_io_statement] = STATE(1283), + [sym_block] = STATE(8), + [sym__block_content] = STATE(8), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(3), - [aux_sym_block_repeat1] = STATE(3), - [sym_identifier] = ACTIONS(85), - [anon_sym_if] = ACTIONS(88), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_while] = ACTIONS(94), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(8), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(89), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), [anon_sym_do] = ACTIONS(97), - [anon_sym_for] = ACTIONS(100), - [sym_break_statement] = ACTIONS(103), - [sym_continue_statement] = ACTIONS(103), - [anon_sym_delete] = ACTIONS(106), - [anon_sym_exit] = ACTIONS(109), - [anon_sym_return] = ACTIONS(112), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_getline] = ACTIONS(123), - [sym_next_statement] = ACTIONS(103), - [sym_nextfile_statement] = ACTIONS(103), - [anon_sym_print] = ACTIONS(126), - [anon_sym_printf] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(132), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_PLUS_PLUS] = ACTIONS(141), - [anon_sym_DASH_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(144), - [anon_sym_AT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(150), - [aux_sym_number_token2] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(159), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(101), + [sym_continue_statement] = ACTIONS(101), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(101), + [sym_nextfile_statement] = ACTIONS(101), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [4] = { - [sym__statement] = STATE(1410), - [sym__statement_separated] = STATE(1410), - [sym__control_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_while_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_for_in_statement] = STATE(1410), - [sym_delete_statement] = STATE(1410), - [sym_exit_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym__io_statement] = STATE(1410), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1410), - [sym_piped_io_statement] = STATE(1410), - [sym_block] = STATE(9), - [sym__block_content] = STATE(9), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(9), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(162), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(174), - [sym_continue_statement] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(174), - [sym_nextfile_statement] = ACTIONS(174), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1247), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_while_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_for_in_statement] = STATE(1247), + [sym_delete_statement] = STATE(1247), + [sym_exit_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym__io_statement] = STATE(1247), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1247), + [sym_piped_io_statement] = STATE(1247), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_LF] = ACTIONS(43), + [anon_sym_CR_LF] = ACTIONS(43), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(153), + [sym_continue_statement] = ACTIONS(153), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(43), + [anon_sym_case] = ACTIONS(43), + [anon_sym_default] = ACTIONS(43), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(153), + [sym_nextfile_statement] = ACTIONS(153), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [anon_sym_AT] = ACTIONS(173), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(177), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(43), }, [5] = { - [sym__statement] = STATE(1410), - [sym__statement_separated] = STATE(1410), - [sym__control_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_while_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_for_in_statement] = STATE(1410), - [sym_delete_statement] = STATE(1410), - [sym_exit_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym__io_statement] = STATE(1410), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1410), - [sym_piped_io_statement] = STATE(1410), + [sym__statement] = STATE(1283), + [sym__statement_separated] = STATE(1283), + [sym__control_statement] = STATE(1283), + [sym_if_statement] = STATE(1283), + [sym_while_statement] = STATE(1283), + [sym_do_while_statement] = STATE(1283), + [sym_for_statement] = STATE(1283), + [sym_for_in_statement] = STATE(1283), + [sym_delete_statement] = STATE(1283), + [sym_exit_statement] = STATE(1283), + [sym_return_statement] = STATE(1283), + [sym_switch_statement] = STATE(1283), + [sym__io_statement] = STATE(1283), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1283), + [sym_piped_io_statement] = STATE(1283), [sym_block] = STATE(3), [sym__block_content] = STATE(3), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), [sym_comment] = STATE(3), [aux_sym_block_repeat1] = STATE(3), - [sym_identifier] = ACTIONS(162), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(174), - [sym_continue_statement] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(214), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(174), - [sym_nextfile_statement] = ACTIONS(174), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_identifier] = ACTIONS(89), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(101), + [sym_continue_statement] = ACTIONS(101), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(101), + [sym_nextfile_statement] = ACTIONS(101), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [6] = { - [sym__statement] = STATE(1410), - [sym__statement_separated] = STATE(1410), - [sym__control_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_while_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_for_in_statement] = STATE(1410), - [sym_delete_statement] = STATE(1410), - [sym_exit_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym__io_statement] = STATE(1410), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1410), - [sym_piped_io_statement] = STATE(1410), - [sym_block] = STATE(12), - [sym__block_content] = STATE(12), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym__statement] = STATE(1283), + [sym__statement_separated] = STATE(1283), + [sym__control_statement] = STATE(1283), + [sym_if_statement] = STATE(1283), + [sym_while_statement] = STATE(1283), + [sym_do_while_statement] = STATE(1283), + [sym_for_statement] = STATE(1283), + [sym_for_in_statement] = STATE(1283), + [sym_delete_statement] = STATE(1283), + [sym_exit_statement] = STATE(1283), + [sym_return_statement] = STATE(1283), + [sym_switch_statement] = STATE(1283), + [sym__io_statement] = STATE(1283), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1283), + [sym_piped_io_statement] = STATE(1283), + [sym_block] = STATE(7), + [sym__block_content] = STATE(7), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(12), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(162), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(174), - [sym_continue_statement] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(174), - [sym_nextfile_statement] = ACTIONS(174), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(7), + [aux_sym_block_repeat1] = STATE(7), + [sym_identifier] = ACTIONS(89), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(101), + [sym_continue_statement] = ACTIONS(101), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(101), + [sym_nextfile_statement] = ACTIONS(101), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [7] = { - [sym__statement] = STATE(1410), - [sym__statement_separated] = STATE(1410), - [sym__control_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_while_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_for_in_statement] = STATE(1410), - [sym_delete_statement] = STATE(1410), - [sym_exit_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym__io_statement] = STATE(1410), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1410), - [sym_piped_io_statement] = STATE(1410), - [sym_block] = STATE(5), - [sym__block_content] = STATE(5), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym__statement] = STATE(1283), + [sym__statement_separated] = STATE(1283), + [sym__control_statement] = STATE(1283), + [sym_if_statement] = STATE(1283), + [sym_while_statement] = STATE(1283), + [sym_do_while_statement] = STATE(1283), + [sym_for_statement] = STATE(1283), + [sym_for_in_statement] = STATE(1283), + [sym_delete_statement] = STATE(1283), + [sym_exit_statement] = STATE(1283), + [sym_return_statement] = STATE(1283), + [sym_switch_statement] = STATE(1283), + [sym__io_statement] = STATE(1283), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1283), + [sym_piped_io_statement] = STATE(1283), + [sym_block] = STATE(8), + [sym__block_content] = STATE(8), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(5), - [aux_sym_block_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(162), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(174), - [sym_continue_statement] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(218), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(174), - [sym_nextfile_statement] = ACTIONS(174), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(8), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(89), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(101), + [sym_continue_statement] = ACTIONS(101), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(185), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(101), + [sym_nextfile_statement] = ACTIONS(101), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [8] = { - [sym__statement] = STATE(1410), - [sym__statement_separated] = STATE(1410), - [sym__control_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_while_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_for_in_statement] = STATE(1410), - [sym_delete_statement] = STATE(1410), - [sym_exit_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym__io_statement] = STATE(1410), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1410), - [sym_piped_io_statement] = STATE(1410), - [sym_block] = STATE(11), - [sym__block_content] = STATE(11), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym__statement] = STATE(1283), + [sym__statement_separated] = STATE(1283), + [sym__control_statement] = STATE(1283), + [sym_if_statement] = STATE(1283), + [sym_while_statement] = STATE(1283), + [sym_do_while_statement] = STATE(1283), + [sym_for_statement] = STATE(1283), + [sym_for_in_statement] = STATE(1283), + [sym_delete_statement] = STATE(1283), + [sym_exit_statement] = STATE(1283), + [sym_return_statement] = STATE(1283), + [sym_switch_statement] = STATE(1283), + [sym__io_statement] = STATE(1283), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1283), + [sym_piped_io_statement] = STATE(1283), + [sym_block] = STATE(8), + [sym__block_content] = STATE(8), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(11), - [aux_sym_block_repeat1] = STATE(11), - [sym_identifier] = ACTIONS(162), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(174), - [sym_continue_statement] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(220), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(174), - [sym_nextfile_statement] = ACTIONS(174), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(8), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(187), + [anon_sym_if] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_while] = ACTIONS(196), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(202), + [sym_break_statement] = ACTIONS(205), + [sym_continue_statement] = ACTIONS(205), + [anon_sym_delete] = ACTIONS(208), + [anon_sym_exit] = ACTIONS(211), + [anon_sym_return] = ACTIONS(214), + [anon_sym_switch] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_getline] = ACTIONS(225), + [sym_next_statement] = ACTIONS(205), + [sym_nextfile_statement] = ACTIONS(205), + [anon_sym_print] = ACTIONS(228), + [anon_sym_printf] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(240), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(246), + [anon_sym_AT] = ACTIONS(249), + [aux_sym_number_token1] = ACTIONS(252), + [aux_sym_number_token2] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(258), + [anon_sym_and] = ACTIONS(261), + [anon_sym_asort] = ACTIONS(261), + [anon_sym_asorti] = ACTIONS(261), + [anon_sym_bindtextdomain] = ACTIONS(261), + [anon_sym_compl] = ACTIONS(261), + [anon_sym_cos] = ACTIONS(261), + [anon_sym_dcgettext] = ACTIONS(261), + [anon_sym_dcngettext] = ACTIONS(261), + [anon_sym_exp] = ACTIONS(261), + [anon_sym_gensub] = ACTIONS(261), + [anon_sym_gsub] = ACTIONS(261), + [anon_sym_index] = ACTIONS(261), + [anon_sym_int] = ACTIONS(261), + [anon_sym_isarray] = ACTIONS(261), + [anon_sym_length] = ACTIONS(261), + [anon_sym_log] = ACTIONS(261), + [anon_sym_lshift] = ACTIONS(261), + [anon_sym_match] = ACTIONS(261), + [anon_sym_mktime] = ACTIONS(261), + [anon_sym_or] = ACTIONS(261), + [anon_sym_patsplit] = ACTIONS(261), + [anon_sym_rand] = ACTIONS(261), + [anon_sym_rshift] = ACTIONS(261), + [anon_sym_sin] = ACTIONS(261), + [anon_sym_split] = ACTIONS(261), + [anon_sym_sprintf] = ACTIONS(261), + [anon_sym_sqrt] = ACTIONS(261), + [anon_sym_srand] = ACTIONS(261), + [anon_sym_strftime] = ACTIONS(261), + [anon_sym_strtonum] = ACTIONS(261), + [anon_sym_sub] = ACTIONS(261), + [anon_sym_substr] = ACTIONS(261), + [anon_sym_systime] = ACTIONS(261), + [anon_sym_tolower] = ACTIONS(261), + [anon_sym_toupper] = ACTIONS(261), + [anon_sym_typeof] = ACTIONS(261), + [anon_sym_xor] = ACTIONS(261), + [anon_sym_POUND] = ACTIONS(264), }, [9] = { - [sym__statement] = STATE(1410), - [sym__statement_separated] = STATE(1410), - [sym__control_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_while_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_for_in_statement] = STATE(1410), - [sym_delete_statement] = STATE(1410), - [sym_exit_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym__io_statement] = STATE(1410), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1410), - [sym_piped_io_statement] = STATE(1410), - [sym_block] = STATE(3), - [sym__block_content] = STATE(3), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym__statement] = STATE(1283), + [sym__statement_separated] = STATE(1283), + [sym__control_statement] = STATE(1283), + [sym_if_statement] = STATE(1283), + [sym_while_statement] = STATE(1283), + [sym_do_while_statement] = STATE(1283), + [sym_for_statement] = STATE(1283), + [sym_for_in_statement] = STATE(1283), + [sym_delete_statement] = STATE(1283), + [sym_exit_statement] = STATE(1283), + [sym_return_statement] = STATE(1283), + [sym_switch_statement] = STATE(1283), + [sym__io_statement] = STATE(1283), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1283), + [sym_piped_io_statement] = STATE(1283), + [sym_block] = STATE(8), + [sym__block_content] = STATE(8), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(3), - [aux_sym_block_repeat1] = STATE(3), - [sym_identifier] = ACTIONS(162), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(174), - [sym_continue_statement] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(222), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(174), - [sym_nextfile_statement] = ACTIONS(174), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(8), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(89), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(101), + [sym_continue_statement] = ACTIONS(101), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(101), + [sym_nextfile_statement] = ACTIONS(101), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [10] = { - [sym__statement] = STATE(1320), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1320), - [sym_if_statement] = STATE(1320), - [sym_while_statement] = STATE(1320), - [sym_do_while_statement] = STATE(1320), - [sym_for_statement] = STATE(1320), - [sym_for_in_statement] = STATE(1320), - [sym_delete_statement] = STATE(1320), - [sym_exit_statement] = STATE(1320), - [sym_return_statement] = STATE(1320), - [sym_switch_statement] = STATE(1320), - [sym__io_statement] = STATE(1320), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1320), - [sym_piped_io_statement] = STATE(1320), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(41), - [anon_sym_LF] = ACTIONS(41), - [anon_sym_CR_LF] = ACTIONS(41), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(234), - [sym_continue_statement] = ACTIONS(234), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_RBRACE] = ACTIONS(41), - [anon_sym_case] = ACTIONS(41), - [anon_sym_default] = ACTIONS(41), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(234), - [sym_nextfile_statement] = ACTIONS(234), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(246), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(250), - [anon_sym_DASH_DASH] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(256), - [anon_sym_DQUOTE] = ACTIONS(258), - [anon_sym_POUND] = ACTIONS(41), + [sym__statement] = STATE(1283), + [sym__statement_separated] = STATE(1283), + [sym__control_statement] = STATE(1283), + [sym_if_statement] = STATE(1283), + [sym_while_statement] = STATE(1283), + [sym_do_while_statement] = STATE(1283), + [sym_for_statement] = STATE(1283), + [sym_for_in_statement] = STATE(1283), + [sym_delete_statement] = STATE(1283), + [sym_exit_statement] = STATE(1283), + [sym_return_statement] = STATE(1283), + [sym_switch_statement] = STATE(1283), + [sym__io_statement] = STATE(1283), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1283), + [sym_piped_io_statement] = STATE(1283), + [sym_block] = STATE(9), + [sym__block_content] = STATE(9), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(9), + [aux_sym_block_repeat1] = STATE(9), + [sym_identifier] = ACTIONS(89), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(101), + [sym_continue_statement] = ACTIONS(101), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(101), + [sym_nextfile_statement] = ACTIONS(101), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [11] = { - [sym__statement] = STATE(1410), - [sym__statement_separated] = STATE(1410), - [sym__control_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_while_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_for_in_statement] = STATE(1410), - [sym_delete_statement] = STATE(1410), - [sym_exit_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym__io_statement] = STATE(1410), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1410), - [sym_piped_io_statement] = STATE(1410), - [sym_block] = STATE(3), - [sym__block_content] = STATE(3), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym__statement] = STATE(1283), + [sym__statement_separated] = STATE(1283), + [sym__control_statement] = STATE(1283), + [sym_if_statement] = STATE(1283), + [sym_while_statement] = STATE(1283), + [sym_do_while_statement] = STATE(1283), + [sym_for_statement] = STATE(1283), + [sym_for_in_statement] = STATE(1283), + [sym_delete_statement] = STATE(1283), + [sym_exit_statement] = STATE(1283), + [sym_return_statement] = STATE(1283), + [sym_switch_statement] = STATE(1283), + [sym__io_statement] = STATE(1283), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1283), + [sym_piped_io_statement] = STATE(1283), + [sym_block] = STATE(12), + [sym__block_content] = STATE(12), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(3), - [aux_sym_block_repeat1] = STATE(3), - [sym_identifier] = ACTIONS(162), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(174), - [sym_continue_statement] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(174), - [sym_nextfile_statement] = ACTIONS(174), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(12), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(89), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(101), + [sym_continue_statement] = ACTIONS(101), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(101), + [sym_nextfile_statement] = ACTIONS(101), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [12] = { - [sym__statement] = STATE(1410), - [sym__statement_separated] = STATE(1410), - [sym__control_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_while_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_for_in_statement] = STATE(1410), - [sym_delete_statement] = STATE(1410), - [sym_exit_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym__io_statement] = STATE(1410), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1410), - [sym_piped_io_statement] = STATE(1410), - [sym_block] = STATE(3), - [sym__block_content] = STATE(3), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym__statement] = STATE(1283), + [sym__statement_separated] = STATE(1283), + [sym__control_statement] = STATE(1283), + [sym_if_statement] = STATE(1283), + [sym_while_statement] = STATE(1283), + [sym_do_while_statement] = STATE(1283), + [sym_for_statement] = STATE(1283), + [sym_for_in_statement] = STATE(1283), + [sym_delete_statement] = STATE(1283), + [sym_exit_statement] = STATE(1283), + [sym_return_statement] = STATE(1283), + [sym_switch_statement] = STATE(1283), + [sym__io_statement] = STATE(1283), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1283), + [sym_piped_io_statement] = STATE(1283), + [sym_block] = STATE(8), + [sym__block_content] = STATE(8), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(3), - [aux_sym_block_repeat1] = STATE(3), - [sym_identifier] = ACTIONS(162), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(174), - [sym_continue_statement] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(262), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(174), - [sym_nextfile_statement] = ACTIONS(174), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(8), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(89), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(101), + [sym_continue_statement] = ACTIONS(101), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(101), + [sym_nextfile_statement] = ACTIONS(101), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [13] = { - [sym__statement] = STATE(1359), - [sym__statement_separated] = STATE(1359), - [sym__control_statement] = STATE(1359), - [sym_if_statement] = STATE(1359), - [sym_while_statement] = STATE(1359), - [sym_do_while_statement] = STATE(1359), - [sym_for_statement] = STATE(1359), - [sym_for_in_statement] = STATE(1359), - [sym_delete_statement] = STATE(1359), - [sym_exit_statement] = STATE(1359), - [sym_return_statement] = STATE(1359), - [sym_switch_statement] = STATE(1359), - [sym__io_statement] = STATE(1359), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1359), - [sym_piped_io_statement] = STATE(1359), - [sym_block] = STATE(1358), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(71), - [aux_sym_if_statement_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(264), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(266), - [sym_continue_statement] = ACTIONS(266), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(266), - [sym_nextfile_statement] = ACTIONS(266), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(2072), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(2072), + [sym_if_statement] = STATE(2072), + [sym_while_statement] = STATE(2072), + [sym_do_while_statement] = STATE(2072), + [sym_for_statement] = STATE(2072), + [sym_for_in_statement] = STATE(2072), + [sym_delete_statement] = STATE(2072), + [sym_exit_statement] = STATE(2072), + [sym_return_statement] = STATE(2072), + [sym_switch_statement] = STATE(2072), + [sym__io_statement] = STATE(2072), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(2072), + [sym_piped_io_statement] = STATE(2072), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(277), + [sym_continue_statement] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_case] = ACTIONS(281), + [anon_sym_default] = ACTIONS(281), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(277), + [sym_nextfile_statement] = ACTIONS(277), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [14] = { - [sym__statement] = STATE(1366), - [sym__statement_separated] = STATE(1366), - [sym__control_statement] = STATE(1366), - [sym_if_statement] = STATE(1366), - [sym_while_statement] = STATE(1366), - [sym_do_while_statement] = STATE(1366), - [sym_for_statement] = STATE(1366), - [sym_for_in_statement] = STATE(1366), - [sym_delete_statement] = STATE(1366), - [sym_exit_statement] = STATE(1366), - [sym_return_statement] = STATE(1366), - [sym_switch_statement] = STATE(1366), - [sym__io_statement] = STATE(1366), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1366), - [sym_piped_io_statement] = STATE(1366), - [sym_block] = STATE(1364), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(270), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(272), - [sym_continue_statement] = ACTIONS(272), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(272), - [sym_nextfile_statement] = ACTIONS(272), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1171), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1171), + [sym_if_statement] = STATE(1171), + [sym_while_statement] = STATE(1171), + [sym_do_while_statement] = STATE(1171), + [sym_for_statement] = STATE(1171), + [sym_for_in_statement] = STATE(1171), + [sym_delete_statement] = STATE(1171), + [sym_exit_statement] = STATE(1171), + [sym_return_statement] = STATE(1171), + [sym_switch_statement] = STATE(1171), + [sym__io_statement] = STATE(1171), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1171), + [sym_piped_io_statement] = STATE(1171), + [sym_block] = STATE(1173), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(89), + [aux_sym_if_statement_repeat1] = STATE(89), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(309), + [sym_continue_statement] = ACTIONS(309), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(309), + [sym_nextfile_statement] = ACTIONS(309), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [15] = { - [sym__statement] = STATE(1361), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1361), - [sym_if_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [sym_do_while_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_for_in_statement] = STATE(1361), - [sym_delete_statement] = STATE(1361), - [sym_exit_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym__io_statement] = STATE(1361), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1361), - [sym_piped_io_statement] = STATE(1361), - [sym_block] = STATE(1362), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(274), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(278), - [sym_continue_statement] = ACTIONS(278), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(278), - [sym_nextfile_statement] = ACTIONS(278), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1275), + [sym__statement_separated] = STATE(1275), + [sym__control_statement] = STATE(1275), + [sym_if_statement] = STATE(1275), + [sym_while_statement] = STATE(1275), + [sym_do_while_statement] = STATE(1275), + [sym_for_statement] = STATE(1275), + [sym_for_in_statement] = STATE(1275), + [sym_delete_statement] = STATE(1275), + [sym_exit_statement] = STATE(1275), + [sym_return_statement] = STATE(1275), + [sym_switch_statement] = STATE(1275), + [sym__io_statement] = STATE(1275), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1275), + [sym_piped_io_statement] = STATE(1275), + [sym_block] = STATE(1279), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(351), + [sym_continue_statement] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(351), + [sym_nextfile_statement] = ACTIONS(351), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [16] = { - [sym__statement] = STATE(1363), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1363), - [sym_if_statement] = STATE(1363), - [sym_while_statement] = STATE(1363), - [sym_do_while_statement] = STATE(1363), - [sym_for_statement] = STATE(1363), - [sym_for_in_statement] = STATE(1363), - [sym_delete_statement] = STATE(1363), - [sym_exit_statement] = STATE(1363), - [sym_return_statement] = STATE(1363), - [sym_switch_statement] = STATE(1363), - [sym__io_statement] = STATE(1363), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1363), - [sym_piped_io_statement] = STATE(1363), - [sym_block] = STATE(1365), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(294), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(296), - [sym_continue_statement] = ACTIONS(296), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(296), - [sym_nextfile_statement] = ACTIONS(296), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1207), + [sym__statement_separated] = STATE(1207), + [sym__control_statement] = STATE(1207), + [sym_if_statement] = STATE(1207), + [sym_while_statement] = STATE(1207), + [sym_do_while_statement] = STATE(1207), + [sym_for_statement] = STATE(1207), + [sym_for_in_statement] = STATE(1207), + [sym_delete_statement] = STATE(1207), + [sym_exit_statement] = STATE(1207), + [sym_return_statement] = STATE(1207), + [sym_switch_statement] = STATE(1207), + [sym__io_statement] = STATE(1207), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1207), + [sym_piped_io_statement] = STATE(1207), + [sym_block] = STATE(1189), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(385), + [sym_continue_statement] = ACTIONS(385), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(385), + [sym_nextfile_statement] = ACTIONS(385), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [17] = { - [sym__statement] = STATE(1369), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1369), - [sym_if_statement] = STATE(1369), - [sym_while_statement] = STATE(1369), - [sym_do_while_statement] = STATE(1369), - [sym_for_statement] = STATE(1369), - [sym_for_in_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_exit_statement] = STATE(1369), - [sym_return_statement] = STATE(1369), - [sym_switch_statement] = STATE(1369), - [sym__io_statement] = STATE(1369), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1369), - [sym_piped_io_statement] = STATE(1369), - [sym_block] = STATE(1371), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(110), - [aux_sym_if_statement_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(298), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(300), - [sym_continue_statement] = ACTIONS(300), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(300), - [sym_nextfile_statement] = ACTIONS(300), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(2060), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(2060), + [sym_if_statement] = STATE(2060), + [sym_while_statement] = STATE(2060), + [sym_do_while_statement] = STATE(2060), + [sym_for_statement] = STATE(2060), + [sym_for_in_statement] = STATE(2060), + [sym_delete_statement] = STATE(2060), + [sym_exit_statement] = STATE(2060), + [sym_return_statement] = STATE(2060), + [sym_switch_statement] = STATE(2060), + [sym__io_statement] = STATE(2060), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(2060), + [sym_piped_io_statement] = STATE(2060), + [sym_block] = STATE(2059), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(391), + [sym_continue_statement] = ACTIONS(391), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(391), + [sym_nextfile_statement] = ACTIONS(391), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [18] = { - [sym__statement] = STATE(1276), - [sym__statement_separated] = STATE(1276), - [sym__control_statement] = STATE(1276), - [sym_if_statement] = STATE(1276), - [sym_while_statement] = STATE(1276), - [sym_do_while_statement] = STATE(1276), - [sym_for_statement] = STATE(1276), - [sym_for_in_statement] = STATE(1276), - [sym_delete_statement] = STATE(1276), - [sym_exit_statement] = STATE(1276), - [sym_return_statement] = STATE(1276), - [sym_switch_statement] = STATE(1276), - [sym__io_statement] = STATE(1276), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1276), - [sym_piped_io_statement] = STATE(1276), - [sym_block] = STATE(1275), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(314), - [sym_continue_statement] = ACTIONS(314), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(314), - [sym_nextfile_statement] = ACTIONS(314), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(2065), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(2065), + [sym_if_statement] = STATE(2065), + [sym_while_statement] = STATE(2065), + [sym_do_while_statement] = STATE(2065), + [sym_for_statement] = STATE(2065), + [sym_for_in_statement] = STATE(2065), + [sym_delete_statement] = STATE(2065), + [sym_exit_statement] = STATE(2065), + [sym_return_statement] = STATE(2065), + [sym_switch_statement] = STATE(2065), + [sym__io_statement] = STATE(2065), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(2065), + [sym_piped_io_statement] = STATE(2065), + [sym_block] = STATE(2066), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(405), + [sym_continue_statement] = ACTIONS(405), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(405), + [sym_nextfile_statement] = ACTIONS(405), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [19] = { - [sym__statement] = STATE(1341), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1341), - [sym_if_statement] = STATE(1341), - [sym_while_statement] = STATE(1341), - [sym_do_while_statement] = STATE(1341), - [sym_for_statement] = STATE(1341), - [sym_for_in_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_exit_statement] = STATE(1341), - [sym_return_statement] = STATE(1341), - [sym_switch_statement] = STATE(1341), - [sym__io_statement] = STATE(1341), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1341), - [sym_piped_io_statement] = STATE(1341), - [sym_block] = STATE(1305), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(358), - [sym_continue_statement] = ACTIONS(358), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(358), - [sym_nextfile_statement] = ACTIONS(358), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1198), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1198), + [sym_if_statement] = STATE(1198), + [sym_while_statement] = STATE(1198), + [sym_do_while_statement] = STATE(1198), + [sym_for_statement] = STATE(1198), + [sym_for_in_statement] = STATE(1198), + [sym_delete_statement] = STATE(1198), + [sym_exit_statement] = STATE(1198), + [sym_return_statement] = STATE(1198), + [sym_switch_statement] = STATE(1198), + [sym__io_statement] = STATE(1198), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1198), + [sym_piped_io_statement] = STATE(1198), + [sym_block] = STATE(1195), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(409), + [sym_continue_statement] = ACTIONS(409), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(409), + [sym_nextfile_statement] = ACTIONS(409), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [20] = { - [sym__statement] = STATE(1225), + [sym__statement] = STATE(1194), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1225), - [sym_if_statement] = STATE(1225), - [sym_while_statement] = STATE(1225), - [sym_do_while_statement] = STATE(1225), - [sym_for_statement] = STATE(1225), - [sym_for_in_statement] = STATE(1225), - [sym_delete_statement] = STATE(1225), - [sym_exit_statement] = STATE(1225), - [sym_return_statement] = STATE(1225), - [sym_switch_statement] = STATE(1225), - [sym__io_statement] = STATE(1225), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1225), - [sym_piped_io_statement] = STATE(1225), - [sym_block] = STATE(1224), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(25), - [aux_sym_if_statement_repeat1] = STATE(25), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(382), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(386), - [sym_continue_statement] = ACTIONS(386), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(386), - [sym_nextfile_statement] = ACTIONS(386), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1194), + [sym_if_statement] = STATE(1194), + [sym_while_statement] = STATE(1194), + [sym_do_while_statement] = STATE(1194), + [sym_for_statement] = STATE(1194), + [sym_for_in_statement] = STATE(1194), + [sym_delete_statement] = STATE(1194), + [sym_exit_statement] = STATE(1194), + [sym_return_statement] = STATE(1194), + [sym_switch_statement] = STATE(1194), + [sym__io_statement] = STATE(1194), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1194), + [sym_piped_io_statement] = STATE(1194), + [sym_block] = STATE(1193), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(19), + [aux_sym_if_statement_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(413), + [sym_continue_statement] = ACTIONS(413), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(413), + [sym_nextfile_statement] = ACTIONS(413), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [21] = { - [sym__statement] = STATE(1341), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1341), - [sym_if_statement] = STATE(1341), - [sym_while_statement] = STATE(1341), - [sym_do_while_statement] = STATE(1341), - [sym_for_statement] = STATE(1341), - [sym_for_in_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_exit_statement] = STATE(1341), - [sym_return_statement] = STATE(1341), - [sym_switch_statement] = STATE(1341), - [sym__io_statement] = STATE(1341), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1341), - [sym_piped_io_statement] = STATE(1341), - [sym_block] = STATE(1305), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(358), - [sym_continue_statement] = ACTIONS(358), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(358), - [sym_nextfile_statement] = ACTIONS(358), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1192), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_while_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_for_in_statement] = STATE(1192), + [sym_delete_statement] = STATE(1192), + [sym_exit_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym__io_statement] = STATE(1192), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1192), + [sym_piped_io_statement] = STATE(1192), + [sym_block] = STATE(1191), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(417), + [sym_continue_statement] = ACTIONS(417), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(417), + [sym_nextfile_statement] = ACTIONS(417), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [22] = { - [sym__statement] = STATE(1373), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1373), - [sym_if_statement] = STATE(1373), - [sym_while_statement] = STATE(1373), - [sym_do_while_statement] = STATE(1373), - [sym_for_statement] = STATE(1373), - [sym_for_in_statement] = STATE(1373), - [sym_delete_statement] = STATE(1373), - [sym_exit_statement] = STATE(1373), - [sym_return_statement] = STATE(1373), - [sym_switch_statement] = STATE(1373), - [sym__io_statement] = STATE(1373), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1373), - [sym_piped_io_statement] = STATE(1373), - [sym_block] = STATE(1299), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(15), - [aux_sym_if_statement_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(404), - [sym_continue_statement] = ACTIONS(404), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(404), - [sym_nextfile_statement] = ACTIONS(404), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1207), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1207), + [sym_if_statement] = STATE(1207), + [sym_while_statement] = STATE(1207), + [sym_do_while_statement] = STATE(1207), + [sym_for_statement] = STATE(1207), + [sym_for_in_statement] = STATE(1207), + [sym_delete_statement] = STATE(1207), + [sym_exit_statement] = STATE(1207), + [sym_return_statement] = STATE(1207), + [sym_switch_statement] = STATE(1207), + [sym__io_statement] = STATE(1207), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1207), + [sym_piped_io_statement] = STATE(1207), + [sym_block] = STATE(1189), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(385), + [sym_continue_statement] = ACTIONS(385), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(385), + [sym_nextfile_statement] = ACTIONS(385), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [23] = { - [sym__statement] = STATE(1370), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1370), - [sym_if_statement] = STATE(1370), - [sym_while_statement] = STATE(1370), - [sym_do_while_statement] = STATE(1370), - [sym_for_statement] = STATE(1370), - [sym_for_in_statement] = STATE(1370), - [sym_delete_statement] = STATE(1370), - [sym_exit_statement] = STATE(1370), - [sym_return_statement] = STATE(1370), - [sym_switch_statement] = STATE(1370), - [sym__io_statement] = STATE(1370), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1370), - [sym_piped_io_statement] = STATE(1370), - [sym_block] = STATE(1367), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(408), - [sym_continue_statement] = ACTIONS(408), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(408), - [sym_nextfile_statement] = ACTIONS(408), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1162), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_while_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_for_in_statement] = STATE(1162), + [sym_delete_statement] = STATE(1162), + [sym_exit_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym__io_statement] = STATE(1162), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1162), + [sym_piped_io_statement] = STATE(1162), + [sym_block] = STATE(1186), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(421), + [sym_continue_statement] = ACTIONS(421), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(421), + [sym_nextfile_statement] = ACTIONS(421), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [24] = { - [sym__statement] = STATE(1346), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_do_while_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_for_in_statement] = STATE(1346), - [sym_delete_statement] = STATE(1346), - [sym_exit_statement] = STATE(1346), - [sym_return_statement] = STATE(1346), - [sym_switch_statement] = STATE(1346), - [sym__io_statement] = STATE(1346), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1346), - [sym_piped_io_statement] = STATE(1346), - [sym_block] = STATE(1347), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), + [sym__statement] = STATE(1181), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1181), + [sym_if_statement] = STATE(1181), + [sym_while_statement] = STATE(1181), + [sym_do_while_statement] = STATE(1181), + [sym_for_statement] = STATE(1181), + [sym_for_in_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_exit_statement] = STATE(1181), + [sym_return_statement] = STATE(1181), + [sym_switch_statement] = STATE(1181), + [sym__io_statement] = STATE(1181), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1181), + [sym_piped_io_statement] = STATE(1181), + [sym_block] = STATE(1176), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), [sym_comment] = STATE(21), [aux_sym_if_statement_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(412), - [sym_continue_statement] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(412), - [sym_nextfile_statement] = ACTIONS(412), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(425), + [sym_continue_statement] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(425), + [sym_nextfile_statement] = ACTIONS(425), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [25] = { - [sym__statement] = STATE(1229), + [sym__statement] = STATE(1175), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_while_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_delete_statement] = STATE(1229), - [sym_exit_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym__io_statement] = STATE(1229), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1229), - [sym_piped_io_statement] = STATE(1229), - [sym_block] = STATE(1228), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(416), - [sym_continue_statement] = ACTIONS(416), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(416), - [sym_nextfile_statement] = ACTIONS(416), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1175), + [sym_if_statement] = STATE(1175), + [sym_while_statement] = STATE(1175), + [sym_do_while_statement] = STATE(1175), + [sym_for_statement] = STATE(1175), + [sym_for_in_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_exit_statement] = STATE(1175), + [sym_return_statement] = STATE(1175), + [sym_switch_statement] = STATE(1175), + [sym__io_statement] = STATE(1175), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1175), + [sym_piped_io_statement] = STATE(1175), + [sym_block] = STATE(1164), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(22), + [aux_sym_if_statement_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(429), + [sym_continue_statement] = ACTIONS(429), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(429), + [sym_nextfile_statement] = ACTIONS(429), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [26] = { - [sym__statement] = STATE(1274), - [sym__statement_separated] = STATE(1274), - [sym__control_statement] = STATE(1274), - [sym_if_statement] = STATE(1274), - [sym_while_statement] = STATE(1274), - [sym_do_while_statement] = STATE(1274), - [sym_for_statement] = STATE(1274), - [sym_for_in_statement] = STATE(1274), - [sym_delete_statement] = STATE(1274), - [sym_exit_statement] = STATE(1274), - [sym_return_statement] = STATE(1274), - [sym_switch_statement] = STATE(1274), - [sym__io_statement] = STATE(1274), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1274), - [sym_piped_io_statement] = STATE(1274), - [sym_block] = STATE(1272), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(420), - [sym_continue_statement] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(420), - [sym_nextfile_statement] = ACTIONS(420), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1174), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1174), + [sym_if_statement] = STATE(1174), + [sym_while_statement] = STATE(1174), + [sym_do_while_statement] = STATE(1174), + [sym_for_statement] = STATE(1174), + [sym_for_in_statement] = STATE(1174), + [sym_delete_statement] = STATE(1174), + [sym_exit_statement] = STATE(1174), + [sym_return_statement] = STATE(1174), + [sym_switch_statement] = STATE(1174), + [sym__io_statement] = STATE(1174), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1174), + [sym_piped_io_statement] = STATE(1174), + [sym_block] = STATE(1188), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(433), + [sym_continue_statement] = ACTIONS(433), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(433), + [sym_nextfile_statement] = ACTIONS(433), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [27] = { - [sym__statement] = STATE(1232), + [sym__statement] = STATE(1180), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_while_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_delete_statement] = STATE(1232), - [sym_exit_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym__io_statement] = STATE(1232), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1232), - [sym_piped_io_statement] = STATE(1232), - [sym_block] = STATE(1231), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(28), - [aux_sym_if_statement_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(424), - [sym_continue_statement] = ACTIONS(424), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(424), - [sym_nextfile_statement] = ACTIONS(424), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1180), + [sym_if_statement] = STATE(1180), + [sym_while_statement] = STATE(1180), + [sym_do_while_statement] = STATE(1180), + [sym_for_statement] = STATE(1180), + [sym_for_in_statement] = STATE(1180), + [sym_delete_statement] = STATE(1180), + [sym_exit_statement] = STATE(1180), + [sym_return_statement] = STATE(1180), + [sym_switch_statement] = STATE(1180), + [sym__io_statement] = STATE(1180), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1180), + [sym_piped_io_statement] = STATE(1180), + [sym_block] = STATE(1200), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(437), + [sym_continue_statement] = ACTIONS(437), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(437), + [sym_nextfile_statement] = ACTIONS(437), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [28] = { - [sym__statement] = STATE(1239), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_do_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_for_in_statement] = STATE(1239), - [sym_delete_statement] = STATE(1239), - [sym_exit_statement] = STATE(1239), - [sym_return_statement] = STATE(1239), - [sym_switch_statement] = STATE(1239), - [sym__io_statement] = STATE(1239), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1239), - [sym_piped_io_statement] = STATE(1239), - [sym_block] = STATE(1238), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(428), - [sym_continue_statement] = ACTIONS(428), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(428), - [sym_nextfile_statement] = ACTIONS(428), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1248), + [sym__statement_separated] = STATE(1248), + [sym__control_statement] = STATE(1248), + [sym_if_statement] = STATE(1248), + [sym_while_statement] = STATE(1248), + [sym_do_while_statement] = STATE(1248), + [sym_for_statement] = STATE(1248), + [sym_for_in_statement] = STATE(1248), + [sym_delete_statement] = STATE(1248), + [sym_exit_statement] = STATE(1248), + [sym_return_statement] = STATE(1248), + [sym_switch_statement] = STATE(1248), + [sym__io_statement] = STATE(1248), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1248), + [sym_piped_io_statement] = STATE(1248), + [sym_block] = STATE(1219), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(100), + [aux_sym_if_statement_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(441), + [sym_continue_statement] = ACTIONS(441), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(441), + [sym_nextfile_statement] = ACTIONS(441), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [29] = { - [sym__statement] = STATE(1940), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1940), - [sym_if_statement] = STATE(1940), - [sym_while_statement] = STATE(1940), - [sym_do_while_statement] = STATE(1940), - [sym_for_statement] = STATE(1940), - [sym_for_in_statement] = STATE(1940), - [sym_delete_statement] = STATE(1940), - [sym_exit_statement] = STATE(1940), - [sym_return_statement] = STATE(1940), - [sym_switch_statement] = STATE(1940), - [sym__io_statement] = STATE(1940), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1940), - [sym_piped_io_statement] = STATE(1940), - [sym_block] = STATE(1972), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(79), - [aux_sym_if_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(442), - [sym_continue_statement] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(442), - [sym_nextfile_statement] = ACTIONS(442), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1202), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_do_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_for_in_statement] = STATE(1202), + [sym_delete_statement] = STATE(1202), + [sym_exit_statement] = STATE(1202), + [sym_return_statement] = STATE(1202), + [sym_switch_statement] = STATE(1202), + [sym__io_statement] = STATE(1202), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1202), + [sym_piped_io_statement] = STATE(1202), + [sym_block] = STATE(1203), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(23), + [aux_sym_if_statement_repeat1] = STATE(23), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(447), + [sym_continue_statement] = ACTIONS(447), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(447), + [sym_nextfile_statement] = ACTIONS(447), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [30] = { - [sym__statement] = STATE(1366), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1366), - [sym_if_statement] = STATE(1366), - [sym_while_statement] = STATE(1366), - [sym_do_while_statement] = STATE(1366), - [sym_for_statement] = STATE(1366), - [sym_for_in_statement] = STATE(1366), - [sym_delete_statement] = STATE(1366), - [sym_exit_statement] = STATE(1366), - [sym_return_statement] = STATE(1366), - [sym_switch_statement] = STATE(1366), - [sym__io_statement] = STATE(1366), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1366), - [sym_piped_io_statement] = STATE(1366), - [sym_block] = STATE(1364), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(270), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(272), - [sym_continue_statement] = ACTIONS(272), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(272), - [sym_nextfile_statement] = ACTIONS(272), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1261), + [sym__statement_separated] = STATE(1261), + [sym__control_statement] = STATE(1261), + [sym_if_statement] = STATE(1261), + [sym_while_statement] = STATE(1261), + [sym_do_while_statement] = STATE(1261), + [sym_for_statement] = STATE(1261), + [sym_for_in_statement] = STATE(1261), + [sym_delete_statement] = STATE(1261), + [sym_exit_statement] = STATE(1261), + [sym_return_statement] = STATE(1261), + [sym_switch_statement] = STATE(1261), + [sym__io_statement] = STATE(1261), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1261), + [sym_piped_io_statement] = STATE(1261), + [sym_block] = STATE(1268), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(91), + [aux_sym_if_statement_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(449), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(451), + [sym_continue_statement] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(451), + [sym_nextfile_statement] = ACTIONS(451), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [31] = { - [sym__statement] = STATE(1845), + [sym__statement] = STATE(1204), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1845), - [sym_if_statement] = STATE(1845), - [sym_while_statement] = STATE(1845), - [sym_do_while_statement] = STATE(1845), - [sym_for_statement] = STATE(1845), - [sym_for_in_statement] = STATE(1845), - [sym_delete_statement] = STATE(1845), - [sym_exit_statement] = STATE(1845), - [sym_return_statement] = STATE(1845), - [sym_switch_statement] = STATE(1845), - [sym__io_statement] = STATE(1845), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1845), - [sym_piped_io_statement] = STATE(1845), - [sym_block] = STATE(1851), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(106), - [aux_sym_if_statement_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(468), - [sym_continue_statement] = ACTIONS(468), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(468), - [sym_nextfile_statement] = ACTIONS(468), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1204), + [sym_if_statement] = STATE(1204), + [sym_while_statement] = STATE(1204), + [sym_do_while_statement] = STATE(1204), + [sym_for_statement] = STATE(1204), + [sym_for_in_statement] = STATE(1204), + [sym_delete_statement] = STATE(1204), + [sym_exit_statement] = STATE(1204), + [sym_return_statement] = STATE(1204), + [sym_switch_statement] = STATE(1204), + [sym__io_statement] = STATE(1204), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1204), + [sym_piped_io_statement] = STATE(1204), + [sym_block] = STATE(1205), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(455), + [sym_continue_statement] = ACTIONS(455), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(455), + [sym_nextfile_statement] = ACTIONS(455), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [32] = { - [sym__statement] = STATE(1848), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1848), - [sym_if_statement] = STATE(1848), - [sym_while_statement] = STATE(1848), - [sym_do_while_statement] = STATE(1848), - [sym_for_statement] = STATE(1848), - [sym_for_in_statement] = STATE(1848), - [sym_delete_statement] = STATE(1848), - [sym_exit_statement] = STATE(1848), - [sym_return_statement] = STATE(1848), - [sym_switch_statement] = STATE(1848), - [sym__io_statement] = STATE(1848), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1848), - [sym_piped_io_statement] = STATE(1848), - [sym_block] = STATE(1852), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(472), - [sym_continue_statement] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(472), - [sym_nextfile_statement] = ACTIONS(472), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1198), + [sym__statement_separated] = STATE(1198), + [sym__control_statement] = STATE(1198), + [sym_if_statement] = STATE(1198), + [sym_while_statement] = STATE(1198), + [sym_do_while_statement] = STATE(1198), + [sym_for_statement] = STATE(1198), + [sym_for_in_statement] = STATE(1198), + [sym_delete_statement] = STATE(1198), + [sym_exit_statement] = STATE(1198), + [sym_return_statement] = STATE(1198), + [sym_switch_statement] = STATE(1198), + [sym__io_statement] = STATE(1198), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1198), + [sym_piped_io_statement] = STATE(1198), + [sym_block] = STATE(1195), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(409), + [sym_continue_statement] = ACTIONS(409), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(409), + [sym_nextfile_statement] = ACTIONS(409), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [33] = { - [sym__statement] = STATE(1359), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1359), - [sym_if_statement] = STATE(1359), - [sym_while_statement] = STATE(1359), - [sym_do_while_statement] = STATE(1359), - [sym_for_statement] = STATE(1359), - [sym_for_in_statement] = STATE(1359), - [sym_delete_statement] = STATE(1359), - [sym_exit_statement] = STATE(1359), - [sym_return_statement] = STATE(1359), - [sym_switch_statement] = STATE(1359), - [sym__io_statement] = STATE(1359), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1359), - [sym_piped_io_statement] = STATE(1359), - [sym_block] = STATE(1358), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(16), - [aux_sym_if_statement_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(264), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(266), - [sym_continue_statement] = ACTIONS(266), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(266), - [sym_nextfile_statement] = ACTIONS(266), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1206), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1206), + [sym_if_statement] = STATE(1206), + [sym_while_statement] = STATE(1206), + [sym_do_while_statement] = STATE(1206), + [sym_for_statement] = STATE(1206), + [sym_for_in_statement] = STATE(1206), + [sym_delete_statement] = STATE(1206), + [sym_exit_statement] = STATE(1206), + [sym_return_statement] = STATE(1206), + [sym_switch_statement] = STATE(1206), + [sym__io_statement] = STATE(1206), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1206), + [sym_piped_io_statement] = STATE(1206), + [sym_block] = STATE(1217), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(459), + [sym_continue_statement] = ACTIONS(459), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(459), + [sym_nextfile_statement] = ACTIONS(459), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [34] = { - [sym__statement] = STATE(1242), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_do_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_for_in_statement] = STATE(1242), - [sym_delete_statement] = STATE(1242), - [sym_exit_statement] = STATE(1242), - [sym_return_statement] = STATE(1242), - [sym_switch_statement] = STATE(1242), - [sym__io_statement] = STATE(1242), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1242), - [sym_piped_io_statement] = STATE(1242), - [sym_block] = STATE(1240), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(56), - [aux_sym_if_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(476), - [sym_continue_statement] = ACTIONS(476), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(476), - [sym_nextfile_statement] = ACTIONS(476), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1269), + [sym__statement_separated] = STATE(1269), + [sym__control_statement] = STATE(1269), + [sym_if_statement] = STATE(1269), + [sym_while_statement] = STATE(1269), + [sym_do_while_statement] = STATE(1269), + [sym_for_statement] = STATE(1269), + [sym_for_in_statement] = STATE(1269), + [sym_delete_statement] = STATE(1269), + [sym_exit_statement] = STATE(1269), + [sym_return_statement] = STATE(1269), + [sym_switch_statement] = STATE(1269), + [sym__io_statement] = STATE(1269), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1269), + [sym_piped_io_statement] = STATE(1269), + [sym_block] = STATE(1270), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(59), + [aux_sym_if_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(463), + [sym_continue_statement] = ACTIONS(463), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(463), + [sym_nextfile_statement] = ACTIONS(463), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [35] = { - [sym__statement] = STATE(1271), - [sym__statement_separated] = STATE(1271), - [sym__control_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_do_while_statement] = STATE(1271), - [sym_for_statement] = STATE(1271), - [sym_for_in_statement] = STATE(1271), - [sym_delete_statement] = STATE(1271), - [sym_exit_statement] = STATE(1271), - [sym_return_statement] = STATE(1271), - [sym_switch_statement] = STATE(1271), - [sym__io_statement] = STATE(1271), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1271), - [sym_piped_io_statement] = STATE(1271), - [sym_block] = STATE(1270), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(480), - [sym_continue_statement] = ACTIONS(480), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(480), - [sym_nextfile_statement] = ACTIONS(480), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1169), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1169), + [sym_if_statement] = STATE(1169), + [sym_while_statement] = STATE(1169), + [sym_do_while_statement] = STATE(1169), + [sym_for_statement] = STATE(1169), + [sym_for_in_statement] = STATE(1169), + [sym_delete_statement] = STATE(1169), + [sym_exit_statement] = STATE(1169), + [sym_return_statement] = STATE(1169), + [sym_switch_statement] = STATE(1169), + [sym__io_statement] = STATE(1169), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1169), + [sym_piped_io_statement] = STATE(1169), + [sym_block] = STATE(1184), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(26), + [aux_sym_if_statement_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(467), + [sym_continue_statement] = ACTIONS(467), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(467), + [sym_nextfile_statement] = ACTIONS(467), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [36] = { - [sym__statement] = STATE(1244), + [sym__statement] = STATE(1163), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1244), - [sym_if_statement] = STATE(1244), - [sym_while_statement] = STATE(1244), - [sym_do_while_statement] = STATE(1244), - [sym_for_statement] = STATE(1244), - [sym_for_in_statement] = STATE(1244), - [sym_delete_statement] = STATE(1244), - [sym_exit_statement] = STATE(1244), - [sym_return_statement] = STATE(1244), - [sym_switch_statement] = STATE(1244), - [sym__io_statement] = STATE(1244), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1244), - [sym_piped_io_statement] = STATE(1244), - [sym_block] = STATE(1243), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(61), - [aux_sym_if_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(484), - [sym_continue_statement] = ACTIONS(484), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(484), - [sym_nextfile_statement] = ACTIONS(484), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_do_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_for_in_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_exit_statement] = STATE(1163), + [sym_return_statement] = STATE(1163), + [sym_switch_statement] = STATE(1163), + [sym__io_statement] = STATE(1163), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1163), + [sym_piped_io_statement] = STATE(1163), + [sym_block] = STATE(1209), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(27), + [aux_sym_if_statement_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(471), + [sym_continue_statement] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(471), + [sym_nextfile_statement] = ACTIONS(471), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [37] = { - [sym__statement] = STATE(1357), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1357), - [sym_if_statement] = STATE(1357), - [sym_while_statement] = STATE(1357), - [sym_do_while_statement] = STATE(1357), - [sym_for_statement] = STATE(1357), - [sym_for_in_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_exit_statement] = STATE(1357), - [sym_return_statement] = STATE(1357), - [sym_switch_statement] = STATE(1357), - [sym__io_statement] = STATE(1357), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1357), - [sym_piped_io_statement] = STATE(1357), - [sym_block] = STATE(1356), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(488), - [sym_continue_statement] = ACTIONS(488), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(488), - [sym_nextfile_statement] = ACTIONS(488), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1190), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_while_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_delete_statement] = STATE(1190), + [sym_exit_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym__io_statement] = STATE(1190), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1190), + [sym_piped_io_statement] = STATE(1190), + [sym_block] = STATE(1212), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(31), + [aux_sym_if_statement_repeat1] = STATE(31), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(475), + [sym_continue_statement] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(475), + [sym_nextfile_statement] = ACTIONS(475), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [38] = { - [sym__statement] = STATE(1354), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1354), - [sym_if_statement] = STATE(1354), - [sym_while_statement] = STATE(1354), - [sym_do_while_statement] = STATE(1354), - [sym_for_statement] = STATE(1354), - [sym_for_in_statement] = STATE(1354), - [sym_delete_statement] = STATE(1354), - [sym_exit_statement] = STATE(1354), - [sym_return_statement] = STATE(1354), - [sym_switch_statement] = STATE(1354), - [sym__io_statement] = STATE(1354), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1354), - [sym_piped_io_statement] = STATE(1354), - [sym_block] = STATE(1352), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(492), - [sym_continue_statement] = ACTIONS(492), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(492), - [sym_nextfile_statement] = ACTIONS(492), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1187), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1187), + [sym_if_statement] = STATE(1187), + [sym_while_statement] = STATE(1187), + [sym_do_while_statement] = STATE(1187), + [sym_for_statement] = STATE(1187), + [sym_for_in_statement] = STATE(1187), + [sym_delete_statement] = STATE(1187), + [sym_exit_statement] = STATE(1187), + [sym_return_statement] = STATE(1187), + [sym_switch_statement] = STATE(1187), + [sym__io_statement] = STATE(1187), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1187), + [sym_piped_io_statement] = STATE(1187), + [sym_block] = STATE(1213), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(33), + [aux_sym_if_statement_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(479), + [sym_continue_statement] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(479), + [sym_nextfile_statement] = ACTIONS(479), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [39] = { - [sym__statement] = STATE(1340), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1340), - [sym_if_statement] = STATE(1340), - [sym_while_statement] = STATE(1340), - [sym_do_while_statement] = STATE(1340), - [sym_for_statement] = STATE(1340), - [sym_for_in_statement] = STATE(1340), - [sym_delete_statement] = STATE(1340), - [sym_exit_statement] = STATE(1340), - [sym_return_statement] = STATE(1340), - [sym_switch_statement] = STATE(1340), - [sym__io_statement] = STATE(1340), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1340), - [sym_piped_io_statement] = STATE(1340), - [sym_block] = STATE(1337), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(23), - [aux_sym_if_statement_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(496), - [sym_continue_statement] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(496), - [sym_nextfile_statement] = ACTIONS(496), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1272), + [sym__statement_separated] = STATE(1272), + [sym__control_statement] = STATE(1272), + [sym_if_statement] = STATE(1272), + [sym_while_statement] = STATE(1272), + [sym_do_while_statement] = STATE(1272), + [sym_for_statement] = STATE(1272), + [sym_for_in_statement] = STATE(1272), + [sym_delete_statement] = STATE(1272), + [sym_exit_statement] = STATE(1272), + [sym_return_statement] = STATE(1272), + [sym_switch_statement] = STATE(1272), + [sym__io_statement] = STATE(1272), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1272), + [sym_piped_io_statement] = STATE(1272), + [sym_block] = STATE(1273), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(46), + [aux_sym_if_statement_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(483), + [sym_continue_statement] = ACTIONS(483), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(483), + [sym_nextfile_statement] = ACTIONS(483), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [40] = { - [sym__statement] = STATE(1246), + [sym__statement] = STATE(1215), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1246), - [sym_if_statement] = STATE(1246), - [sym_while_statement] = STATE(1246), - [sym_do_while_statement] = STATE(1246), - [sym_for_statement] = STATE(1246), - [sym_for_in_statement] = STATE(1246), - [sym_delete_statement] = STATE(1246), - [sym_exit_statement] = STATE(1246), - [sym_return_statement] = STATE(1246), - [sym_switch_statement] = STATE(1246), - [sym__io_statement] = STATE(1246), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1246), - [sym_piped_io_statement] = STATE(1246), - [sym_block] = STATE(1245), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(67), - [aux_sym_if_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(500), - [sym_continue_statement] = ACTIONS(500), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(500), - [sym_nextfile_statement] = ACTIONS(500), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_while_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_delete_statement] = STATE(1215), + [sym_exit_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym__io_statement] = STATE(1215), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1215), + [sym_piped_io_statement] = STATE(1215), + [sym_block] = STATE(1211), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(487), + [sym_continue_statement] = ACTIONS(487), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(487), + [sym_nextfile_statement] = ACTIONS(487), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [41] = { - [sym__statement] = STATE(1336), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1336), - [sym_if_statement] = STATE(1336), - [sym_while_statement] = STATE(1336), - [sym_do_while_statement] = STATE(1336), - [sym_for_statement] = STATE(1336), - [sym_for_in_statement] = STATE(1336), - [sym_delete_statement] = STATE(1336), - [sym_exit_statement] = STATE(1336), - [sym_return_statement] = STATE(1336), - [sym_switch_statement] = STATE(1336), - [sym__io_statement] = STATE(1336), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1336), - [sym_piped_io_statement] = STATE(1336), - [sym_block] = STATE(1334), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(30), - [aux_sym_if_statement_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(504), - [sym_continue_statement] = ACTIONS(504), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(504), - [sym_nextfile_statement] = ACTIONS(504), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1208), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1208), + [sym_if_statement] = STATE(1208), + [sym_while_statement] = STATE(1208), + [sym_do_while_statement] = STATE(1208), + [sym_for_statement] = STATE(1208), + [sym_for_in_statement] = STATE(1208), + [sym_delete_statement] = STATE(1208), + [sym_exit_statement] = STATE(1208), + [sym_return_statement] = STATE(1208), + [sym_switch_statement] = STATE(1208), + [sym__io_statement] = STATE(1208), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1208), + [sym_piped_io_statement] = STATE(1208), + [sym_block] = STATE(1216), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(40), + [aux_sym_if_statement_repeat1] = STATE(40), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(491), + [sym_continue_statement] = ACTIONS(491), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(491), + [sym_nextfile_statement] = ACTIONS(491), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [42] = { - [sym__statement] = STATE(1883), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1883), - [sym_if_statement] = STATE(1883), - [sym_while_statement] = STATE(1883), - [sym_do_while_statement] = STATE(1883), - [sym_for_statement] = STATE(1883), - [sym_for_in_statement] = STATE(1883), - [sym_delete_statement] = STATE(1883), - [sym_exit_statement] = STATE(1883), - [sym_return_statement] = STATE(1883), - [sym_switch_statement] = STATE(1883), - [sym__io_statement] = STATE(1883), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1883), - [sym_piped_io_statement] = STATE(1883), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(506), - [sym_continue_statement] = ACTIONS(506), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_case] = ACTIONS(510), - [anon_sym_default] = ACTIONS(510), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(506), - [sym_nextfile_statement] = ACTIONS(506), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1255), + [sym__statement_separated] = STATE(1255), + [sym__control_statement] = STATE(1255), + [sym_if_statement] = STATE(1255), + [sym_while_statement] = STATE(1255), + [sym_do_while_statement] = STATE(1255), + [sym_for_statement] = STATE(1255), + [sym_for_in_statement] = STATE(1255), + [sym_delete_statement] = STATE(1255), + [sym_exit_statement] = STATE(1255), + [sym_return_statement] = STATE(1255), + [sym_switch_statement] = STATE(1255), + [sym__io_statement] = STATE(1255), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1255), + [sym_piped_io_statement] = STATE(1255), + [sym_block] = STATE(1250), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(495), + [sym_continue_statement] = ACTIONS(495), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(495), + [sym_nextfile_statement] = ACTIONS(495), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [43] = { - [sym__statement] = STATE(1330), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1330), - [sym_if_statement] = STATE(1330), - [sym_while_statement] = STATE(1330), - [sym_do_while_statement] = STATE(1330), - [sym_for_statement] = STATE(1330), - [sym_for_in_statement] = STATE(1330), - [sym_delete_statement] = STATE(1330), - [sym_exit_statement] = STATE(1330), - [sym_return_statement] = STATE(1330), - [sym_switch_statement] = STATE(1330), - [sym__io_statement] = STATE(1330), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1330), - [sym_piped_io_statement] = STATE(1330), - [sym_block] = STATE(1329), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(37), - [aux_sym_if_statement_repeat1] = STATE(37), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(514), - [sym_continue_statement] = ACTIONS(514), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(514), - [sym_nextfile_statement] = ACTIONS(514), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1162), + [sym__statement_separated] = STATE(1162), + [sym__control_statement] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_while_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_for_in_statement] = STATE(1162), + [sym_delete_statement] = STATE(1162), + [sym_exit_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym__io_statement] = STATE(1162), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1162), + [sym_piped_io_statement] = STATE(1162), + [sym_block] = STATE(1186), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(421), + [sym_continue_statement] = ACTIONS(421), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(421), + [sym_nextfile_statement] = ACTIONS(421), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [44] = { - [sym__statement] = STATE(1267), - [sym__statement_separated] = STATE(1267), - [sym__control_statement] = STATE(1267), - [sym_if_statement] = STATE(1267), - [sym_while_statement] = STATE(1267), - [sym_do_while_statement] = STATE(1267), - [sym_for_statement] = STATE(1267), - [sym_for_in_statement] = STATE(1267), - [sym_delete_statement] = STATE(1267), - [sym_exit_statement] = STATE(1267), - [sym_return_statement] = STATE(1267), - [sym_switch_statement] = STATE(1267), - [sym__io_statement] = STATE(1267), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1267), - [sym_piped_io_statement] = STATE(1267), - [sym_block] = STATE(1265), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(18), - [aux_sym_if_statement_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(518), - [sym_continue_statement] = ACTIONS(518), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(518), - [sym_nextfile_statement] = ACTIONS(518), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1166), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1166), + [sym_if_statement] = STATE(1166), + [sym_while_statement] = STATE(1166), + [sym_do_while_statement] = STATE(1166), + [sym_for_statement] = STATE(1166), + [sym_for_in_statement] = STATE(1166), + [sym_delete_statement] = STATE(1166), + [sym_exit_statement] = STATE(1166), + [sym_return_statement] = STATE(1166), + [sym_switch_statement] = STATE(1166), + [sym__io_statement] = STATE(1166), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1166), + [sym_piped_io_statement] = STATE(1166), + [sym_block] = STATE(1167), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(499), + [sym_continue_statement] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(499), + [sym_nextfile_statement] = ACTIONS(499), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [45] = { - [sym__statement] = STATE(1346), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_do_while_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_for_in_statement] = STATE(1346), - [sym_delete_statement] = STATE(1346), - [sym_exit_statement] = STATE(1346), - [sym_return_statement] = STATE(1346), - [sym_switch_statement] = STATE(1346), - [sym__io_statement] = STATE(1346), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1346), - [sym_piped_io_statement] = STATE(1346), - [sym_block] = STATE(1347), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(19), - [aux_sym_if_statement_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(412), - [sym_continue_statement] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(412), - [sym_nextfile_statement] = ACTIONS(412), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1171), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1171), + [sym_if_statement] = STATE(1171), + [sym_while_statement] = STATE(1171), + [sym_do_while_statement] = STATE(1171), + [sym_for_statement] = STATE(1171), + [sym_for_in_statement] = STATE(1171), + [sym_delete_statement] = STATE(1171), + [sym_exit_statement] = STATE(1171), + [sym_return_statement] = STATE(1171), + [sym_switch_statement] = STATE(1171), + [sym__io_statement] = STATE(1171), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1171), + [sym_piped_io_statement] = STATE(1171), + [sym_block] = STATE(1173), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(44), + [aux_sym_if_statement_repeat1] = STATE(44), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(309), + [sym_continue_statement] = ACTIONS(309), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(309), + [sym_nextfile_statement] = ACTIONS(309), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [46] = { - [sym__statement] = STATE(1353), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1353), - [sym_if_statement] = STATE(1353), - [sym_while_statement] = STATE(1353), - [sym_do_while_statement] = STATE(1353), - [sym_for_statement] = STATE(1353), - [sym_for_in_statement] = STATE(1353), - [sym_delete_statement] = STATE(1353), - [sym_exit_statement] = STATE(1353), - [sym_return_statement] = STATE(1353), - [sym_switch_statement] = STATE(1353), - [sym__io_statement] = STATE(1353), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1353), - [sym_piped_io_statement] = STATE(1353), - [sym_block] = STATE(1355), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(522), - [sym_continue_statement] = ACTIONS(522), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(522), - [sym_nextfile_statement] = ACTIONS(522), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1226), + [sym__statement_separated] = STATE(1226), + [sym__control_statement] = STATE(1226), + [sym_if_statement] = STATE(1226), + [sym_while_statement] = STATE(1226), + [sym_do_while_statement] = STATE(1226), + [sym_for_statement] = STATE(1226), + [sym_for_in_statement] = STATE(1226), + [sym_delete_statement] = STATE(1226), + [sym_exit_statement] = STATE(1226), + [sym_return_statement] = STATE(1226), + [sym_switch_statement] = STATE(1226), + [sym__io_statement] = STATE(1226), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1226), + [sym_piped_io_statement] = STATE(1226), + [sym_block] = STATE(1225), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(503), + [sym_continue_statement] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(503), + [sym_nextfile_statement] = ACTIONS(503), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [47] = { [sym__statement] = STATE(1264), - [sym__statement_separated] = STATE(1264), + [sym__statement_separated] = STATE(4), [sym__control_statement] = STATE(1264), [sym_if_statement] = STATE(1264), [sym_while_statement] = STATE(1264), @@ -11837,611 +14924,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1264), [sym_switch_statement] = STATE(1264), [sym__io_statement] = STATE(1264), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), [sym_redirected_io_statement] = STATE(1264), [sym_piped_io_statement] = STATE(1264), - [sym_block] = STATE(1263), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(26), - [aux_sym_if_statement_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(526), - [sym_continue_statement] = ACTIONS(526), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(526), - [sym_nextfile_statement] = ACTIONS(526), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym_block] = STATE(1228), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(507), + [sym_continue_statement] = ACTIONS(507), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(507), + [sym_nextfile_statement] = ACTIONS(507), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [48] = { - [sym__statement] = STATE(1361), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1361), - [sym_if_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [sym_do_while_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_for_in_statement] = STATE(1361), - [sym_delete_statement] = STATE(1361), - [sym_exit_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym__io_statement] = STATE(1361), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1361), - [sym_piped_io_statement] = STATE(1361), - [sym_block] = STATE(1362), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(274), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(278), - [sym_continue_statement] = ACTIONS(278), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(278), - [sym_nextfile_statement] = ACTIONS(278), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), - }, - [49] = { - [sym__statement] = STATE(1262), - [sym__statement_separated] = STATE(1262), - [sym__control_statement] = STATE(1262), - [sym_if_statement] = STATE(1262), - [sym_while_statement] = STATE(1262), - [sym_do_while_statement] = STATE(1262), - [sym_for_statement] = STATE(1262), - [sym_for_in_statement] = STATE(1262), - [sym_delete_statement] = STATE(1262), - [sym_exit_statement] = STATE(1262), - [sym_return_statement] = STATE(1262), - [sym_switch_statement] = STATE(1262), - [sym__io_statement] = STATE(1262), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1262), - [sym_piped_io_statement] = STATE(1262), - [sym_block] = STATE(1261), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(530), - [sym_continue_statement] = ACTIONS(530), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(530), - [sym_nextfile_statement] = ACTIONS(530), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), - }, - [50] = { - [sym__statement] = STATE(1341), - [sym__statement_separated] = STATE(1341), - [sym__control_statement] = STATE(1341), - [sym_if_statement] = STATE(1341), - [sym_while_statement] = STATE(1341), - [sym_do_while_statement] = STATE(1341), - [sym_for_statement] = STATE(1341), - [sym_for_in_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_exit_statement] = STATE(1341), - [sym_return_statement] = STATE(1341), - [sym_switch_statement] = STATE(1341), - [sym__io_statement] = STATE(1341), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1341), - [sym_piped_io_statement] = STATE(1341), - [sym_block] = STATE(1305), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(358), - [sym_continue_statement] = ACTIONS(358), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(358), - [sym_nextfile_statement] = ACTIONS(358), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), - }, - [51] = { - [sym__statement] = STATE(1328), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_while_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_delete_statement] = STATE(1328), - [sym_exit_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym__io_statement] = STATE(1328), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1328), - [sym_piped_io_statement] = STATE(1328), - [sym_block] = STATE(1326), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(38), - [aux_sym_if_statement_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(534), - [sym_continue_statement] = ACTIONS(534), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(534), - [sym_nextfile_statement] = ACTIONS(534), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), - }, - [52] = { - [sym__statement] = STATE(1325), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1325), - [sym_if_statement] = STATE(1325), - [sym_while_statement] = STATE(1325), - [sym_do_while_statement] = STATE(1325), - [sym_for_statement] = STATE(1325), - [sym_for_in_statement] = STATE(1325), - [sym_delete_statement] = STATE(1325), - [sym_exit_statement] = STATE(1325), - [sym_return_statement] = STATE(1325), - [sym_switch_statement] = STATE(1325), - [sym__io_statement] = STATE(1325), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1325), - [sym_piped_io_statement] = STATE(1325), - [sym_block] = STATE(1324), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(538), - [sym_continue_statement] = ACTIONS(538), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(538), - [sym_nextfile_statement] = ACTIONS(538), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), - }, - [53] = { - [sym__statement] = STATE(1363), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1363), - [sym_if_statement] = STATE(1363), - [sym_while_statement] = STATE(1363), - [sym_do_while_statement] = STATE(1363), - [sym_for_statement] = STATE(1363), - [sym_for_in_statement] = STATE(1363), - [sym_delete_statement] = STATE(1363), - [sym_exit_statement] = STATE(1363), - [sym_return_statement] = STATE(1363), - [sym_switch_statement] = STATE(1363), - [sym__io_statement] = STATE(1363), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1363), - [sym_piped_io_statement] = STATE(1363), - [sym_block] = STATE(1365), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(294), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(296), - [sym_continue_statement] = ACTIONS(296), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(296), - [sym_nextfile_statement] = ACTIONS(296), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), - }, - [54] = { - [sym__statement] = STATE(1248), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_do_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_for_in_statement] = STATE(1248), - [sym_delete_statement] = STATE(1248), - [sym_exit_statement] = STATE(1248), - [sym_return_statement] = STATE(1248), - [sym_switch_statement] = STATE(1248), - [sym__io_statement] = STATE(1248), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1248), - [sym_piped_io_statement] = STATE(1248), - [sym_block] = STATE(1247), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(72), - [aux_sym_if_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(542), - [sym_continue_statement] = ACTIONS(542), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(542), - [sym_nextfile_statement] = ACTIONS(542), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [55] = { [sym__statement] = STATE(1260), - [sym__statement_separated] = STATE(1260), + [sym__statement_separated] = STATE(4), [sym__control_statement] = STATE(1260), [sym_if_statement] = STATE(1260), [sym_while_statement] = STATE(1260), @@ -12453,72 +15039,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1260), [sym_switch_statement] = STATE(1260), [sym__io_statement] = STATE(1260), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), [sym_redirected_io_statement] = STATE(1260), [sym_piped_io_statement] = STATE(1260), [sym_block] = STATE(1259), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(546), - [sym_continue_statement] = ACTIONS(546), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(546), - [sym_nextfile_statement] = ACTIONS(546), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(47), + [aux_sym_if_statement_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(511), + [sym_continue_statement] = ACTIONS(511), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(511), + [sym_nextfile_statement] = ACTIONS(511), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, - [56] = { + [49] = { + [sym__statement] = STATE(1258), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1258), + [sym_if_statement] = STATE(1258), + [sym_while_statement] = STATE(1258), + [sym_do_while_statement] = STATE(1258), + [sym_for_statement] = STATE(1258), + [sym_for_in_statement] = STATE(1258), + [sym_delete_statement] = STATE(1258), + [sym_exit_statement] = STATE(1258), + [sym_return_statement] = STATE(1258), + [sym_switch_statement] = STATE(1258), + [sym__io_statement] = STATE(1258), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1258), + [sym_piped_io_statement] = STATE(1258), + [sym_block] = STATE(1256), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(515), + [sym_continue_statement] = ACTIONS(515), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(515), + [sym_nextfile_statement] = ACTIONS(515), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [50] = { [sym__statement] = STATE(1254), - [sym__statement_separated] = STATE(2), + [sym__statement_separated] = STATE(4), [sym__control_statement] = STATE(1254), [sym_if_statement] = STATE(1254), [sym_while_statement] = STATE(1254), @@ -12530,2305 +15269,3675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1254), [sym_switch_statement] = STATE(1254), [sym__io_statement] = STATE(1254), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), [sym_redirected_io_statement] = STATE(1254), [sym_piped_io_statement] = STATE(1254), - [sym_block] = STATE(1253), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(550), - [sym_continue_statement] = ACTIONS(550), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(550), - [sym_nextfile_statement] = ACTIONS(550), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym_block] = STATE(1252), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(517), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(519), + [sym_continue_statement] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(519), + [sym_nextfile_statement] = ACTIONS(519), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [51] = { + [sym__statement] = STATE(1251), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1251), + [sym_if_statement] = STATE(1251), + [sym_while_statement] = STATE(1251), + [sym_do_while_statement] = STATE(1251), + [sym_for_statement] = STATE(1251), + [sym_for_in_statement] = STATE(1251), + [sym_delete_statement] = STATE(1251), + [sym_exit_statement] = STATE(1251), + [sym_return_statement] = STATE(1251), + [sym_switch_statement] = STATE(1251), + [sym__io_statement] = STATE(1251), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1251), + [sym_piped_io_statement] = STATE(1251), + [sym_block] = STATE(1218), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(523), + [sym_continue_statement] = ACTIONS(523), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(523), + [sym_nextfile_statement] = ACTIONS(523), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [52] = { + [sym__statement] = STATE(1246), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1246), + [sym_if_statement] = STATE(1246), + [sym_while_statement] = STATE(1246), + [sym_do_while_statement] = STATE(1246), + [sym_for_statement] = STATE(1246), + [sym_for_in_statement] = STATE(1246), + [sym_delete_statement] = STATE(1246), + [sym_exit_statement] = STATE(1246), + [sym_return_statement] = STATE(1246), + [sym_switch_statement] = STATE(1246), + [sym__io_statement] = STATE(1246), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1246), + [sym_piped_io_statement] = STATE(1246), + [sym_block] = STATE(1245), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(49), + [aux_sym_if_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(527), + [sym_continue_statement] = ACTIONS(527), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(527), + [sym_nextfile_statement] = ACTIONS(527), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [53] = { + [sym__statement] = STATE(1244), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1244), + [sym_if_statement] = STATE(1244), + [sym_while_statement] = STATE(1244), + [sym_do_while_statement] = STATE(1244), + [sym_for_statement] = STATE(1244), + [sym_for_in_statement] = STATE(1244), + [sym_delete_statement] = STATE(1244), + [sym_exit_statement] = STATE(1244), + [sym_return_statement] = STATE(1244), + [sym_switch_statement] = STATE(1244), + [sym__io_statement] = STATE(1244), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1244), + [sym_piped_io_statement] = STATE(1244), + [sym_block] = STATE(1243), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(50), + [aux_sym_if_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(529), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(531), + [sym_continue_statement] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(531), + [sym_nextfile_statement] = ACTIONS(531), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [54] = { + [sym__statement] = STATE(1240), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1240), + [sym_if_statement] = STATE(1240), + [sym_while_statement] = STATE(1240), + [sym_do_while_statement] = STATE(1240), + [sym_for_statement] = STATE(1240), + [sym_for_in_statement] = STATE(1240), + [sym_delete_statement] = STATE(1240), + [sym_exit_statement] = STATE(1240), + [sym_return_statement] = STATE(1240), + [sym_switch_statement] = STATE(1240), + [sym__io_statement] = STATE(1240), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1240), + [sym_piped_io_statement] = STATE(1240), + [sym_block] = STATE(1237), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(533), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(535), + [sym_continue_statement] = ACTIONS(535), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(535), + [sym_nextfile_statement] = ACTIONS(535), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [55] = { + [sym__statement] = STATE(1236), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1236), + [sym_if_statement] = STATE(1236), + [sym_while_statement] = STATE(1236), + [sym_do_while_statement] = STATE(1236), + [sym_for_statement] = STATE(1236), + [sym_for_in_statement] = STATE(1236), + [sym_delete_statement] = STATE(1236), + [sym_exit_statement] = STATE(1236), + [sym_return_statement] = STATE(1236), + [sym_switch_statement] = STATE(1236), + [sym__io_statement] = STATE(1236), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1236), + [sym_piped_io_statement] = STATE(1236), + [sym_block] = STATE(1235), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(539), + [sym_continue_statement] = ACTIONS(539), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(539), + [sym_nextfile_statement] = ACTIONS(539), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [56] = { + [sym__statement] = STATE(1232), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_delete_statement] = STATE(1232), + [sym_exit_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym__io_statement] = STATE(1232), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1232), + [sym_piped_io_statement] = STATE(1232), + [sym_block] = STATE(1231), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(51), + [aux_sym_if_statement_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(543), + [sym_continue_statement] = ACTIONS(543), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(543), + [sym_nextfile_statement] = ACTIONS(543), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [57] = { - [sym__statement] = STATE(1865), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1865), - [sym_if_statement] = STATE(1865), - [sym_while_statement] = STATE(1865), - [sym_do_while_statement] = STATE(1865), - [sym_for_statement] = STATE(1865), - [sym_for_in_statement] = STATE(1865), - [sym_delete_statement] = STATE(1865), - [sym_exit_statement] = STATE(1865), - [sym_return_statement] = STATE(1865), - [sym_switch_statement] = STATE(1865), - [sym__io_statement] = STATE(1865), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1865), - [sym_piped_io_statement] = STATE(1865), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_case] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(552), - [sym_nextfile_statement] = ACTIONS(552), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1229), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_while_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_delete_statement] = STATE(1229), + [sym_exit_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym__io_statement] = STATE(1229), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1229), + [sym_piped_io_statement] = STATE(1229), + [sym_block] = STATE(1227), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(547), + [sym_continue_statement] = ACTIONS(547), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(547), + [sym_nextfile_statement] = ACTIONS(547), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [58] = { - [sym__statement] = STATE(1861), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1861), - [sym_if_statement] = STATE(1861), - [sym_while_statement] = STATE(1861), - [sym_do_while_statement] = STATE(1861), - [sym_for_statement] = STATE(1861), - [sym_for_in_statement] = STATE(1861), - [sym_delete_statement] = STATE(1861), - [sym_exit_statement] = STATE(1861), - [sym_return_statement] = STATE(1861), - [sym_switch_statement] = STATE(1861), - [sym__io_statement] = STATE(1861), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1861), - [sym_piped_io_statement] = STATE(1861), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(42), - [aux_sym_if_statement_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(224), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(562), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(558), - [sym_nextfile_statement] = ACTIONS(558), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1226), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1226), + [sym_if_statement] = STATE(1226), + [sym_while_statement] = STATE(1226), + [sym_do_while_statement] = STATE(1226), + [sym_for_statement] = STATE(1226), + [sym_for_in_statement] = STATE(1226), + [sym_delete_statement] = STATE(1226), + [sym_exit_statement] = STATE(1226), + [sym_return_statement] = STATE(1226), + [sym_switch_statement] = STATE(1226), + [sym__io_statement] = STATE(1226), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1226), + [sym_piped_io_statement] = STATE(1226), + [sym_block] = STATE(1225), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(503), + [sym_continue_statement] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(503), + [sym_nextfile_statement] = ACTIONS(503), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [59] = { - [sym__statement] = STATE(1346), - [sym__statement_separated] = STATE(1346), - [sym__control_statement] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_do_while_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_for_in_statement] = STATE(1346), - [sym_delete_statement] = STATE(1346), - [sym_exit_statement] = STATE(1346), - [sym_return_statement] = STATE(1346), - [sym_switch_statement] = STATE(1346), - [sym__io_statement] = STATE(1346), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1346), - [sym_piped_io_statement] = STATE(1346), - [sym_block] = STATE(1347), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym__statement] = STATE(1229), + [sym__statement_separated] = STATE(1229), + [sym__control_statement] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_while_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_delete_statement] = STATE(1229), + [sym_exit_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym__io_statement] = STATE(1229), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1229), + [sym_piped_io_statement] = STATE(1229), + [sym_block] = STATE(1227), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(50), - [aux_sym_if_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(412), - [sym_continue_statement] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(412), - [sym_nextfile_statement] = ACTIONS(412), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(547), + [sym_continue_statement] = ACTIONS(547), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(547), + [sym_nextfile_statement] = ACTIONS(547), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [60] = { - [sym__statement] = STATE(1353), - [sym__statement_separated] = STATE(1353), - [sym__control_statement] = STATE(1353), - [sym_if_statement] = STATE(1353), - [sym_while_statement] = STATE(1353), - [sym_do_while_statement] = STATE(1353), - [sym_for_statement] = STATE(1353), - [sym_for_in_statement] = STATE(1353), - [sym_delete_statement] = STATE(1353), - [sym_exit_statement] = STATE(1353), - [sym_return_statement] = STATE(1353), - [sym_switch_statement] = STATE(1353), - [sym__io_statement] = STATE(1353), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1353), - [sym_piped_io_statement] = STATE(1353), - [sym_block] = STATE(1355), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(522), - [sym_continue_statement] = ACTIONS(522), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(522), - [sym_nextfile_statement] = ACTIONS(522), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1248), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1248), + [sym_if_statement] = STATE(1248), + [sym_while_statement] = STATE(1248), + [sym_do_while_statement] = STATE(1248), + [sym_for_statement] = STATE(1248), + [sym_for_in_statement] = STATE(1248), + [sym_delete_statement] = STATE(1248), + [sym_exit_statement] = STATE(1248), + [sym_return_statement] = STATE(1248), + [sym_switch_statement] = STATE(1248), + [sym__io_statement] = STATE(1248), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1248), + [sym_piped_io_statement] = STATE(1248), + [sym_block] = STATE(1219), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(54), + [aux_sym_if_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(441), + [sym_continue_statement] = ACTIONS(441), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(441), + [sym_nextfile_statement] = ACTIONS(441), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [61] = { - [sym__statement] = STATE(1256), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1256), - [sym_if_statement] = STATE(1256), - [sym_while_statement] = STATE(1256), - [sym_do_while_statement] = STATE(1256), - [sym_for_statement] = STATE(1256), - [sym_for_in_statement] = STATE(1256), - [sym_delete_statement] = STATE(1256), - [sym_exit_statement] = STATE(1256), - [sym_return_statement] = STATE(1256), - [sym_switch_statement] = STATE(1256), - [sym__io_statement] = STATE(1256), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1256), - [sym_piped_io_statement] = STATE(1256), - [sym_block] = STATE(1255), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(566), - [sym_continue_statement] = ACTIONS(566), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(566), - [sym_nextfile_statement] = ACTIONS(566), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1261), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1261), + [sym_if_statement] = STATE(1261), + [sym_while_statement] = STATE(1261), + [sym_do_while_statement] = STATE(1261), + [sym_for_statement] = STATE(1261), + [sym_for_in_statement] = STATE(1261), + [sym_delete_statement] = STATE(1261), + [sym_exit_statement] = STATE(1261), + [sym_return_statement] = STATE(1261), + [sym_switch_statement] = STATE(1261), + [sym__io_statement] = STATE(1261), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1261), + [sym_piped_io_statement] = STATE(1261), + [sym_block] = STATE(1268), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(55), + [aux_sym_if_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(449), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(451), + [sym_continue_statement] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(451), + [sym_nextfile_statement] = ACTIONS(451), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [62] = { - [sym__statement] = STATE(1258), - [sym__statement_separated] = STATE(1258), - [sym__control_statement] = STATE(1258), - [sym_if_statement] = STATE(1258), - [sym_while_statement] = STATE(1258), - [sym_do_while_statement] = STATE(1258), - [sym_for_statement] = STATE(1258), - [sym_for_in_statement] = STATE(1258), - [sym_delete_statement] = STATE(1258), - [sym_exit_statement] = STATE(1258), - [sym_return_statement] = STATE(1258), - [sym_switch_statement] = STATE(1258), - [sym__io_statement] = STATE(1258), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1258), - [sym_piped_io_statement] = STATE(1258), - [sym_block] = STATE(1257), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(35), - [aux_sym_if_statement_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(568), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(570), - [sym_continue_statement] = ACTIONS(570), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(570), - [sym_nextfile_statement] = ACTIONS(570), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1269), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1269), + [sym_if_statement] = STATE(1269), + [sym_while_statement] = STATE(1269), + [sym_do_while_statement] = STATE(1269), + [sym_for_statement] = STATE(1269), + [sym_for_in_statement] = STATE(1269), + [sym_delete_statement] = STATE(1269), + [sym_exit_statement] = STATE(1269), + [sym_return_statement] = STATE(1269), + [sym_switch_statement] = STATE(1269), + [sym__io_statement] = STATE(1269), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1269), + [sym_piped_io_statement] = STATE(1269), + [sym_block] = STATE(1270), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(57), + [aux_sym_if_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(463), + [sym_continue_statement] = ACTIONS(463), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(463), + [sym_nextfile_statement] = ACTIONS(463), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [63] = { - [sym__statement] = STATE(1361), - [sym__statement_separated] = STATE(1361), - [sym__control_statement] = STATE(1361), - [sym_if_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [sym_do_while_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_for_in_statement] = STATE(1361), - [sym_delete_statement] = STATE(1361), - [sym_exit_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym__io_statement] = STATE(1361), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1361), - [sym_piped_io_statement] = STATE(1361), - [sym_block] = STATE(1362), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(274), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(278), - [sym_continue_statement] = ACTIONS(278), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(278), - [sym_nextfile_statement] = ACTIONS(278), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1272), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1272), + [sym_if_statement] = STATE(1272), + [sym_while_statement] = STATE(1272), + [sym_do_while_statement] = STATE(1272), + [sym_for_statement] = STATE(1272), + [sym_for_in_statement] = STATE(1272), + [sym_delete_statement] = STATE(1272), + [sym_exit_statement] = STATE(1272), + [sym_return_statement] = STATE(1272), + [sym_switch_statement] = STATE(1272), + [sym__io_statement] = STATE(1272), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1272), + [sym_piped_io_statement] = STATE(1272), + [sym_block] = STATE(1273), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(58), + [aux_sym_if_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(483), + [sym_continue_statement] = ACTIONS(483), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(483), + [sym_nextfile_statement] = ACTIONS(483), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [64] = { - [sym__statement] = STATE(1256), - [sym__statement_separated] = STATE(1256), - [sym__control_statement] = STATE(1256), - [sym_if_statement] = STATE(1256), - [sym_while_statement] = STATE(1256), - [sym_do_while_statement] = STATE(1256), - [sym_for_statement] = STATE(1256), - [sym_for_in_statement] = STATE(1256), - [sym_delete_statement] = STATE(1256), - [sym_exit_statement] = STATE(1256), - [sym_return_statement] = STATE(1256), - [sym_switch_statement] = STATE(1256), - [sym__io_statement] = STATE(1256), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1256), - [sym_piped_io_statement] = STATE(1256), - [sym_block] = STATE(1255), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(566), - [sym_continue_statement] = ACTIONS(566), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(566), - [sym_nextfile_statement] = ACTIONS(566), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1255), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1255), + [sym_if_statement] = STATE(1255), + [sym_while_statement] = STATE(1255), + [sym_do_while_statement] = STATE(1255), + [sym_for_statement] = STATE(1255), + [sym_for_in_statement] = STATE(1255), + [sym_delete_statement] = STATE(1255), + [sym_exit_statement] = STATE(1255), + [sym_return_statement] = STATE(1255), + [sym_switch_statement] = STATE(1255), + [sym__io_statement] = STATE(1255), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1255), + [sym_piped_io_statement] = STATE(1255), + [sym_block] = STATE(1250), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(495), + [sym_continue_statement] = ACTIONS(495), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(495), + [sym_nextfile_statement] = ACTIONS(495), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [65] = { - [sym__statement] = STATE(1369), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1369), - [sym_if_statement] = STATE(1369), - [sym_while_statement] = STATE(1369), - [sym_do_while_statement] = STATE(1369), - [sym_for_statement] = STATE(1369), - [sym_for_in_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_exit_statement] = STATE(1369), - [sym_return_statement] = STATE(1369), - [sym_switch_statement] = STATE(1369), - [sym__io_statement] = STATE(1369), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1369), - [sym_piped_io_statement] = STATE(1369), - [sym_block] = STATE(1371), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(46), - [aux_sym_if_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(298), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(300), - [sym_continue_statement] = ACTIONS(300), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(300), - [sym_nextfile_statement] = ACTIONS(300), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1230), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1230), + [sym_if_statement] = STATE(1230), + [sym_while_statement] = STATE(1230), + [sym_do_while_statement] = STATE(1230), + [sym_for_statement] = STATE(1230), + [sym_for_in_statement] = STATE(1230), + [sym_delete_statement] = STATE(1230), + [sym_exit_statement] = STATE(1230), + [sym_return_statement] = STATE(1230), + [sym_switch_statement] = STATE(1230), + [sym__io_statement] = STATE(1230), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1230), + [sym_piped_io_statement] = STATE(1230), + [sym_block] = STATE(1223), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(64), + [aux_sym_if_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(551), + [sym_continue_statement] = ACTIONS(551), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(551), + [sym_nextfile_statement] = ACTIONS(551), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [66] = { - [sym__statement] = STATE(1258), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1258), - [sym_if_statement] = STATE(1258), - [sym_while_statement] = STATE(1258), - [sym_do_while_statement] = STATE(1258), - [sym_for_statement] = STATE(1258), - [sym_for_in_statement] = STATE(1258), - [sym_delete_statement] = STATE(1258), - [sym_exit_statement] = STATE(1258), - [sym_return_statement] = STATE(1258), - [sym_switch_statement] = STATE(1258), - [sym__io_statement] = STATE(1258), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1258), - [sym_piped_io_statement] = STATE(1258), - [sym_block] = STATE(1257), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(83), - [aux_sym_if_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(568), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(570), - [sym_continue_statement] = ACTIONS(570), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(570), - [sym_nextfile_statement] = ACTIONS(570), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1265), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1265), + [sym_if_statement] = STATE(1265), + [sym_while_statement] = STATE(1265), + [sym_do_while_statement] = STATE(1265), + [sym_for_statement] = STATE(1265), + [sym_for_in_statement] = STATE(1265), + [sym_delete_statement] = STATE(1265), + [sym_exit_statement] = STATE(1265), + [sym_return_statement] = STATE(1265), + [sym_switch_statement] = STATE(1265), + [sym__io_statement] = STATE(1265), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1265), + [sym_piped_io_statement] = STATE(1265), + [sym_block] = STATE(1271), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(553), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(555), + [sym_continue_statement] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(555), + [sym_nextfile_statement] = ACTIONS(555), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [67] = { - [sym__statement] = STATE(1260), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1260), - [sym_if_statement] = STATE(1260), - [sym_while_statement] = STATE(1260), - [sym_do_while_statement] = STATE(1260), - [sym_for_statement] = STATE(1260), - [sym_for_in_statement] = STATE(1260), - [sym_delete_statement] = STATE(1260), - [sym_exit_statement] = STATE(1260), - [sym_return_statement] = STATE(1260), - [sym_switch_statement] = STATE(1260), - [sym__io_statement] = STATE(1260), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1260), - [sym_piped_io_statement] = STATE(1260), - [sym_block] = STATE(1259), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(546), - [sym_continue_statement] = ACTIONS(546), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(546), - [sym_nextfile_statement] = ACTIONS(546), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(2129), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(2129), + [sym_if_statement] = STATE(2129), + [sym_while_statement] = STATE(2129), + [sym_do_while_statement] = STATE(2129), + [sym_for_statement] = STATE(2129), + [sym_for_in_statement] = STATE(2129), + [sym_delete_statement] = STATE(2129), + [sym_exit_statement] = STATE(2129), + [sym_return_statement] = STATE(2129), + [sym_switch_statement] = STATE(2129), + [sym__io_statement] = STATE(2129), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(2129), + [sym_piped_io_statement] = STATE(2129), + [sym_block] = STATE(2127), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(559), + [sym_continue_statement] = ACTIONS(559), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(559), + [sym_nextfile_statement] = ACTIONS(559), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [68] = { - [sym__statement] = STATE(1373), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1373), - [sym_if_statement] = STATE(1373), - [sym_while_statement] = STATE(1373), - [sym_do_while_statement] = STATE(1373), - [sym_for_statement] = STATE(1373), - [sym_for_in_statement] = STATE(1373), - [sym_delete_statement] = STATE(1373), - [sym_exit_statement] = STATE(1373), - [sym_return_statement] = STATE(1373), - [sym_switch_statement] = STATE(1373), - [sym__io_statement] = STATE(1373), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1373), - [sym_piped_io_statement] = STATE(1373), - [sym_block] = STATE(1299), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(48), - [aux_sym_if_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(404), - [sym_continue_statement] = ACTIONS(404), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(404), - [sym_nextfile_statement] = ACTIONS(404), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1267), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1267), + [sym_if_statement] = STATE(1267), + [sym_while_statement] = STATE(1267), + [sym_do_while_statement] = STATE(1267), + [sym_for_statement] = STATE(1267), + [sym_for_in_statement] = STATE(1267), + [sym_delete_statement] = STATE(1267), + [sym_exit_statement] = STATE(1267), + [sym_return_statement] = STATE(1267), + [sym_switch_statement] = STATE(1267), + [sym__io_statement] = STATE(1267), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1267), + [sym_piped_io_statement] = STATE(1267), + [sym_block] = STATE(1266), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(66), + [aux_sym_if_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(563), + [sym_continue_statement] = ACTIONS(563), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(563), + [sym_nextfile_statement] = ACTIONS(563), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [69] = { - [sym__statement] = STATE(1317), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1317), - [sym_if_statement] = STATE(1317), - [sym_while_statement] = STATE(1317), - [sym_do_while_statement] = STATE(1317), - [sym_for_statement] = STATE(1317), - [sym_for_in_statement] = STATE(1317), - [sym_delete_statement] = STATE(1317), - [sym_exit_statement] = STATE(1317), - [sym_return_statement] = STATE(1317), - [sym_switch_statement] = STATE(1317), - [sym__io_statement] = STATE(1317), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1317), - [sym_piped_io_statement] = STATE(1317), - [sym_block] = STATE(1304), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(52), - [aux_sym_if_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(574), - [sym_continue_statement] = ACTIONS(574), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(574), - [sym_nextfile_statement] = ACTIONS(574), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(2055), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(2055), + [sym_if_statement] = STATE(2055), + [sym_while_statement] = STATE(2055), + [sym_do_while_statement] = STATE(2055), + [sym_for_statement] = STATE(2055), + [sym_for_in_statement] = STATE(2055), + [sym_delete_statement] = STATE(2055), + [sym_exit_statement] = STATE(2055), + [sym_return_statement] = STATE(2055), + [sym_switch_statement] = STATE(2055), + [sym__io_statement] = STATE(2055), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(2055), + [sym_piped_io_statement] = STATE(2055), + [sym_block] = STATE(2069), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(18), + [aux_sym_if_statement_repeat1] = STATE(18), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(565), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(567), + [sym_continue_statement] = ACTIONS(567), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(567), + [sym_nextfile_statement] = ACTIONS(567), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [70] = { - [sym__statement] = STATE(1300), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1300), - [sym_if_statement] = STATE(1300), - [sym_while_statement] = STATE(1300), - [sym_do_while_statement] = STATE(1300), - [sym_for_statement] = STATE(1300), - [sym_for_in_statement] = STATE(1300), - [sym_delete_statement] = STATE(1300), - [sym_exit_statement] = STATE(1300), - [sym_return_statement] = STATE(1300), - [sym_switch_statement] = STATE(1300), - [sym__io_statement] = STATE(1300), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1300), - [sym_piped_io_statement] = STATE(1300), - [sym_block] = STATE(1312), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(578), - [sym_continue_statement] = ACTIONS(578), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(578), - [sym_nextfile_statement] = ACTIONS(578), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1198), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1198), + [sym_if_statement] = STATE(1198), + [sym_while_statement] = STATE(1198), + [sym_do_while_statement] = STATE(1198), + [sym_for_statement] = STATE(1198), + [sym_for_in_statement] = STATE(1198), + [sym_delete_statement] = STATE(1198), + [sym_exit_statement] = STATE(1198), + [sym_return_statement] = STATE(1198), + [sym_switch_statement] = STATE(1198), + [sym__io_statement] = STATE(1198), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1198), + [sym_piped_io_statement] = STATE(1198), + [sym_block] = STATE(1195), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(409), + [sym_continue_statement] = ACTIONS(409), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(409), + [sym_nextfile_statement] = ACTIONS(409), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [71] = { - [sym__statement] = STATE(1363), - [sym__statement_separated] = STATE(1363), - [sym__control_statement] = STATE(1363), - [sym_if_statement] = STATE(1363), - [sym_while_statement] = STATE(1363), - [sym_do_while_statement] = STATE(1363), - [sym_for_statement] = STATE(1363), - [sym_for_in_statement] = STATE(1363), - [sym_delete_statement] = STATE(1363), - [sym_exit_statement] = STATE(1363), - [sym_return_statement] = STATE(1363), - [sym_switch_statement] = STATE(1363), - [sym__io_statement] = STATE(1363), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1363), - [sym_piped_io_statement] = STATE(1363), - [sym_block] = STATE(1365), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(294), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(296), - [sym_continue_statement] = ACTIONS(296), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(296), - [sym_nextfile_statement] = ACTIONS(296), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1194), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1194), + [sym_if_statement] = STATE(1194), + [sym_while_statement] = STATE(1194), + [sym_do_while_statement] = STATE(1194), + [sym_for_statement] = STATE(1194), + [sym_for_in_statement] = STATE(1194), + [sym_delete_statement] = STATE(1194), + [sym_exit_statement] = STATE(1194), + [sym_return_statement] = STATE(1194), + [sym_switch_statement] = STATE(1194), + [sym__io_statement] = STATE(1194), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1194), + [sym_piped_io_statement] = STATE(1194), + [sym_block] = STATE(1193), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(70), + [aux_sym_if_statement_repeat1] = STATE(70), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(413), + [sym_continue_statement] = ACTIONS(413), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(413), + [sym_nextfile_statement] = ACTIONS(413), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [72] = { - [sym__statement] = STATE(1262), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1262), - [sym_if_statement] = STATE(1262), - [sym_while_statement] = STATE(1262), - [sym_do_while_statement] = STATE(1262), - [sym_for_statement] = STATE(1262), - [sym_for_in_statement] = STATE(1262), - [sym_delete_statement] = STATE(1262), - [sym_exit_statement] = STATE(1262), - [sym_return_statement] = STATE(1262), - [sym_switch_statement] = STATE(1262), - [sym__io_statement] = STATE(1262), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1262), - [sym_piped_io_statement] = STATE(1262), - [sym_block] = STATE(1261), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(530), - [sym_continue_statement] = ACTIONS(530), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(530), - [sym_nextfile_statement] = ACTIONS(530), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1192), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_while_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_for_in_statement] = STATE(1192), + [sym_delete_statement] = STATE(1192), + [sym_exit_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym__io_statement] = STATE(1192), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1192), + [sym_piped_io_statement] = STATE(1192), + [sym_block] = STATE(1191), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(417), + [sym_continue_statement] = ACTIONS(417), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(417), + [sym_nextfile_statement] = ACTIONS(417), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [73] = { - [sym__statement] = STATE(1264), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_while_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_delete_statement] = STATE(1264), - [sym_exit_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym__io_statement] = STATE(1264), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1264), - [sym_piped_io_statement] = STATE(1264), - [sym_block] = STATE(1263), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(85), - [aux_sym_if_statement_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(526), - [sym_continue_statement] = ACTIONS(526), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(526), - [sym_nextfile_statement] = ACTIONS(526), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1207), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1207), + [sym_if_statement] = STATE(1207), + [sym_while_statement] = STATE(1207), + [sym_do_while_statement] = STATE(1207), + [sym_for_statement] = STATE(1207), + [sym_for_in_statement] = STATE(1207), + [sym_delete_statement] = STATE(1207), + [sym_exit_statement] = STATE(1207), + [sym_return_statement] = STATE(1207), + [sym_switch_statement] = STATE(1207), + [sym__io_statement] = STATE(1207), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1207), + [sym_piped_io_statement] = STATE(1207), + [sym_block] = STATE(1189), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(385), + [sym_continue_statement] = ACTIONS(385), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(385), + [sym_nextfile_statement] = ACTIONS(385), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [74] = { - [sym__statement] = STATE(1370), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1370), - [sym_if_statement] = STATE(1370), - [sym_while_statement] = STATE(1370), - [sym_do_while_statement] = STATE(1370), - [sym_for_statement] = STATE(1370), - [sym_for_in_statement] = STATE(1370), - [sym_delete_statement] = STATE(1370), - [sym_exit_statement] = STATE(1370), - [sym_return_statement] = STATE(1370), - [sym_switch_statement] = STATE(1370), - [sym__io_statement] = STATE(1370), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1370), - [sym_piped_io_statement] = STATE(1370), - [sym_block] = STATE(1367), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(408), - [sym_continue_statement] = ACTIONS(408), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(408), - [sym_nextfile_statement] = ACTIONS(408), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1162), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_while_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_for_in_statement] = STATE(1162), + [sym_delete_statement] = STATE(1162), + [sym_exit_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym__io_statement] = STATE(1162), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1162), + [sym_piped_io_statement] = STATE(1162), + [sym_block] = STATE(1186), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(421), + [sym_continue_statement] = ACTIONS(421), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(421), + [sym_nextfile_statement] = ACTIONS(421), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [75] = { - [sym__statement] = STATE(1366), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1366), - [sym_if_statement] = STATE(1366), - [sym_while_statement] = STATE(1366), - [sym_do_while_statement] = STATE(1366), - [sym_for_statement] = STATE(1366), - [sym_for_in_statement] = STATE(1366), - [sym_delete_statement] = STATE(1366), - [sym_exit_statement] = STATE(1366), - [sym_return_statement] = STATE(1366), - [sym_switch_statement] = STATE(1366), - [sym__io_statement] = STATE(1366), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1366), - [sym_piped_io_statement] = STATE(1366), - [sym_block] = STATE(1364), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(270), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(272), - [sym_continue_statement] = ACTIONS(272), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(272), - [sym_nextfile_statement] = ACTIONS(272), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1181), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1181), + [sym_if_statement] = STATE(1181), + [sym_while_statement] = STATE(1181), + [sym_do_while_statement] = STATE(1181), + [sym_for_statement] = STATE(1181), + [sym_for_in_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_exit_statement] = STATE(1181), + [sym_return_statement] = STATE(1181), + [sym_switch_statement] = STATE(1181), + [sym__io_statement] = STATE(1181), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1181), + [sym_piped_io_statement] = STATE(1181), + [sym_block] = STATE(1176), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(72), + [aux_sym_if_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(425), + [sym_continue_statement] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(425), + [sym_nextfile_statement] = ACTIONS(425), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [76] = { - [sym__statement] = STATE(1359), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1359), - [sym_if_statement] = STATE(1359), - [sym_while_statement] = STATE(1359), - [sym_do_while_statement] = STATE(1359), - [sym_for_statement] = STATE(1359), - [sym_for_in_statement] = STATE(1359), - [sym_delete_statement] = STATE(1359), - [sym_exit_statement] = STATE(1359), - [sym_return_statement] = STATE(1359), - [sym_switch_statement] = STATE(1359), - [sym__io_statement] = STATE(1359), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1359), - [sym_piped_io_statement] = STATE(1359), - [sym_block] = STATE(1358), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(53), - [aux_sym_if_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(264), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(266), - [sym_continue_statement] = ACTIONS(266), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(266), - [sym_nextfile_statement] = ACTIONS(266), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1175), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1175), + [sym_if_statement] = STATE(1175), + [sym_while_statement] = STATE(1175), + [sym_do_while_statement] = STATE(1175), + [sym_for_statement] = STATE(1175), + [sym_for_in_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_exit_statement] = STATE(1175), + [sym_return_statement] = STATE(1175), + [sym_switch_statement] = STATE(1175), + [sym__io_statement] = STATE(1175), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1175), + [sym_piped_io_statement] = STATE(1175), + [sym_block] = STATE(1164), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(73), + [aux_sym_if_statement_repeat1] = STATE(73), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(429), + [sym_continue_statement] = ACTIONS(429), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(429), + [sym_nextfile_statement] = ACTIONS(429), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [77] = { - [sym__statement] = STATE(1357), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1357), - [sym_if_statement] = STATE(1357), - [sym_while_statement] = STATE(1357), - [sym_do_while_statement] = STATE(1357), - [sym_for_statement] = STATE(1357), - [sym_for_in_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_exit_statement] = STATE(1357), - [sym_return_statement] = STATE(1357), - [sym_switch_statement] = STATE(1357), - [sym__io_statement] = STATE(1357), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1357), - [sym_piped_io_statement] = STATE(1357), - [sym_block] = STATE(1356), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(488), - [sym_continue_statement] = ACTIONS(488), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(488), - [sym_nextfile_statement] = ACTIONS(488), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1174), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1174), + [sym_if_statement] = STATE(1174), + [sym_while_statement] = STATE(1174), + [sym_do_while_statement] = STATE(1174), + [sym_for_statement] = STATE(1174), + [sym_for_in_statement] = STATE(1174), + [sym_delete_statement] = STATE(1174), + [sym_exit_statement] = STATE(1174), + [sym_return_statement] = STATE(1174), + [sym_switch_statement] = STATE(1174), + [sym__io_statement] = STATE(1174), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1174), + [sym_piped_io_statement] = STATE(1174), + [sym_block] = STATE(1188), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(433), + [sym_continue_statement] = ACTIONS(433), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(433), + [sym_nextfile_statement] = ACTIONS(433), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [78] = { - [sym__statement] = STATE(1354), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1354), - [sym_if_statement] = STATE(1354), - [sym_while_statement] = STATE(1354), - [sym_do_while_statement] = STATE(1354), - [sym_for_statement] = STATE(1354), - [sym_for_in_statement] = STATE(1354), - [sym_delete_statement] = STATE(1354), - [sym_exit_statement] = STATE(1354), - [sym_return_statement] = STATE(1354), - [sym_switch_statement] = STATE(1354), - [sym__io_statement] = STATE(1354), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1354), - [sym_piped_io_statement] = STATE(1354), - [sym_block] = STATE(1352), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(492), - [sym_continue_statement] = ACTIONS(492), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(492), - [sym_nextfile_statement] = ACTIONS(492), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1180), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1180), + [sym_if_statement] = STATE(1180), + [sym_while_statement] = STATE(1180), + [sym_do_while_statement] = STATE(1180), + [sym_for_statement] = STATE(1180), + [sym_for_in_statement] = STATE(1180), + [sym_delete_statement] = STATE(1180), + [sym_exit_statement] = STATE(1180), + [sym_return_statement] = STATE(1180), + [sym_switch_statement] = STATE(1180), + [sym__io_statement] = STATE(1180), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1180), + [sym_piped_io_statement] = STATE(1180), + [sym_block] = STATE(1200), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(437), + [sym_continue_statement] = ACTIONS(437), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(437), + [sym_nextfile_statement] = ACTIONS(437), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [79] = { - [sym__statement] = STATE(1962), + [sym__statement] = STATE(1202), [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1962), - [sym_if_statement] = STATE(1962), - [sym_while_statement] = STATE(1962), - [sym_do_while_statement] = STATE(1962), - [sym_for_statement] = STATE(1962), - [sym_for_in_statement] = STATE(1962), - [sym_delete_statement] = STATE(1962), - [sym_exit_statement] = STATE(1962), - [sym_return_statement] = STATE(1962), - [sym_switch_statement] = STATE(1962), - [sym__io_statement] = STATE(1962), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1962), - [sym_piped_io_statement] = STATE(1962), - [sym_block] = STATE(1946), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(582), - [sym_continue_statement] = ACTIONS(582), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(582), - [sym_nextfile_statement] = ACTIONS(582), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_do_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_for_in_statement] = STATE(1202), + [sym_delete_statement] = STATE(1202), + [sym_exit_statement] = STATE(1202), + [sym_return_statement] = STATE(1202), + [sym_switch_statement] = STATE(1202), + [sym__io_statement] = STATE(1202), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1202), + [sym_piped_io_statement] = STATE(1202), + [sym_block] = STATE(1203), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(74), + [aux_sym_if_statement_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(447), + [sym_continue_statement] = ACTIONS(447), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(447), + [sym_nextfile_statement] = ACTIONS(447), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [80] = { - [sym__statement] = STATE(1267), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1267), - [sym_if_statement] = STATE(1267), - [sym_while_statement] = STATE(1267), - [sym_do_while_statement] = STATE(1267), - [sym_for_statement] = STATE(1267), - [sym_for_in_statement] = STATE(1267), - [sym_delete_statement] = STATE(1267), - [sym_exit_statement] = STATE(1267), - [sym_return_statement] = STATE(1267), - [sym_switch_statement] = STATE(1267), - [sym__io_statement] = STATE(1267), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1267), - [sym_piped_io_statement] = STATE(1267), - [sym_block] = STATE(1265), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(87), - [aux_sym_if_statement_repeat1] = STATE(87), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(518), - [sym_continue_statement] = ACTIONS(518), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(518), - [sym_nextfile_statement] = ACTIONS(518), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [81] = { - [sym__statement] = STATE(1254), - [sym__statement_separated] = STATE(1254), - [sym__control_statement] = STATE(1254), - [sym_if_statement] = STATE(1254), - [sym_while_statement] = STATE(1254), - [sym_do_while_statement] = STATE(1254), - [sym_for_statement] = STATE(1254), - [sym_for_in_statement] = STATE(1254), - [sym_delete_statement] = STATE(1254), - [sym_exit_statement] = STATE(1254), - [sym_return_statement] = STATE(1254), - [sym_switch_statement] = STATE(1254), - [sym__io_statement] = STATE(1254), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1254), - [sym_piped_io_statement] = STATE(1254), - [sym_block] = STATE(1253), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(550), - [sym_continue_statement] = ACTIONS(550), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(550), - [sym_nextfile_statement] = ACTIONS(550), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), - }, - [82] = { - [sym__statement] = STATE(1225), + [sym__statement] = STATE(1204), [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1225), - [sym_if_statement] = STATE(1225), - [sym_while_statement] = STATE(1225), - [sym_do_while_statement] = STATE(1225), - [sym_for_statement] = STATE(1225), - [sym_for_in_statement] = STATE(1225), - [sym_delete_statement] = STATE(1225), - [sym_exit_statement] = STATE(1225), - [sym_return_statement] = STATE(1225), - [sym_switch_statement] = STATE(1225), - [sym__io_statement] = STATE(1225), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1225), - [sym_piped_io_statement] = STATE(1225), - [sym_block] = STATE(1224), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(84), - [aux_sym_if_statement_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(382), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(386), - [sym_continue_statement] = ACTIONS(386), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(386), - [sym_nextfile_statement] = ACTIONS(386), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [83] = { - [sym__statement] = STATE(1271), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_do_while_statement] = STATE(1271), - [sym_for_statement] = STATE(1271), - [sym_for_in_statement] = STATE(1271), - [sym_delete_statement] = STATE(1271), - [sym_exit_statement] = STATE(1271), - [sym_return_statement] = STATE(1271), - [sym_switch_statement] = STATE(1271), - [sym__io_statement] = STATE(1271), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1271), - [sym_piped_io_statement] = STATE(1271), - [sym_block] = STATE(1270), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(480), - [sym_continue_statement] = ACTIONS(480), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(480), - [sym_nextfile_statement] = ACTIONS(480), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1204), + [sym_if_statement] = STATE(1204), + [sym_while_statement] = STATE(1204), + [sym_do_while_statement] = STATE(1204), + [sym_for_statement] = STATE(1204), + [sym_for_in_statement] = STATE(1204), + [sym_delete_statement] = STATE(1204), + [sym_exit_statement] = STATE(1204), + [sym_return_statement] = STATE(1204), + [sym_switch_statement] = STATE(1204), + [sym__io_statement] = STATE(1204), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1204), + [sym_piped_io_statement] = STATE(1204), + [sym_block] = STATE(1205), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(455), + [sym_continue_statement] = ACTIONS(455), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(455), + [sym_nextfile_statement] = ACTIONS(455), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, - [84] = { - [sym__statement] = STATE(1229), + [81] = { + [sym__statement] = STATE(1206), [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_while_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_delete_statement] = STATE(1229), - [sym_exit_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym__io_statement] = STATE(1229), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1229), - [sym_piped_io_statement] = STATE(1229), - [sym_block] = STATE(1228), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(416), - [sym_continue_statement] = ACTIONS(416), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(416), - [sym_nextfile_statement] = ACTIONS(416), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [85] = { - [sym__statement] = STATE(1274), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1274), - [sym_if_statement] = STATE(1274), - [sym_while_statement] = STATE(1274), - [sym_do_while_statement] = STATE(1274), - [sym_for_statement] = STATE(1274), - [sym_for_in_statement] = STATE(1274), - [sym_delete_statement] = STATE(1274), - [sym_exit_statement] = STATE(1274), - [sym_return_statement] = STATE(1274), - [sym_switch_statement] = STATE(1274), - [sym__io_statement] = STATE(1274), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1274), - [sym_piped_io_statement] = STATE(1274), - [sym_block] = STATE(1272), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(420), - [sym_continue_statement] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(420), - [sym_nextfile_statement] = ACTIONS(420), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1206), + [sym_if_statement] = STATE(1206), + [sym_while_statement] = STATE(1206), + [sym_do_while_statement] = STATE(1206), + [sym_for_statement] = STATE(1206), + [sym_for_in_statement] = STATE(1206), + [sym_delete_statement] = STATE(1206), + [sym_exit_statement] = STATE(1206), + [sym_return_statement] = STATE(1206), + [sym_switch_statement] = STATE(1206), + [sym__io_statement] = STATE(1206), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1206), + [sym_piped_io_statement] = STATE(1206), + [sym_block] = STATE(1217), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(459), + [sym_continue_statement] = ACTIONS(459), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(459), + [sym_nextfile_statement] = ACTIONS(459), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, - [86] = { + [82] = { [sym__statement] = STATE(1232), - [sym__statement_separated] = STATE(153), + [sym__statement_separated] = STATE(1232), [sym__control_statement] = STATE(1232), [sym_if_statement] = STATE(1232), [sym_while_statement] = STATE(1232), @@ -14840,1073 +18949,1835 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1232), [sym_switch_statement] = STATE(1232), [sym__io_statement] = STATE(1232), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), [sym_redirected_io_statement] = STATE(1232), [sym_piped_io_statement] = STATE(1232), [sym_block] = STATE(1231), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(92), - [aux_sym_if_statement_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(424), - [sym_continue_statement] = ACTIONS(424), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(424), - [sym_nextfile_statement] = ACTIONS(424), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(128), + [aux_sym_if_statement_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(543), + [sym_continue_statement] = ACTIONS(543), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(543), + [sym_nextfile_statement] = ACTIONS(543), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), + }, + [83] = { + [sym__statement] = STATE(1169), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1169), + [sym_if_statement] = STATE(1169), + [sym_while_statement] = STATE(1169), + [sym_do_while_statement] = STATE(1169), + [sym_for_statement] = STATE(1169), + [sym_for_in_statement] = STATE(1169), + [sym_delete_statement] = STATE(1169), + [sym_exit_statement] = STATE(1169), + [sym_return_statement] = STATE(1169), + [sym_switch_statement] = STATE(1169), + [sym__io_statement] = STATE(1169), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1169), + [sym_piped_io_statement] = STATE(1169), + [sym_block] = STATE(1184), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(77), + [aux_sym_if_statement_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(467), + [sym_continue_statement] = ACTIONS(467), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(467), + [sym_nextfile_statement] = ACTIONS(467), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [84] = { + [sym__statement] = STATE(1163), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_do_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_for_in_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_exit_statement] = STATE(1163), + [sym_return_statement] = STATE(1163), + [sym_switch_statement] = STATE(1163), + [sym__io_statement] = STATE(1163), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1163), + [sym_piped_io_statement] = STATE(1163), + [sym_block] = STATE(1209), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(78), + [aux_sym_if_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(471), + [sym_continue_statement] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(471), + [sym_nextfile_statement] = ACTIONS(471), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [85] = { + [sym__statement] = STATE(1190), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_while_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_delete_statement] = STATE(1190), + [sym_exit_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym__io_statement] = STATE(1190), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1190), + [sym_piped_io_statement] = STATE(1190), + [sym_block] = STATE(1212), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(80), + [aux_sym_if_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(475), + [sym_continue_statement] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(475), + [sym_nextfile_statement] = ACTIONS(475), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [86] = { + [sym__statement] = STATE(1187), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1187), + [sym_if_statement] = STATE(1187), + [sym_while_statement] = STATE(1187), + [sym_do_while_statement] = STATE(1187), + [sym_for_statement] = STATE(1187), + [sym_for_in_statement] = STATE(1187), + [sym_delete_statement] = STATE(1187), + [sym_exit_statement] = STATE(1187), + [sym_return_statement] = STATE(1187), + [sym_switch_statement] = STATE(1187), + [sym__io_statement] = STATE(1187), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1187), + [sym_piped_io_statement] = STATE(1187), + [sym_block] = STATE(1213), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(81), + [aux_sym_if_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(479), + [sym_continue_statement] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(479), + [sym_nextfile_statement] = ACTIONS(479), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [87] = { - [sym__statement] = STATE(1276), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1276), - [sym_if_statement] = STATE(1276), - [sym_while_statement] = STATE(1276), - [sym_do_while_statement] = STATE(1276), - [sym_for_statement] = STATE(1276), - [sym_for_in_statement] = STATE(1276), - [sym_delete_statement] = STATE(1276), - [sym_exit_statement] = STATE(1276), - [sym_return_statement] = STATE(1276), - [sym_switch_statement] = STATE(1276), - [sym__io_statement] = STATE(1276), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1276), - [sym_piped_io_statement] = STATE(1276), - [sym_block] = STATE(1275), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(314), - [sym_continue_statement] = ACTIONS(314), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(314), - [sym_nextfile_statement] = ACTIONS(314), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1215), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_while_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_delete_statement] = STATE(1215), + [sym_exit_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym__io_statement] = STATE(1215), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1215), + [sym_piped_io_statement] = STATE(1215), + [sym_block] = STATE(1211), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(487), + [sym_continue_statement] = ACTIONS(487), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(487), + [sym_nextfile_statement] = ACTIONS(487), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [88] = { - [sym__statement] = STATE(1278), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1278), - [sym_if_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [sym_do_while_statement] = STATE(1278), - [sym_for_statement] = STATE(1278), - [sym_for_in_statement] = STATE(1278), - [sym_delete_statement] = STATE(1278), - [sym_exit_statement] = STATE(1278), - [sym_return_statement] = STATE(1278), - [sym_switch_statement] = STATE(1278), - [sym__io_statement] = STATE(1278), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1278), - [sym_piped_io_statement] = STATE(1278), - [sym_block] = STATE(1277), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(90), - [aux_sym_if_statement_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(586), - [sym_continue_statement] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(586), - [sym_nextfile_statement] = ACTIONS(586), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1208), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1208), + [sym_if_statement] = STATE(1208), + [sym_while_statement] = STATE(1208), + [sym_do_while_statement] = STATE(1208), + [sym_for_statement] = STATE(1208), + [sym_for_in_statement] = STATE(1208), + [sym_delete_statement] = STATE(1208), + [sym_exit_statement] = STATE(1208), + [sym_return_statement] = STATE(1208), + [sym_switch_statement] = STATE(1208), + [sym__io_statement] = STATE(1208), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1208), + [sym_piped_io_statement] = STATE(1208), + [sym_block] = STATE(1216), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(87), + [aux_sym_if_statement_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(491), + [sym_continue_statement] = ACTIONS(491), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(491), + [sym_nextfile_statement] = ACTIONS(491), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [89] = { - [sym__statement] = STATE(1340), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1340), - [sym_if_statement] = STATE(1340), - [sym_while_statement] = STATE(1340), - [sym_do_while_statement] = STATE(1340), - [sym_for_statement] = STATE(1340), - [sym_for_in_statement] = STATE(1340), - [sym_delete_statement] = STATE(1340), - [sym_exit_statement] = STATE(1340), - [sym_return_statement] = STATE(1340), - [sym_switch_statement] = STATE(1340), - [sym__io_statement] = STATE(1340), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1340), - [sym_piped_io_statement] = STATE(1340), - [sym_block] = STATE(1337), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(74), - [aux_sym_if_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(496), - [sym_continue_statement] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(496), - [sym_nextfile_statement] = ACTIONS(496), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1166), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1166), + [sym_if_statement] = STATE(1166), + [sym_while_statement] = STATE(1166), + [sym_do_while_statement] = STATE(1166), + [sym_for_statement] = STATE(1166), + [sym_for_in_statement] = STATE(1166), + [sym_delete_statement] = STATE(1166), + [sym_exit_statement] = STATE(1166), + [sym_return_statement] = STATE(1166), + [sym_switch_statement] = STATE(1166), + [sym__io_statement] = STATE(1166), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1166), + [sym_piped_io_statement] = STATE(1166), + [sym_block] = STATE(1167), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(499), + [sym_continue_statement] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(499), + [sym_nextfile_statement] = ACTIONS(499), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [90] = { - [sym__statement] = STATE(1280), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1280), - [sym_if_statement] = STATE(1280), - [sym_while_statement] = STATE(1280), - [sym_do_while_statement] = STATE(1280), - [sym_for_statement] = STATE(1280), - [sym_for_in_statement] = STATE(1280), - [sym_delete_statement] = STATE(1280), - [sym_exit_statement] = STATE(1280), - [sym_return_statement] = STATE(1280), - [sym_switch_statement] = STATE(1280), - [sym__io_statement] = STATE(1280), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1280), - [sym_piped_io_statement] = STATE(1280), - [sym_block] = STATE(1279), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(590), - [sym_continue_statement] = ACTIONS(590), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(590), - [sym_nextfile_statement] = ACTIONS(590), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1181), + [sym__statement_separated] = STATE(1181), + [sym__control_statement] = STATE(1181), + [sym_if_statement] = STATE(1181), + [sym_while_statement] = STATE(1181), + [sym_do_while_statement] = STATE(1181), + [sym_for_statement] = STATE(1181), + [sym_for_in_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_exit_statement] = STATE(1181), + [sym_return_statement] = STATE(1181), + [sym_switch_statement] = STATE(1181), + [sym__io_statement] = STATE(1181), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1181), + [sym_piped_io_statement] = STATE(1181), + [sym_block] = STATE(1176), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(136), + [aux_sym_if_statement_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(425), + [sym_continue_statement] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(425), + [sym_nextfile_statement] = ACTIONS(425), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [91] = { - [sym__statement] = STATE(1336), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1336), - [sym_if_statement] = STATE(1336), - [sym_while_statement] = STATE(1336), - [sym_do_while_statement] = STATE(1336), - [sym_for_statement] = STATE(1336), - [sym_for_in_statement] = STATE(1336), - [sym_delete_statement] = STATE(1336), - [sym_exit_statement] = STATE(1336), - [sym_return_statement] = STATE(1336), - [sym_switch_statement] = STATE(1336), - [sym__io_statement] = STATE(1336), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1336), - [sym_piped_io_statement] = STATE(1336), - [sym_block] = STATE(1334), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(75), - [aux_sym_if_statement_repeat1] = STATE(75), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(504), - [sym_continue_statement] = ACTIONS(504), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(504), - [sym_nextfile_statement] = ACTIONS(504), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1236), + [sym__statement_separated] = STATE(1236), + [sym__control_statement] = STATE(1236), + [sym_if_statement] = STATE(1236), + [sym_while_statement] = STATE(1236), + [sym_do_while_statement] = STATE(1236), + [sym_for_statement] = STATE(1236), + [sym_for_in_statement] = STATE(1236), + [sym_delete_statement] = STATE(1236), + [sym_exit_statement] = STATE(1236), + [sym_return_statement] = STATE(1236), + [sym_switch_statement] = STATE(1236), + [sym__io_statement] = STATE(1236), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1236), + [sym_piped_io_statement] = STATE(1236), + [sym_block] = STATE(1235), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(539), + [sym_continue_statement] = ACTIONS(539), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(539), + [sym_nextfile_statement] = ACTIONS(539), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [92] = { - [sym__statement] = STATE(1239), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_do_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_for_in_statement] = STATE(1239), - [sym_delete_statement] = STATE(1239), - [sym_exit_statement] = STATE(1239), - [sym_return_statement] = STATE(1239), - [sym_switch_statement] = STATE(1239), - [sym__io_statement] = STATE(1239), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1239), - [sym_piped_io_statement] = STATE(1239), - [sym_block] = STATE(1238), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(428), - [sym_continue_statement] = ACTIONS(428), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(428), - [sym_nextfile_statement] = ACTIONS(428), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1264), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1264), + [sym_if_statement] = STATE(1264), + [sym_while_statement] = STATE(1264), + [sym_do_while_statement] = STATE(1264), + [sym_for_statement] = STATE(1264), + [sym_for_in_statement] = STATE(1264), + [sym_delete_statement] = STATE(1264), + [sym_exit_statement] = STATE(1264), + [sym_return_statement] = STATE(1264), + [sym_switch_statement] = STATE(1264), + [sym__io_statement] = STATE(1264), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1264), + [sym_piped_io_statement] = STATE(1264), + [sym_block] = STATE(1228), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(507), + [sym_continue_statement] = ACTIONS(507), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(507), + [sym_nextfile_statement] = ACTIONS(507), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [93] = { - [sym__statement] = STATE(1322), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1322), - [sym_if_statement] = STATE(1322), - [sym_while_statement] = STATE(1322), - [sym_do_while_statement] = STATE(1322), - [sym_for_statement] = STATE(1322), - [sym_for_in_statement] = STATE(1322), - [sym_delete_statement] = STATE(1322), - [sym_exit_statement] = STATE(1322), - [sym_return_statement] = STATE(1322), - [sym_switch_statement] = STATE(1322), - [sym__io_statement] = STATE(1322), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1322), - [sym_piped_io_statement] = STATE(1322), - [sym_block] = STATE(1360), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(70), - [aux_sym_if_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(594), - [sym_continue_statement] = ACTIONS(594), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(594), - [sym_nextfile_statement] = ACTIONS(594), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1230), + [sym__statement_separated] = STATE(1230), + [sym__control_statement] = STATE(1230), + [sym_if_statement] = STATE(1230), + [sym_while_statement] = STATE(1230), + [sym_do_while_statement] = STATE(1230), + [sym_for_statement] = STATE(1230), + [sym_for_in_statement] = STATE(1230), + [sym_delete_statement] = STATE(1230), + [sym_exit_statement] = STATE(1230), + [sym_return_statement] = STATE(1230), + [sym_switch_statement] = STATE(1230), + [sym__io_statement] = STATE(1230), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1230), + [sym_piped_io_statement] = STATE(1230), + [sym_block] = STATE(1223), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(42), + [aux_sym_if_statement_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(551), + [sym_continue_statement] = ACTIONS(551), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(551), + [sym_nextfile_statement] = ACTIONS(551), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [94] = { - [sym__statement] = STATE(1330), + [sym__statement] = STATE(1258), [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1330), - [sym_if_statement] = STATE(1330), - [sym_while_statement] = STATE(1330), - [sym_do_while_statement] = STATE(1330), - [sym_for_statement] = STATE(1330), - [sym_for_in_statement] = STATE(1330), - [sym_delete_statement] = STATE(1330), - [sym_exit_statement] = STATE(1330), - [sym_return_statement] = STATE(1330), - [sym_switch_statement] = STATE(1330), - [sym__io_statement] = STATE(1330), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1330), - [sym_piped_io_statement] = STATE(1330), - [sym_block] = STATE(1329), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(77), - [aux_sym_if_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(514), - [sym_continue_statement] = ACTIONS(514), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(514), - [sym_nextfile_statement] = ACTIONS(514), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1258), + [sym_if_statement] = STATE(1258), + [sym_while_statement] = STATE(1258), + [sym_do_while_statement] = STATE(1258), + [sym_for_statement] = STATE(1258), + [sym_for_in_statement] = STATE(1258), + [sym_delete_statement] = STATE(1258), + [sym_exit_statement] = STATE(1258), + [sym_return_statement] = STATE(1258), + [sym_switch_statement] = STATE(1258), + [sym__io_statement] = STATE(1258), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1258), + [sym_piped_io_statement] = STATE(1258), + [sym_block] = STATE(1256), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(515), + [sym_continue_statement] = ACTIONS(515), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(515), + [sym_nextfile_statement] = ACTIONS(515), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [95] = { - [sym__statement] = STATE(1328), + [sym__statement] = STATE(1254), [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_while_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_delete_statement] = STATE(1328), - [sym_exit_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym__io_statement] = STATE(1328), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1328), - [sym_piped_io_statement] = STATE(1328), - [sym_block] = STATE(1326), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(78), - [aux_sym_if_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(534), - [sym_continue_statement] = ACTIONS(534), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(534), - [sym_nextfile_statement] = ACTIONS(534), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1254), + [sym_if_statement] = STATE(1254), + [sym_while_statement] = STATE(1254), + [sym_do_while_statement] = STATE(1254), + [sym_for_statement] = STATE(1254), + [sym_for_in_statement] = STATE(1254), + [sym_delete_statement] = STATE(1254), + [sym_exit_statement] = STATE(1254), + [sym_return_statement] = STATE(1254), + [sym_switch_statement] = STATE(1254), + [sym__io_statement] = STATE(1254), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1254), + [sym_piped_io_statement] = STATE(1254), + [sym_block] = STATE(1252), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(517), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(519), + [sym_continue_statement] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(519), + [sym_nextfile_statement] = ACTIONS(519), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [96] = { - [sym__statement] = STATE(1325), + [sym__statement] = STATE(1251), [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1325), - [sym_if_statement] = STATE(1325), - [sym_while_statement] = STATE(1325), - [sym_do_while_statement] = STATE(1325), - [sym_for_statement] = STATE(1325), - [sym_for_in_statement] = STATE(1325), - [sym_delete_statement] = STATE(1325), - [sym_exit_statement] = STATE(1325), - [sym_return_statement] = STATE(1325), - [sym_switch_statement] = STATE(1325), - [sym__io_statement] = STATE(1325), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1325), - [sym_piped_io_statement] = STATE(1325), - [sym_block] = STATE(1324), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(538), - [sym_continue_statement] = ACTIONS(538), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(538), - [sym_nextfile_statement] = ACTIONS(538), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__control_statement] = STATE(1251), + [sym_if_statement] = STATE(1251), + [sym_while_statement] = STATE(1251), + [sym_do_while_statement] = STATE(1251), + [sym_for_statement] = STATE(1251), + [sym_for_in_statement] = STATE(1251), + [sym_delete_statement] = STATE(1251), + [sym_exit_statement] = STATE(1251), + [sym_return_statement] = STATE(1251), + [sym_switch_statement] = STATE(1251), + [sym__io_statement] = STATE(1251), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1251), + [sym_piped_io_statement] = STATE(1251), + [sym_block] = STATE(1218), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(523), + [sym_continue_statement] = ACTIONS(523), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(523), + [sym_nextfile_statement] = ACTIONS(523), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [97] = { - [sym__statement] = STATE(1242), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_do_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_for_in_statement] = STATE(1242), - [sym_delete_statement] = STATE(1242), - [sym_exit_statement] = STATE(1242), - [sym_return_statement] = STATE(1242), - [sym_switch_statement] = STATE(1242), - [sym__io_statement] = STATE(1242), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1242), - [sym_piped_io_statement] = STATE(1242), - [sym_block] = STATE(1240), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(113), - [aux_sym_if_statement_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(476), - [sym_continue_statement] = ACTIONS(476), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(476), - [sym_nextfile_statement] = ACTIONS(476), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1246), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1246), + [sym_if_statement] = STATE(1246), + [sym_while_statement] = STATE(1246), + [sym_do_while_statement] = STATE(1246), + [sym_for_statement] = STATE(1246), + [sym_for_in_statement] = STATE(1246), + [sym_delete_statement] = STATE(1246), + [sym_exit_statement] = STATE(1246), + [sym_return_statement] = STATE(1246), + [sym_switch_statement] = STATE(1246), + [sym__io_statement] = STATE(1246), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1246), + [sym_piped_io_statement] = STATE(1246), + [sym_block] = STATE(1245), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(94), + [aux_sym_if_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(527), + [sym_continue_statement] = ACTIONS(527), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(527), + [sym_nextfile_statement] = ACTIONS(527), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [98] = { - [sym__statement] = STATE(1879), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1879), - [sym_if_statement] = STATE(1879), - [sym_while_statement] = STATE(1879), - [sym_do_while_statement] = STATE(1879), - [sym_for_statement] = STATE(1879), - [sym_for_in_statement] = STATE(1879), - [sym_delete_statement] = STATE(1879), - [sym_exit_statement] = STATE(1879), - [sym_return_statement] = STATE(1879), - [sym_switch_statement] = STATE(1879), - [sym__io_statement] = STATE(1879), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1879), - [sym_piped_io_statement] = STATE(1879), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(57), - [aux_sym_if_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(224), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(596), - [sym_continue_statement] = ACTIONS(596), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_case] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(596), - [sym_nextfile_statement] = ACTIONS(596), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), - }, - [99] = { - [sym__statement] = STATE(1225), - [sym__statement_separated] = STATE(1225), - [sym__control_statement] = STATE(1225), - [sym_if_statement] = STATE(1225), - [sym_while_statement] = STATE(1225), - [sym_do_while_statement] = STATE(1225), - [sym_for_statement] = STATE(1225), - [sym_for_in_statement] = STATE(1225), - [sym_delete_statement] = STATE(1225), - [sym_exit_statement] = STATE(1225), - [sym_return_statement] = STATE(1225), - [sym_switch_statement] = STATE(1225), - [sym__io_statement] = STATE(1225), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1225), - [sym_piped_io_statement] = STATE(1225), - [sym_block] = STATE(1224), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(115), - [aux_sym_if_statement_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(382), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(386), - [sym_continue_statement] = ACTIONS(386), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(386), - [sym_nextfile_statement] = ACTIONS(386), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), - }, - [100] = { [sym__statement] = STATE(1244), - [sym__statement_separated] = STATE(153), + [sym__statement_separated] = STATE(154), [sym__control_statement] = STATE(1244), [sym_if_statement] = STATE(1244), [sym_while_statement] = STATE(1244), @@ -15918,303 +20789,915 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1244), [sym_switch_statement] = STATE(1244), [sym__io_statement] = STATE(1244), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), [sym_redirected_io_statement] = STATE(1244), [sym_piped_io_statement] = STATE(1244), [sym_block] = STATE(1243), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(119), - [aux_sym_if_statement_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(484), - [sym_continue_statement] = ACTIONS(484), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(484), - [sym_nextfile_statement] = ACTIONS(484), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(95), + [aux_sym_if_statement_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(529), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(531), + [sym_continue_statement] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(531), + [sym_nextfile_statement] = ACTIONS(531), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [99] = { + [sym__statement] = STATE(1240), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1240), + [sym_if_statement] = STATE(1240), + [sym_while_statement] = STATE(1240), + [sym_do_while_statement] = STATE(1240), + [sym_for_statement] = STATE(1240), + [sym_for_in_statement] = STATE(1240), + [sym_delete_statement] = STATE(1240), + [sym_exit_statement] = STATE(1240), + [sym_return_statement] = STATE(1240), + [sym_switch_statement] = STATE(1240), + [sym__io_statement] = STATE(1240), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1240), + [sym_piped_io_statement] = STATE(1240), + [sym_block] = STATE(1237), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(533), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(535), + [sym_continue_statement] = ACTIONS(535), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(535), + [sym_nextfile_statement] = ACTIONS(535), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [100] = { + [sym__statement] = STATE(1240), + [sym__statement_separated] = STATE(1240), + [sym__control_statement] = STATE(1240), + [sym_if_statement] = STATE(1240), + [sym_while_statement] = STATE(1240), + [sym_do_while_statement] = STATE(1240), + [sym_for_statement] = STATE(1240), + [sym_for_in_statement] = STATE(1240), + [sym_delete_statement] = STATE(1240), + [sym_exit_statement] = STATE(1240), + [sym_return_statement] = STATE(1240), + [sym_switch_statement] = STATE(1240), + [sym__io_statement] = STATE(1240), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1240), + [sym_piped_io_statement] = STATE(1240), + [sym_block] = STATE(1237), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(533), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(535), + [sym_continue_statement] = ACTIONS(535), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(535), + [sym_nextfile_statement] = ACTIONS(535), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, [101] = { - [sym__statement] = STATE(1246), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1246), - [sym_if_statement] = STATE(1246), - [sym_while_statement] = STATE(1246), - [sym_do_while_statement] = STATE(1246), - [sym_for_statement] = STATE(1246), - [sym_for_in_statement] = STATE(1246), - [sym_delete_statement] = STATE(1246), - [sym_exit_statement] = STATE(1246), - [sym_return_statement] = STATE(1246), - [sym_switch_statement] = STATE(1246), - [sym__io_statement] = STATE(1246), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1246), - [sym_piped_io_statement] = STATE(1246), - [sym_block] = STATE(1245), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(131), - [aux_sym_if_statement_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(500), - [sym_continue_statement] = ACTIONS(500), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(500), - [sym_nextfile_statement] = ACTIONS(500), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1236), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1236), + [sym_if_statement] = STATE(1236), + [sym_while_statement] = STATE(1236), + [sym_do_while_statement] = STATE(1236), + [sym_for_statement] = STATE(1236), + [sym_for_in_statement] = STATE(1236), + [sym_delete_statement] = STATE(1236), + [sym_exit_statement] = STATE(1236), + [sym_return_statement] = STATE(1236), + [sym_switch_statement] = STATE(1236), + [sym__io_statement] = STATE(1236), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1236), + [sym_piped_io_statement] = STATE(1236), + [sym_block] = STATE(1235), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(539), + [sym_continue_statement] = ACTIONS(539), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(539), + [sym_nextfile_statement] = ACTIONS(539), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [102] = { - [sym__statement] = STATE(1369), - [sym__statement_separated] = STATE(1369), - [sym__control_statement] = STATE(1369), - [sym_if_statement] = STATE(1369), - [sym_while_statement] = STATE(1369), - [sym_do_while_statement] = STATE(1369), - [sym_for_statement] = STATE(1369), - [sym_for_in_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_exit_statement] = STATE(1369), - [sym_return_statement] = STATE(1369), - [sym_switch_statement] = STATE(1369), - [sym__io_statement] = STATE(1369), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1369), - [sym_piped_io_statement] = STATE(1369), - [sym_block] = STATE(1371), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(60), - [aux_sym_if_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(298), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(300), - [sym_continue_statement] = ACTIONS(300), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(300), - [sym_nextfile_statement] = ACTIONS(300), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1232), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_delete_statement] = STATE(1232), + [sym_exit_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym__io_statement] = STATE(1232), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1232), + [sym_piped_io_statement] = STATE(1232), + [sym_block] = STATE(1231), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(96), + [aux_sym_if_statement_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(543), + [sym_continue_statement] = ACTIONS(543), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(543), + [sym_nextfile_statement] = ACTIONS(543), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [103] = { - [sym__statement] = STATE(1373), - [sym__statement_separated] = STATE(1373), - [sym__control_statement] = STATE(1373), - [sym_if_statement] = STATE(1373), - [sym_while_statement] = STATE(1373), - [sym_do_while_statement] = STATE(1373), - [sym_for_statement] = STATE(1373), - [sym_for_in_statement] = STATE(1373), - [sym_delete_statement] = STATE(1373), - [sym_exit_statement] = STATE(1373), - [sym_return_statement] = STATE(1373), - [sym_switch_statement] = STATE(1373), - [sym__io_statement] = STATE(1373), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1373), - [sym_piped_io_statement] = STATE(1373), - [sym_block] = STATE(1299), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(63), - [aux_sym_if_statement_repeat1] = STATE(63), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(404), - [sym_continue_statement] = ACTIONS(404), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(404), - [sym_nextfile_statement] = ACTIONS(404), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1229), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_while_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_delete_statement] = STATE(1229), + [sym_exit_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym__io_statement] = STATE(1229), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1229), + [sym_piped_io_statement] = STATE(1229), + [sym_block] = STATE(1227), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(547), + [sym_continue_statement] = ACTIONS(547), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(547), + [sym_nextfile_statement] = ACTIONS(547), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [104] = { + [sym__statement] = STATE(1226), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1226), + [sym_if_statement] = STATE(1226), + [sym_while_statement] = STATE(1226), + [sym_do_while_statement] = STATE(1226), + [sym_for_statement] = STATE(1226), + [sym_for_in_statement] = STATE(1226), + [sym_delete_statement] = STATE(1226), + [sym_exit_statement] = STATE(1226), + [sym_return_statement] = STATE(1226), + [sym_switch_statement] = STATE(1226), + [sym__io_statement] = STATE(1226), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1226), + [sym_piped_io_statement] = STATE(1226), + [sym_block] = STATE(1225), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(503), + [sym_continue_statement] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(503), + [sym_nextfile_statement] = ACTIONS(503), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [105] = { + [sym__statement] = STATE(1265), + [sym__statement_separated] = STATE(1265), + [sym__control_statement] = STATE(1265), + [sym_if_statement] = STATE(1265), + [sym_while_statement] = STATE(1265), + [sym_do_while_statement] = STATE(1265), + [sym_for_statement] = STATE(1265), + [sym_for_in_statement] = STATE(1265), + [sym_delete_statement] = STATE(1265), + [sym_exit_statement] = STATE(1265), + [sym_return_statement] = STATE(1265), + [sym_switch_statement] = STATE(1265), + [sym__io_statement] = STATE(1265), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1265), + [sym_piped_io_statement] = STATE(1265), + [sym_block] = STATE(1271), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(553), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(555), + [sym_continue_statement] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(555), + [sym_nextfile_statement] = ACTIONS(555), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), + }, + [106] = { [sym__statement] = STATE(1248), - [sym__statement_separated] = STATE(153), + [sym__statement_separated] = STATE(154), [sym__control_statement] = STATE(1248), [sym_if_statement] = STATE(1248), [sym_while_statement] = STATE(1248), @@ -16226,688 +21709,2640 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1248), [sym_switch_statement] = STATE(1248), [sym__io_statement] = STATE(1248), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), [sym_redirected_io_statement] = STATE(1248), [sym_piped_io_statement] = STATE(1248), - [sym_block] = STATE(1247), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(141), - [aux_sym_if_statement_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(542), - [sym_continue_statement] = ACTIONS(542), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(542), - [sym_nextfile_statement] = ACTIONS(542), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [105] = { - [sym__statement] = STATE(1370), - [sym__statement_separated] = STATE(1370), - [sym__control_statement] = STATE(1370), - [sym_if_statement] = STATE(1370), - [sym_while_statement] = STATE(1370), - [sym_do_while_statement] = STATE(1370), - [sym_for_statement] = STATE(1370), - [sym_for_in_statement] = STATE(1370), - [sym_delete_statement] = STATE(1370), - [sym_exit_statement] = STATE(1370), - [sym_return_statement] = STATE(1370), - [sym_switch_statement] = STATE(1370), - [sym__io_statement] = STATE(1370), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1370), - [sym_piped_io_statement] = STATE(1370), - [sym_block] = STATE(1367), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(408), - [sym_continue_statement] = ACTIONS(408), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(408), - [sym_nextfile_statement] = ACTIONS(408), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), - }, - [106] = { - [sym__statement] = STATE(1855), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1855), - [sym_if_statement] = STATE(1855), - [sym_while_statement] = STATE(1855), - [sym_do_while_statement] = STATE(1855), - [sym_for_statement] = STATE(1855), - [sym_for_in_statement] = STATE(1855), - [sym_delete_statement] = STATE(1855), - [sym_exit_statement] = STATE(1855), - [sym_return_statement] = STATE(1855), - [sym_switch_statement] = STATE(1855), - [sym__io_statement] = STATE(1855), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1855), - [sym_piped_io_statement] = STATE(1855), - [sym_block] = STATE(1856), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(602), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(604), - [sym_continue_statement] = ACTIONS(604), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(604), - [sym_nextfile_statement] = ACTIONS(604), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym_block] = STATE(1219), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(99), + [aux_sym_if_statement_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(441), + [sym_continue_statement] = ACTIONS(441), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(441), + [sym_nextfile_statement] = ACTIONS(441), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [107] = { - [sym__statement] = STATE(1844), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1844), - [sym_if_statement] = STATE(1844), - [sym_while_statement] = STATE(1844), - [sym_do_while_statement] = STATE(1844), - [sym_for_statement] = STATE(1844), - [sym_for_in_statement] = STATE(1844), - [sym_delete_statement] = STATE(1844), - [sym_exit_statement] = STATE(1844), - [sym_return_statement] = STATE(1844), - [sym_switch_statement] = STATE(1844), - [sym__io_statement] = STATE(1844), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1844), - [sym_piped_io_statement] = STATE(1844), - [sym_block] = STATE(1846), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_comment] = STATE(32), - [aux_sym_if_statement_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(606), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(608), - [sym_continue_statement] = ACTIONS(608), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(608), - [sym_nextfile_statement] = ACTIONS(608), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1261), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1261), + [sym_if_statement] = STATE(1261), + [sym_while_statement] = STATE(1261), + [sym_do_while_statement] = STATE(1261), + [sym_for_statement] = STATE(1261), + [sym_for_in_statement] = STATE(1261), + [sym_delete_statement] = STATE(1261), + [sym_exit_statement] = STATE(1261), + [sym_return_statement] = STATE(1261), + [sym_switch_statement] = STATE(1261), + [sym__io_statement] = STATE(1261), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1261), + [sym_piped_io_statement] = STATE(1261), + [sym_block] = STATE(1268), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(101), + [aux_sym_if_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(449), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(451), + [sym_continue_statement] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(451), + [sym_nextfile_statement] = ACTIONS(451), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [108] = { - [sym__statement] = STATE(1278), - [sym__statement_separated] = STATE(1278), - [sym__control_statement] = STATE(1278), - [sym_if_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [sym_do_while_statement] = STATE(1278), - [sym_for_statement] = STATE(1278), - [sym_for_in_statement] = STATE(1278), - [sym_delete_statement] = STATE(1278), - [sym_exit_statement] = STATE(1278), - [sym_return_statement] = STATE(1278), - [sym_switch_statement] = STATE(1278), - [sym__io_statement] = STATE(1278), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1278), - [sym_piped_io_statement] = STATE(1278), - [sym_block] = STATE(1277), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(109), - [aux_sym_if_statement_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(586), - [sym_continue_statement] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(586), - [sym_nextfile_statement] = ACTIONS(586), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1269), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1269), + [sym_if_statement] = STATE(1269), + [sym_while_statement] = STATE(1269), + [sym_do_while_statement] = STATE(1269), + [sym_for_statement] = STATE(1269), + [sym_for_in_statement] = STATE(1269), + [sym_delete_statement] = STATE(1269), + [sym_exit_statement] = STATE(1269), + [sym_return_statement] = STATE(1269), + [sym_switch_statement] = STATE(1269), + [sym__io_statement] = STATE(1269), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1269), + [sym_piped_io_statement] = STATE(1269), + [sym_block] = STATE(1270), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(103), + [aux_sym_if_statement_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(463), + [sym_continue_statement] = ACTIONS(463), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(463), + [sym_nextfile_statement] = ACTIONS(463), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [109] = { - [sym__statement] = STATE(1280), - [sym__statement_separated] = STATE(1280), - [sym__control_statement] = STATE(1280), - [sym_if_statement] = STATE(1280), - [sym_while_statement] = STATE(1280), - [sym_do_while_statement] = STATE(1280), - [sym_for_statement] = STATE(1280), - [sym_for_in_statement] = STATE(1280), - [sym_delete_statement] = STATE(1280), - [sym_exit_statement] = STATE(1280), - [sym_return_statement] = STATE(1280), - [sym_switch_statement] = STATE(1280), - [sym__io_statement] = STATE(1280), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1280), - [sym_piped_io_statement] = STATE(1280), - [sym_block] = STATE(1279), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(590), - [sym_continue_statement] = ACTIONS(590), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(590), - [sym_nextfile_statement] = ACTIONS(590), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1175), + [sym__statement_separated] = STATE(1175), + [sym__control_statement] = STATE(1175), + [sym_if_statement] = STATE(1175), + [sym_while_statement] = STATE(1175), + [sym_do_while_statement] = STATE(1175), + [sym_for_statement] = STATE(1175), + [sym_for_in_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_exit_statement] = STATE(1175), + [sym_return_statement] = STATE(1175), + [sym_switch_statement] = STATE(1175), + [sym__io_statement] = STATE(1175), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1175), + [sym_piped_io_statement] = STATE(1175), + [sym_block] = STATE(1164), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(16), + [aux_sym_if_statement_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(429), + [sym_continue_statement] = ACTIONS(429), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(429), + [sym_nextfile_statement] = ACTIONS(429), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [110] = { - [sym__statement] = STATE(1353), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1353), - [sym_if_statement] = STATE(1353), - [sym_while_statement] = STATE(1353), - [sym_do_while_statement] = STATE(1353), - [sym_for_statement] = STATE(1353), - [sym_for_in_statement] = STATE(1353), - [sym_delete_statement] = STATE(1353), - [sym_exit_statement] = STATE(1353), - [sym_return_statement] = STATE(1353), - [sym_switch_statement] = STATE(1353), - [sym__io_statement] = STATE(1353), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1353), - [sym_piped_io_statement] = STATE(1353), - [sym_block] = STATE(1355), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(522), - [sym_continue_statement] = ACTIONS(522), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(522), - [sym_nextfile_statement] = ACTIONS(522), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1272), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1272), + [sym_if_statement] = STATE(1272), + [sym_while_statement] = STATE(1272), + [sym_do_while_statement] = STATE(1272), + [sym_for_statement] = STATE(1272), + [sym_for_in_statement] = STATE(1272), + [sym_delete_statement] = STATE(1272), + [sym_exit_statement] = STATE(1272), + [sym_return_statement] = STATE(1272), + [sym_switch_statement] = STATE(1272), + [sym__io_statement] = STATE(1272), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1272), + [sym_piped_io_statement] = STATE(1272), + [sym_block] = STATE(1273), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(104), + [aux_sym_if_statement_repeat1] = STATE(104), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(483), + [sym_continue_statement] = ACTIONS(483), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(483), + [sym_nextfile_statement] = ACTIONS(483), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [111] = { - [sym__statement] = STATE(1357), - [sym__statement_separated] = STATE(1357), - [sym__control_statement] = STATE(1357), - [sym_if_statement] = STATE(1357), - [sym_while_statement] = STATE(1357), - [sym_do_while_statement] = STATE(1357), - [sym_for_statement] = STATE(1357), - [sym_for_in_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_exit_statement] = STATE(1357), - [sym_return_statement] = STATE(1357), - [sym_switch_statement] = STATE(1357), - [sym__io_statement] = STATE(1357), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1357), - [sym_piped_io_statement] = STATE(1357), - [sym_block] = STATE(1356), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(488), - [sym_continue_statement] = ACTIONS(488), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(488), - [sym_nextfile_statement] = ACTIONS(488), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1255), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1255), + [sym_if_statement] = STATE(1255), + [sym_while_statement] = STATE(1255), + [sym_do_while_statement] = STATE(1255), + [sym_for_statement] = STATE(1255), + [sym_for_in_statement] = STATE(1255), + [sym_delete_statement] = STATE(1255), + [sym_exit_statement] = STATE(1255), + [sym_return_statement] = STATE(1255), + [sym_switch_statement] = STATE(1255), + [sym__io_statement] = STATE(1255), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1255), + [sym_piped_io_statement] = STATE(1255), + [sym_block] = STATE(1250), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(495), + [sym_continue_statement] = ACTIONS(495), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(495), + [sym_nextfile_statement] = ACTIONS(495), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [112] = { - [sym__statement] = STATE(1354), - [sym__statement_separated] = STATE(1354), - [sym__control_statement] = STATE(1354), - [sym_if_statement] = STATE(1354), - [sym_while_statement] = STATE(1354), - [sym_do_while_statement] = STATE(1354), - [sym_for_statement] = STATE(1354), - [sym_for_in_statement] = STATE(1354), - [sym_delete_statement] = STATE(1354), - [sym_exit_statement] = STATE(1354), - [sym_return_statement] = STATE(1354), - [sym_switch_statement] = STATE(1354), - [sym__io_statement] = STATE(1354), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1354), - [sym_piped_io_statement] = STATE(1354), - [sym_block] = STATE(1352), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(492), - [sym_continue_statement] = ACTIONS(492), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(492), - [sym_nextfile_statement] = ACTIONS(492), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1230), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1230), + [sym_if_statement] = STATE(1230), + [sym_while_statement] = STATE(1230), + [sym_do_while_statement] = STATE(1230), + [sym_for_statement] = STATE(1230), + [sym_for_in_statement] = STATE(1230), + [sym_delete_statement] = STATE(1230), + [sym_exit_statement] = STATE(1230), + [sym_return_statement] = STATE(1230), + [sym_switch_statement] = STATE(1230), + [sym__io_statement] = STATE(1230), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1230), + [sym_piped_io_statement] = STATE(1230), + [sym_block] = STATE(1223), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(111), + [aux_sym_if_statement_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(551), + [sym_continue_statement] = ACTIONS(551), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(551), + [sym_nextfile_statement] = ACTIONS(551), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [113] = { - [sym__statement] = STATE(1254), + [sym__statement] = STATE(1265), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1265), + [sym_if_statement] = STATE(1265), + [sym_while_statement] = STATE(1265), + [sym_do_while_statement] = STATE(1265), + [sym_for_statement] = STATE(1265), + [sym_for_in_statement] = STATE(1265), + [sym_delete_statement] = STATE(1265), + [sym_exit_statement] = STATE(1265), + [sym_return_statement] = STATE(1265), + [sym_switch_statement] = STATE(1265), + [sym__io_statement] = STATE(1265), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1265), + [sym_piped_io_statement] = STATE(1265), + [sym_block] = STATE(1271), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(553), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(555), + [sym_continue_statement] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(555), + [sym_nextfile_statement] = ACTIONS(555), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [114] = { + [sym__statement] = STATE(2133), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(2133), + [sym_if_statement] = STATE(2133), + [sym_while_statement] = STATE(2133), + [sym_do_while_statement] = STATE(2133), + [sym_for_statement] = STATE(2133), + [sym_for_in_statement] = STATE(2133), + [sym_delete_statement] = STATE(2133), + [sym_exit_statement] = STATE(2133), + [sym_return_statement] = STATE(2133), + [sym_switch_statement] = STATE(2133), + [sym__io_statement] = STATE(2133), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(2133), + [sym_piped_io_statement] = STATE(2133), + [sym_block] = STATE(2154), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(603), + [sym_continue_statement] = ACTIONS(603), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(603), + [sym_nextfile_statement] = ACTIONS(603), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [115] = { + [sym__statement] = STATE(1267), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1267), + [sym_if_statement] = STATE(1267), + [sym_while_statement] = STATE(1267), + [sym_do_while_statement] = STATE(1267), + [sym_for_statement] = STATE(1267), + [sym_for_in_statement] = STATE(1267), + [sym_delete_statement] = STATE(1267), + [sym_exit_statement] = STATE(1267), + [sym_return_statement] = STATE(1267), + [sym_switch_statement] = STATE(1267), + [sym__io_statement] = STATE(1267), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1267), + [sym_piped_io_statement] = STATE(1267), + [sym_block] = STATE(1266), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(113), + [aux_sym_if_statement_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(563), + [sym_continue_statement] = ACTIONS(563), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(563), + [sym_nextfile_statement] = ACTIONS(563), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [116] = { + [sym__statement] = STATE(2137), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(2137), + [sym_if_statement] = STATE(2137), + [sym_while_statement] = STATE(2137), + [sym_do_while_statement] = STATE(2137), + [sym_for_statement] = STATE(2137), + [sym_for_in_statement] = STATE(2137), + [sym_delete_statement] = STATE(2137), + [sym_exit_statement] = STATE(2137), + [sym_return_statement] = STATE(2137), + [sym_switch_statement] = STATE(2137), + [sym__io_statement] = STATE(2137), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(2137), + [sym_piped_io_statement] = STATE(2137), + [sym_block] = STATE(2140), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(114), + [aux_sym_if_statement_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(607), + [sym_continue_statement] = ACTIONS(607), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(607), + [sym_nextfile_statement] = ACTIONS(607), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [117] = { + [sym__statement] = STATE(1244), + [sym__statement_separated] = STATE(1244), + [sym__control_statement] = STATE(1244), + [sym_if_statement] = STATE(1244), + [sym_while_statement] = STATE(1244), + [sym_do_while_statement] = STATE(1244), + [sym_for_statement] = STATE(1244), + [sym_for_in_statement] = STATE(1244), + [sym_delete_statement] = STATE(1244), + [sym_exit_statement] = STATE(1244), + [sym_return_statement] = STATE(1244), + [sym_switch_statement] = STATE(1244), + [sym__io_statement] = STATE(1244), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1244), + [sym_piped_io_statement] = STATE(1244), + [sym_block] = STATE(1243), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(129), + [aux_sym_if_statement_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(529), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(531), + [sym_continue_statement] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(531), + [sym_nextfile_statement] = ACTIONS(531), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), + }, + [118] = { + [sym__statement] = STATE(2135), [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(2135), + [sym_if_statement] = STATE(2135), + [sym_while_statement] = STATE(2135), + [sym_do_while_statement] = STATE(2135), + [sym_for_statement] = STATE(2135), + [sym_for_in_statement] = STATE(2135), + [sym_delete_statement] = STATE(2135), + [sym_exit_statement] = STATE(2135), + [sym_return_statement] = STATE(2135), + [sym_switch_statement] = STATE(2135), + [sym__io_statement] = STATE(2135), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(2135), + [sym_piped_io_statement] = STATE(2135), + [sym_block] = STATE(2134), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_comment] = STATE(67), + [aux_sym_if_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(611), + [sym_continue_statement] = ACTIONS(611), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(611), + [sym_nextfile_statement] = ACTIONS(611), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [119] = { + [sym__statement] = STATE(1194), + [sym__statement_separated] = STATE(1194), + [sym__control_statement] = STATE(1194), + [sym_if_statement] = STATE(1194), + [sym_while_statement] = STATE(1194), + [sym_do_while_statement] = STATE(1194), + [sym_for_statement] = STATE(1194), + [sym_for_in_statement] = STATE(1194), + [sym_delete_statement] = STATE(1194), + [sym_exit_statement] = STATE(1194), + [sym_return_statement] = STATE(1194), + [sym_switch_statement] = STATE(1194), + [sym__io_statement] = STATE(1194), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1194), + [sym_piped_io_statement] = STATE(1194), + [sym_block] = STATE(1193), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(32), + [aux_sym_if_statement_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(413), + [sym_continue_statement] = ACTIONS(413), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(413), + [sym_nextfile_statement] = ACTIONS(413), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [120] = { + [sym__statement] = STATE(1246), + [sym__statement_separated] = STATE(1246), + [sym__control_statement] = STATE(1246), + [sym_if_statement] = STATE(1246), + [sym_while_statement] = STATE(1246), + [sym_do_while_statement] = STATE(1246), + [sym_for_statement] = STATE(1246), + [sym_for_in_statement] = STATE(1246), + [sym_delete_statement] = STATE(1246), + [sym_exit_statement] = STATE(1246), + [sym_return_statement] = STATE(1246), + [sym_switch_statement] = STATE(1246), + [sym__io_statement] = STATE(1246), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1246), + [sym_piped_io_statement] = STATE(1246), + [sym_block] = STATE(1245), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(130), + [aux_sym_if_statement_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(527), + [sym_continue_statement] = ACTIONS(527), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(527), + [sym_nextfile_statement] = ACTIONS(527), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), + }, + [121] = { + [sym__statement] = STATE(1174), + [sym__statement_separated] = STATE(1174), + [sym__control_statement] = STATE(1174), + [sym_if_statement] = STATE(1174), + [sym_while_statement] = STATE(1174), + [sym_do_while_statement] = STATE(1174), + [sym_for_statement] = STATE(1174), + [sym_for_in_statement] = STATE(1174), + [sym_delete_statement] = STATE(1174), + [sym_exit_statement] = STATE(1174), + [sym_return_statement] = STATE(1174), + [sym_switch_statement] = STATE(1174), + [sym__io_statement] = STATE(1174), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1174), + [sym_piped_io_statement] = STATE(1174), + [sym_block] = STATE(1188), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(433), + [sym_continue_statement] = ACTIONS(433), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(433), + [sym_nextfile_statement] = ACTIONS(433), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [122] = { + [sym__statement] = STATE(1180), + [sym__statement_separated] = STATE(1180), + [sym__control_statement] = STATE(1180), + [sym_if_statement] = STATE(1180), + [sym_while_statement] = STATE(1180), + [sym_do_while_statement] = STATE(1180), + [sym_for_statement] = STATE(1180), + [sym_for_in_statement] = STATE(1180), + [sym_delete_statement] = STATE(1180), + [sym_exit_statement] = STATE(1180), + [sym_return_statement] = STATE(1180), + [sym_switch_statement] = STATE(1180), + [sym__io_statement] = STATE(1180), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1180), + [sym_piped_io_statement] = STATE(1180), + [sym_block] = STATE(1200), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(437), + [sym_continue_statement] = ACTIONS(437), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(437), + [sym_nextfile_statement] = ACTIONS(437), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [123] = { + [sym__statement] = STATE(1274), + [sym__statement_separated] = STATE(1274), + [sym__control_statement] = STATE(1274), + [sym_if_statement] = STATE(1274), + [sym_while_statement] = STATE(1274), + [sym_do_while_statement] = STATE(1274), + [sym_for_statement] = STATE(1274), + [sym_for_in_statement] = STATE(1274), + [sym_delete_statement] = STATE(1274), + [sym_exit_statement] = STATE(1274), + [sym_return_statement] = STATE(1274), + [sym_switch_statement] = STATE(1274), + [sym__io_statement] = STATE(1274), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1274), + [sym_piped_io_statement] = STATE(1274), + [sym_block] = STATE(1278), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(615), + [sym_continue_statement] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(615), + [sym_nextfile_statement] = ACTIONS(615), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [124] = { + [sym__statement] = STATE(1202), + [sym__statement_separated] = STATE(1202), + [sym__control_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_do_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_for_in_statement] = STATE(1202), + [sym_delete_statement] = STATE(1202), + [sym_exit_statement] = STATE(1202), + [sym_return_statement] = STATE(1202), + [sym_switch_statement] = STATE(1202), + [sym__io_statement] = STATE(1202), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1202), + [sym_piped_io_statement] = STATE(1202), + [sym_block] = STATE(1203), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(43), + [aux_sym_if_statement_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(447), + [sym_continue_statement] = ACTIONS(447), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(447), + [sym_nextfile_statement] = ACTIONS(447), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [125] = { + [sym__statement] = STATE(1204), + [sym__statement_separated] = STATE(1204), + [sym__control_statement] = STATE(1204), + [sym_if_statement] = STATE(1204), + [sym_while_statement] = STATE(1204), + [sym_do_while_statement] = STATE(1204), + [sym_for_statement] = STATE(1204), + [sym_for_in_statement] = STATE(1204), + [sym_delete_statement] = STATE(1204), + [sym_exit_statement] = STATE(1204), + [sym_return_statement] = STATE(1204), + [sym_switch_statement] = STATE(1204), + [sym__io_statement] = STATE(1204), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1204), + [sym_piped_io_statement] = STATE(1204), + [sym_block] = STATE(1205), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(455), + [sym_continue_statement] = ACTIONS(455), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(455), + [sym_nextfile_statement] = ACTIONS(455), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [126] = { + [sym__statement] = STATE(1206), + [sym__statement_separated] = STATE(1206), + [sym__control_statement] = STATE(1206), + [sym_if_statement] = STATE(1206), + [sym_while_statement] = STATE(1206), + [sym_do_while_statement] = STATE(1206), + [sym_for_statement] = STATE(1206), + [sym_for_in_statement] = STATE(1206), + [sym_delete_statement] = STATE(1206), + [sym_exit_statement] = STATE(1206), + [sym_return_statement] = STATE(1206), + [sym_switch_statement] = STATE(1206), + [sym__io_statement] = STATE(1206), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1206), + [sym_piped_io_statement] = STATE(1206), + [sym_block] = STATE(1217), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(459), + [sym_continue_statement] = ACTIONS(459), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(459), + [sym_nextfile_statement] = ACTIONS(459), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [127] = { + [sym__statement] = STATE(2087), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(2087), + [sym_if_statement] = STATE(2087), + [sym_while_statement] = STATE(2087), + [sym_do_while_statement] = STATE(2087), + [sym_for_statement] = STATE(2087), + [sym_for_in_statement] = STATE(2087), + [sym_delete_statement] = STATE(2087), + [sym_exit_statement] = STATE(2087), + [sym_return_statement] = STATE(2087), + [sym_switch_statement] = STATE(2087), + [sym__io_statement] = STATE(2087), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(2087), + [sym_piped_io_statement] = STATE(2087), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(13), + [aux_sym_if_statement_repeat1] = STATE(13), + [sym_identifier] = ACTIONS(143), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(617), + [sym_continue_statement] = ACTIONS(617), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_case] = ACTIONS(621), + [anon_sym_default] = ACTIONS(621), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(617), + [sym_nextfile_statement] = ACTIONS(617), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [128] = { + [sym__statement] = STATE(1251), + [sym__statement_separated] = STATE(1251), + [sym__control_statement] = STATE(1251), + [sym_if_statement] = STATE(1251), + [sym_while_statement] = STATE(1251), + [sym_do_while_statement] = STATE(1251), + [sym_for_statement] = STATE(1251), + [sym_for_in_statement] = STATE(1251), + [sym_delete_statement] = STATE(1251), + [sym_exit_statement] = STATE(1251), + [sym_return_statement] = STATE(1251), + [sym_switch_statement] = STATE(1251), + [sym__io_statement] = STATE(1251), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1251), + [sym_piped_io_statement] = STATE(1251), + [sym_block] = STATE(1218), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(523), + [sym_continue_statement] = ACTIONS(523), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(523), + [sym_nextfile_statement] = ACTIONS(523), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), + }, + [129] = { + [sym__statement] = STATE(1254), + [sym__statement_separated] = STATE(1254), [sym__control_statement] = STATE(1254), [sym_if_statement] = STATE(1254), [sym_while_statement] = STATE(1254), @@ -16919,1381 +24354,915 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1254), [sym_switch_statement] = STATE(1254), [sym__io_statement] = STATE(1254), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), [sym_redirected_io_statement] = STATE(1254), [sym_piped_io_statement] = STATE(1254), - [sym_block] = STATE(1253), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(550), - [sym_continue_statement] = ACTIONS(550), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(550), - [sym_nextfile_statement] = ACTIONS(550), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym_block] = STATE(1252), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(517), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(519), + [sym_continue_statement] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(519), + [sym_nextfile_statement] = ACTIONS(519), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, - [114] = { - [sym__statement] = STATE(1376), - [sym__statement_separated] = STATE(1376), - [sym__control_statement] = STATE(1376), - [sym_if_statement] = STATE(1376), - [sym_while_statement] = STATE(1376), - [sym_do_while_statement] = STATE(1376), - [sym_for_statement] = STATE(1376), - [sym_for_in_statement] = STATE(1376), - [sym_delete_statement] = STATE(1376), - [sym_exit_statement] = STATE(1376), - [sym_return_statement] = STATE(1376), - [sym_switch_statement] = STATE(1376), - [sym__io_statement] = STATE(1376), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1376), - [sym_piped_io_statement] = STATE(1376), - [sym_block] = STATE(1392), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(143), - [aux_sym_if_statement_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(612), - [sym_continue_statement] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(612), - [sym_nextfile_statement] = ACTIONS(612), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [130] = { + [sym__statement] = STATE(1258), + [sym__statement_separated] = STATE(1258), + [sym__control_statement] = STATE(1258), + [sym_if_statement] = STATE(1258), + [sym_while_statement] = STATE(1258), + [sym_do_while_statement] = STATE(1258), + [sym_for_statement] = STATE(1258), + [sym_for_in_statement] = STATE(1258), + [sym_delete_statement] = STATE(1258), + [sym_exit_statement] = STATE(1258), + [sym_return_statement] = STATE(1258), + [sym_switch_statement] = STATE(1258), + [sym__io_statement] = STATE(1258), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1258), + [sym_piped_io_statement] = STATE(1258), + [sym_block] = STATE(1256), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(515), + [sym_continue_statement] = ACTIONS(515), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(515), + [sym_nextfile_statement] = ACTIONS(515), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, - [115] = { - [sym__statement] = STATE(1229), - [sym__statement_separated] = STATE(1229), - [sym__control_statement] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_while_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_delete_statement] = STATE(1229), - [sym_exit_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym__io_statement] = STATE(1229), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1229), - [sym_piped_io_statement] = STATE(1229), - [sym_block] = STATE(1228), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(416), - [sym_continue_statement] = ACTIONS(416), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(416), - [sym_nextfile_statement] = ACTIONS(416), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), - }, - [116] = { - [sym__statement] = STATE(1232), - [sym__statement_separated] = STATE(1232), - [sym__control_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_while_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_for_in_statement] = STATE(1232), - [sym_delete_statement] = STATE(1232), - [sym_exit_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym__io_statement] = STATE(1232), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1232), - [sym_piped_io_statement] = STATE(1232), - [sym_block] = STATE(1231), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(125), - [aux_sym_if_statement_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(424), - [sym_continue_statement] = ACTIONS(424), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(424), - [sym_nextfile_statement] = ACTIONS(424), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), - }, - [117] = { - [sym__statement] = STATE(1340), - [sym__statement_separated] = STATE(1340), - [sym__control_statement] = STATE(1340), - [sym_if_statement] = STATE(1340), - [sym_while_statement] = STATE(1340), - [sym_do_while_statement] = STATE(1340), - [sym_for_statement] = STATE(1340), - [sym_for_in_statement] = STATE(1340), - [sym_delete_statement] = STATE(1340), - [sym_exit_statement] = STATE(1340), - [sym_return_statement] = STATE(1340), - [sym_switch_statement] = STATE(1340), - [sym__io_statement] = STATE(1340), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1340), - [sym_piped_io_statement] = STATE(1340), - [sym_block] = STATE(1337), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(105), - [aux_sym_if_statement_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(496), - [sym_continue_statement] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(496), - [sym_nextfile_statement] = ACTIONS(496), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), - }, - [118] = { - [sym__statement] = STATE(1336), - [sym__statement_separated] = STATE(1336), - [sym__control_statement] = STATE(1336), - [sym_if_statement] = STATE(1336), - [sym_while_statement] = STATE(1336), - [sym_do_while_statement] = STATE(1336), - [sym_for_statement] = STATE(1336), - [sym_for_in_statement] = STATE(1336), - [sym_delete_statement] = STATE(1336), - [sym_exit_statement] = STATE(1336), - [sym_return_statement] = STATE(1336), - [sym_switch_statement] = STATE(1336), - [sym__io_statement] = STATE(1336), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1336), - [sym_piped_io_statement] = STATE(1336), - [sym_block] = STATE(1334), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(14), - [aux_sym_if_statement_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(504), - [sym_continue_statement] = ACTIONS(504), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(504), - [sym_nextfile_statement] = ACTIONS(504), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), - }, - [119] = { - [sym__statement] = STATE(1256), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1256), - [sym_if_statement] = STATE(1256), - [sym_while_statement] = STATE(1256), - [sym_do_while_statement] = STATE(1256), - [sym_for_statement] = STATE(1256), - [sym_for_in_statement] = STATE(1256), - [sym_delete_statement] = STATE(1256), - [sym_exit_statement] = STATE(1256), - [sym_return_statement] = STATE(1256), - [sym_switch_statement] = STATE(1256), - [sym__io_statement] = STATE(1256), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1256), - [sym_piped_io_statement] = STATE(1256), - [sym_block] = STATE(1255), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(566), - [sym_continue_statement] = ACTIONS(566), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(566), - [sym_nextfile_statement] = ACTIONS(566), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [120] = { - [sym__statement] = STATE(1330), - [sym__statement_separated] = STATE(1330), - [sym__control_statement] = STATE(1330), - [sym_if_statement] = STATE(1330), - [sym_while_statement] = STATE(1330), - [sym_do_while_statement] = STATE(1330), - [sym_for_statement] = STATE(1330), - [sym_for_in_statement] = STATE(1330), - [sym_delete_statement] = STATE(1330), - [sym_exit_statement] = STATE(1330), - [sym_return_statement] = STATE(1330), - [sym_switch_statement] = STATE(1330), - [sym__io_statement] = STATE(1330), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1330), - [sym_piped_io_statement] = STATE(1330), - [sym_block] = STATE(1329), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(111), - [aux_sym_if_statement_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(514), - [sym_continue_statement] = ACTIONS(514), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(514), - [sym_nextfile_statement] = ACTIONS(514), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), - }, - [121] = { - [sym__statement] = STATE(1328), - [sym__statement_separated] = STATE(1328), - [sym__control_statement] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_while_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_for_in_statement] = STATE(1328), - [sym_delete_statement] = STATE(1328), - [sym_exit_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym__io_statement] = STATE(1328), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1328), - [sym_piped_io_statement] = STATE(1328), - [sym_block] = STATE(1326), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(112), - [aux_sym_if_statement_repeat1] = STATE(112), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(534), - [sym_continue_statement] = ACTIONS(534), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(534), - [sym_nextfile_statement] = ACTIONS(534), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), - }, - [122] = { - [sym__statement] = STATE(1325), - [sym__statement_separated] = STATE(1325), - [sym__control_statement] = STATE(1325), - [sym_if_statement] = STATE(1325), - [sym_while_statement] = STATE(1325), - [sym_do_while_statement] = STATE(1325), - [sym_for_statement] = STATE(1325), - [sym_for_in_statement] = STATE(1325), - [sym_delete_statement] = STATE(1325), - [sym_exit_statement] = STATE(1325), - [sym_return_statement] = STATE(1325), - [sym_switch_statement] = STATE(1325), - [sym__io_statement] = STATE(1325), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1325), - [sym_piped_io_statement] = STATE(1325), - [sym_block] = STATE(1324), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [131] = { + [sym__statement] = STATE(1260), + [sym__statement_separated] = STATE(1260), + [sym__control_statement] = STATE(1260), + [sym_if_statement] = STATE(1260), + [sym_while_statement] = STATE(1260), + [sym_do_while_statement] = STATE(1260), + [sym_for_statement] = STATE(1260), + [sym_for_in_statement] = STATE(1260), + [sym_delete_statement] = STATE(1260), + [sym_exit_statement] = STATE(1260), + [sym_return_statement] = STATE(1260), + [sym_switch_statement] = STATE(1260), + [sym__io_statement] = STATE(1260), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1260), + [sym_piped_io_statement] = STATE(1260), + [sym_block] = STATE(1259), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(538), - [sym_continue_statement] = ACTIONS(538), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(538), - [sym_nextfile_statement] = ACTIONS(538), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(133), + [aux_sym_if_statement_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(511), + [sym_continue_statement] = ACTIONS(511), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(511), + [sym_nextfile_statement] = ACTIONS(511), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, - [123] = { - [sym__statement] = STATE(1258), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1258), - [sym_if_statement] = STATE(1258), - [sym_while_statement] = STATE(1258), - [sym_do_while_statement] = STATE(1258), - [sym_for_statement] = STATE(1258), - [sym_for_in_statement] = STATE(1258), - [sym_delete_statement] = STATE(1258), - [sym_exit_statement] = STATE(1258), - [sym_return_statement] = STATE(1258), - [sym_switch_statement] = STATE(1258), - [sym__io_statement] = STATE(1258), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1258), - [sym_piped_io_statement] = STATE(1258), - [sym_block] = STATE(1257), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), + [132] = { + [sym__statement] = STATE(2082), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(2082), + [sym_if_statement] = STATE(2082), + [sym_while_statement] = STATE(2082), + [sym_do_while_statement] = STATE(2082), + [sym_for_statement] = STATE(2082), + [sym_for_in_statement] = STATE(2082), + [sym_delete_statement] = STATE(2082), + [sym_exit_statement] = STATE(2082), + [sym_return_statement] = STATE(2082), + [sym_switch_statement] = STATE(2082), + [sym__io_statement] = STATE(2082), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(2082), + [sym_piped_io_statement] = STATE(2082), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), [sym_comment] = STATE(140), [aux_sym_if_statement_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(568), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(570), - [sym_continue_statement] = ACTIONS(570), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(570), - [sym_nextfile_statement] = ACTIONS(570), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [124] = { - [sym__statement] = STATE(1276), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1276), - [sym_if_statement] = STATE(1276), - [sym_while_statement] = STATE(1276), - [sym_do_while_statement] = STATE(1276), - [sym_for_statement] = STATE(1276), - [sym_for_in_statement] = STATE(1276), - [sym_delete_statement] = STATE(1276), - [sym_exit_statement] = STATE(1276), - [sym_return_statement] = STATE(1276), - [sym_switch_statement] = STATE(1276), - [sym__io_statement] = STATE(1276), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1276), - [sym_piped_io_statement] = STATE(1276), - [sym_block] = STATE(1275), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(314), - [sym_continue_statement] = ACTIONS(314), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(314), - [sym_nextfile_statement] = ACTIONS(314), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [125] = { - [sym__statement] = STATE(1239), - [sym__statement_separated] = STATE(1239), - [sym__control_statement] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_do_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_for_in_statement] = STATE(1239), - [sym_delete_statement] = STATE(1239), - [sym_exit_statement] = STATE(1239), - [sym_return_statement] = STATE(1239), - [sym_switch_statement] = STATE(1239), - [sym__io_statement] = STATE(1239), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1239), - [sym_piped_io_statement] = STATE(1239), - [sym_block] = STATE(1238), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(428), - [sym_continue_statement] = ACTIONS(428), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(428), - [sym_nextfile_statement] = ACTIONS(428), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), - }, - [126] = { - [sym__statement] = STATE(1242), - [sym__statement_separated] = STATE(1242), - [sym__control_statement] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_do_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_for_in_statement] = STATE(1242), - [sym_delete_statement] = STATE(1242), - [sym_exit_statement] = STATE(1242), - [sym_return_statement] = STATE(1242), - [sym_switch_statement] = STATE(1242), - [sym__io_statement] = STATE(1242), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1242), - [sym_piped_io_statement] = STATE(1242), - [sym_block] = STATE(1240), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(81), - [aux_sym_if_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(476), - [sym_continue_statement] = ACTIONS(476), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(476), - [sym_nextfile_statement] = ACTIONS(476), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym_identifier] = ACTIONS(143), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(623), + [sym_continue_statement] = ACTIONS(623), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_case] = ACTIONS(627), + [anon_sym_default] = ACTIONS(627), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(623), + [sym_nextfile_statement] = ACTIONS(623), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, - [127] = { - [sym__statement] = STATE(1317), - [sym__statement_separated] = STATE(1317), - [sym__control_statement] = STATE(1317), - [sym_if_statement] = STATE(1317), - [sym_while_statement] = STATE(1317), - [sym_do_while_statement] = STATE(1317), - [sym_for_statement] = STATE(1317), - [sym_for_in_statement] = STATE(1317), - [sym_delete_statement] = STATE(1317), - [sym_exit_statement] = STATE(1317), - [sym_return_statement] = STATE(1317), - [sym_switch_statement] = STATE(1317), - [sym__io_statement] = STATE(1317), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1317), - [sym_piped_io_statement] = STATE(1317), - [sym_block] = STATE(1304), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [133] = { + [sym__statement] = STATE(1264), + [sym__statement_separated] = STATE(1264), + [sym__control_statement] = STATE(1264), + [sym_if_statement] = STATE(1264), + [sym_while_statement] = STATE(1264), + [sym_do_while_statement] = STATE(1264), + [sym_for_statement] = STATE(1264), + [sym_for_in_statement] = STATE(1264), + [sym_delete_statement] = STATE(1264), + [sym_exit_statement] = STATE(1264), + [sym_return_statement] = STATE(1264), + [sym_switch_statement] = STATE(1264), + [sym__io_statement] = STATE(1264), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1264), + [sym_piped_io_statement] = STATE(1264), + [sym_block] = STATE(1228), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(122), - [aux_sym_if_statement_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(574), - [sym_continue_statement] = ACTIONS(574), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(574), - [sym_nextfile_statement] = ACTIONS(574), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(507), + [sym_continue_statement] = ACTIONS(507), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(507), + [sym_nextfile_statement] = ACTIONS(507), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, - [128] = { - [sym__statement] = STATE(1300), - [sym__statement_separated] = STATE(1300), - [sym__control_statement] = STATE(1300), - [sym_if_statement] = STATE(1300), - [sym_while_statement] = STATE(1300), - [sym_do_while_statement] = STATE(1300), - [sym_for_statement] = STATE(1300), - [sym_for_in_statement] = STATE(1300), - [sym_delete_statement] = STATE(1300), - [sym_exit_statement] = STATE(1300), - [sym_return_statement] = STATE(1300), - [sym_switch_statement] = STATE(1300), - [sym__io_statement] = STATE(1300), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1300), - [sym_piped_io_statement] = STATE(1300), - [sym_block] = STATE(1312), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [134] = { + [sym__statement] = STATE(1267), + [sym__statement_separated] = STATE(1267), + [sym__control_statement] = STATE(1267), + [sym_if_statement] = STATE(1267), + [sym_while_statement] = STATE(1267), + [sym_do_while_statement] = STATE(1267), + [sym_for_statement] = STATE(1267), + [sym_for_in_statement] = STATE(1267), + [sym_delete_statement] = STATE(1267), + [sym_exit_statement] = STATE(1267), + [sym_return_statement] = STATE(1267), + [sym_switch_statement] = STATE(1267), + [sym__io_statement] = STATE(1267), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), + [sym_redirected_io_statement] = STATE(1267), + [sym_piped_io_statement] = STATE(1267), + [sym_block] = STATE(1266), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(578), - [sym_continue_statement] = ACTIONS(578), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(578), - [sym_nextfile_statement] = ACTIONS(578), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_comment] = STATE(105), + [aux_sym_if_statement_repeat1] = STATE(105), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(563), + [sym_continue_statement] = ACTIONS(563), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(563), + [sym_nextfile_statement] = ACTIONS(563), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), }, - [129] = { - [sym__statement] = STATE(1386), - [sym__statement_separated] = STATE(1386), - [sym__control_statement] = STATE(1386), - [sym_if_statement] = STATE(1386), - [sym_while_statement] = STATE(1386), - [sym_do_while_statement] = STATE(1386), - [sym_for_statement] = STATE(1386), - [sym_for_in_statement] = STATE(1386), - [sym_delete_statement] = STATE(1386), - [sym_exit_statement] = STATE(1386), - [sym_return_statement] = STATE(1386), - [sym_switch_statement] = STATE(1386), - [sym__io_statement] = STATE(1386), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1386), - [sym_piped_io_statement] = STATE(1386), - [sym_block] = STATE(1385), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(614), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(616), - [sym_continue_statement] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(616), - [sym_nextfile_statement] = ACTIONS(616), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [135] = { + [sym__statement] = STATE(1169), + [sym__statement_separated] = STATE(1169), + [sym__control_statement] = STATE(1169), + [sym_if_statement] = STATE(1169), + [sym_while_statement] = STATE(1169), + [sym_do_while_statement] = STATE(1169), + [sym_for_statement] = STATE(1169), + [sym_for_in_statement] = STATE(1169), + [sym_delete_statement] = STATE(1169), + [sym_exit_statement] = STATE(1169), + [sym_return_statement] = STATE(1169), + [sym_switch_statement] = STATE(1169), + [sym__io_statement] = STATE(1169), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1169), + [sym_piped_io_statement] = STATE(1169), + [sym_block] = STATE(1184), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(121), + [aux_sym_if_statement_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(467), + [sym_continue_statement] = ACTIONS(467), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(467), + [sym_nextfile_statement] = ACTIONS(467), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, - [130] = { - [sym__statement] = STATE(1244), - [sym__statement_separated] = STATE(1244), - [sym__control_statement] = STATE(1244), - [sym_if_statement] = STATE(1244), - [sym_while_statement] = STATE(1244), - [sym_do_while_statement] = STATE(1244), - [sym_for_statement] = STATE(1244), - [sym_for_in_statement] = STATE(1244), - [sym_delete_statement] = STATE(1244), - [sym_exit_statement] = STATE(1244), - [sym_return_statement] = STATE(1244), - [sym_switch_statement] = STATE(1244), - [sym__io_statement] = STATE(1244), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1244), - [sym_piped_io_statement] = STATE(1244), - [sym_block] = STATE(1243), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(64), - [aux_sym_if_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(484), - [sym_continue_statement] = ACTIONS(484), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(484), - [sym_nextfile_statement] = ACTIONS(484), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [136] = { + [sym__statement] = STATE(1192), + [sym__statement_separated] = STATE(1192), + [sym__control_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_while_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_for_in_statement] = STATE(1192), + [sym_delete_statement] = STATE(1192), + [sym_exit_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym__io_statement] = STATE(1192), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1192), + [sym_piped_io_statement] = STATE(1192), + [sym_block] = STATE(1191), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(417), + [sym_continue_statement] = ACTIONS(417), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(417), + [sym_nextfile_statement] = ACTIONS(417), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, - [131] = { + [137] = { [sym__statement] = STATE(1260), - [sym__statement_separated] = STATE(153), + [sym__statement_separated] = STATE(154), [sym__control_statement] = STATE(1260), [sym_if_statement] = STATE(1260), [sym_while_statement] = STATE(1260), @@ -18305,149 +25274,455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1260), [sym_switch_statement] = STATE(1260), [sym__io_statement] = STATE(1260), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), [sym_redirected_io_statement] = STATE(1260), [sym_piped_io_statement] = STATE(1260), [sym_block] = STATE(1259), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(546), - [sym_continue_statement] = ACTIONS(546), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(546), - [sym_nextfile_statement] = ACTIONS(546), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(92), + [aux_sym_if_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(511), + [sym_continue_statement] = ACTIONS(511), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(511), + [sym_nextfile_statement] = ACTIONS(511), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, - [132] = { - [sym__statement] = STATE(1246), - [sym__statement_separated] = STATE(1246), - [sym__control_statement] = STATE(1246), - [sym_if_statement] = STATE(1246), - [sym_while_statement] = STATE(1246), - [sym_do_while_statement] = STATE(1246), - [sym_for_statement] = STATE(1246), - [sym_for_in_statement] = STATE(1246), - [sym_delete_statement] = STATE(1246), - [sym_exit_statement] = STATE(1246), - [sym_return_statement] = STATE(1246), - [sym_switch_statement] = STATE(1246), - [sym__io_statement] = STATE(1246), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1246), - [sym_piped_io_statement] = STATE(1246), - [sym_block] = STATE(1245), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(55), - [aux_sym_if_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(500), - [sym_continue_statement] = ACTIONS(500), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(500), - [sym_nextfile_statement] = ACTIONS(500), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [138] = { + [sym__statement] = STATE(1163), + [sym__statement_separated] = STATE(1163), + [sym__control_statement] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_do_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_for_in_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_exit_statement] = STATE(1163), + [sym_return_statement] = STATE(1163), + [sym_switch_statement] = STATE(1163), + [sym__io_statement] = STATE(1163), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1163), + [sym_piped_io_statement] = STATE(1163), + [sym_block] = STATE(1209), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(122), + [aux_sym_if_statement_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(471), + [sym_continue_statement] = ACTIONS(471), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(471), + [sym_nextfile_statement] = ACTIONS(471), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, - [133] = { + [139] = { + [sym__statement] = STATE(1276), + [sym__statement_separated] = STATE(1276), + [sym__control_statement] = STATE(1276), + [sym_if_statement] = STATE(1276), + [sym_while_statement] = STATE(1276), + [sym_do_while_statement] = STATE(1276), + [sym_for_statement] = STATE(1276), + [sym_for_in_statement] = STATE(1276), + [sym_delete_statement] = STATE(1276), + [sym_exit_statement] = STATE(1276), + [sym_return_statement] = STATE(1276), + [sym_switch_statement] = STATE(1276), + [sym__io_statement] = STATE(1276), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1276), + [sym_piped_io_statement] = STATE(1276), + [sym_block] = STATE(1277), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(123), + [aux_sym_if_statement_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(631), + [sym_continue_statement] = ACTIONS(631), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(631), + [sym_nextfile_statement] = ACTIONS(631), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [140] = { + [sym__statement] = STATE(2089), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(2089), + [sym_if_statement] = STATE(2089), + [sym_while_statement] = STATE(2089), + [sym_do_while_statement] = STATE(2089), + [sym_for_statement] = STATE(2089), + [sym_for_in_statement] = STATE(2089), + [sym_delete_statement] = STATE(2089), + [sym_exit_statement] = STATE(2089), + [sym_return_statement] = STATE(2089), + [sym_switch_statement] = STATE(2089), + [sym__io_statement] = STATE(2089), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(2089), + [sym_piped_io_statement] = STATE(2089), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(143), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(633), + [sym_continue_statement] = ACTIONS(633), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(637), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(633), + [sym_nextfile_statement] = ACTIONS(633), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [141] = { [sym__statement] = STATE(1280), - [sym__statement_separated] = STATE(153), + [sym__statement_separated] = STATE(1280), [sym__control_statement] = STATE(1280), [sym_if_statement] = STATE(1280), [sym_while_statement] = STATE(1280), @@ -18459,1531 +25734,1707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1280), [sym_switch_statement] = STATE(1280), [sym__io_statement] = STATE(1280), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), [sym_redirected_io_statement] = STATE(1280), [sym_piped_io_statement] = STATE(1280), - [sym_block] = STATE(1279), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(590), - [sym_continue_statement] = ACTIONS(590), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(590), - [sym_nextfile_statement] = ACTIONS(590), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [134] = { - [sym__statement] = STATE(1317), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1317), - [sym_if_statement] = STATE(1317), - [sym_while_statement] = STATE(1317), - [sym_do_while_statement] = STATE(1317), - [sym_for_statement] = STATE(1317), - [sym_for_in_statement] = STATE(1317), - [sym_delete_statement] = STATE(1317), - [sym_exit_statement] = STATE(1317), - [sym_return_statement] = STATE(1317), - [sym_switch_statement] = STATE(1317), - [sym__io_statement] = STATE(1317), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1317), - [sym_piped_io_statement] = STATE(1317), - [sym_block] = STATE(1304), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(96), - [aux_sym_if_statement_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(574), - [sym_continue_statement] = ACTIONS(574), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(574), - [sym_nextfile_statement] = ACTIONS(574), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), - }, - [135] = { - [sym__statement] = STATE(1278), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1278), - [sym_if_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [sym_do_while_statement] = STATE(1278), - [sym_for_statement] = STATE(1278), - [sym_for_in_statement] = STATE(1278), - [sym_delete_statement] = STATE(1278), - [sym_exit_statement] = STATE(1278), - [sym_return_statement] = STATE(1278), - [sym_switch_statement] = STATE(1278), - [sym__io_statement] = STATE(1278), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1278), - [sym_piped_io_statement] = STATE(1278), - [sym_block] = STATE(1277), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(133), - [aux_sym_if_statement_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(586), - [sym_continue_statement] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(586), - [sym_nextfile_statement] = ACTIONS(586), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [136] = { - [sym__statement] = STATE(1248), - [sym__statement_separated] = STATE(1248), - [sym__control_statement] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_do_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_for_in_statement] = STATE(1248), - [sym_delete_statement] = STATE(1248), - [sym_exit_statement] = STATE(1248), - [sym_return_statement] = STATE(1248), - [sym_switch_statement] = STATE(1248), - [sym__io_statement] = STATE(1248), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1248), - [sym_piped_io_statement] = STATE(1248), - [sym_block] = STATE(1247), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(49), - [aux_sym_if_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(542), - [sym_continue_statement] = ACTIONS(542), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(542), - [sym_nextfile_statement] = ACTIONS(542), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), - }, - [137] = { - [sym__statement] = STATE(1274), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1274), - [sym_if_statement] = STATE(1274), - [sym_while_statement] = STATE(1274), - [sym_do_while_statement] = STATE(1274), - [sym_for_statement] = STATE(1274), - [sym_for_in_statement] = STATE(1274), - [sym_delete_statement] = STATE(1274), - [sym_exit_statement] = STATE(1274), - [sym_return_statement] = STATE(1274), - [sym_switch_statement] = STATE(1274), - [sym__io_statement] = STATE(1274), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1274), - [sym_piped_io_statement] = STATE(1274), - [sym_block] = STATE(1272), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(420), - [sym_continue_statement] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(420), - [sym_nextfile_statement] = ACTIONS(420), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [138] = { - [sym__statement] = STATE(1322), - [sym__statement_separated] = STATE(1322), - [sym__control_statement] = STATE(1322), - [sym_if_statement] = STATE(1322), - [sym_while_statement] = STATE(1322), - [sym_do_while_statement] = STATE(1322), - [sym_for_statement] = STATE(1322), - [sym_for_in_statement] = STATE(1322), - [sym_delete_statement] = STATE(1322), - [sym_exit_statement] = STATE(1322), - [sym_return_statement] = STATE(1322), - [sym_switch_statement] = STATE(1322), - [sym__io_statement] = STATE(1322), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1322), - [sym_piped_io_statement] = STATE(1322), - [sym_block] = STATE(1360), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_comment] = STATE(128), - [aux_sym_if_statement_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(594), - [sym_continue_statement] = ACTIONS(594), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(594), - [sym_nextfile_statement] = ACTIONS(594), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(212), - }, - [139] = { - [sym__statement] = STATE(1381), - [sym__statement_separated] = STATE(1381), - [sym__control_statement] = STATE(1381), - [sym_if_statement] = STATE(1381), - [sym_while_statement] = STATE(1381), - [sym_do_while_statement] = STATE(1381), - [sym_for_statement] = STATE(1381), - [sym_for_in_statement] = STATE(1381), - [sym_delete_statement] = STATE(1381), - [sym_exit_statement] = STATE(1381), - [sym_return_statement] = STATE(1381), - [sym_switch_statement] = STATE(1381), - [sym__io_statement] = STATE(1381), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1381), - [sym_piped_io_statement] = STATE(1381), - [sym_block] = STATE(1379), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(129), - [aux_sym_if_statement_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(618), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(620), - [sym_continue_statement] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(620), - [sym_nextfile_statement] = ACTIONS(620), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), - }, - [140] = { - [sym__statement] = STATE(1271), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_do_while_statement] = STATE(1271), - [sym_for_statement] = STATE(1271), - [sym_for_in_statement] = STATE(1271), - [sym_delete_statement] = STATE(1271), - [sym_exit_statement] = STATE(1271), - [sym_return_statement] = STATE(1271), - [sym_switch_statement] = STATE(1271), - [sym__io_statement] = STATE(1271), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1271), - [sym_piped_io_statement] = STATE(1271), - [sym_block] = STATE(1270), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(480), - [sym_continue_statement] = ACTIONS(480), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(480), - [sym_nextfile_statement] = ACTIONS(480), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), - }, - [141] = { - [sym__statement] = STATE(1262), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1262), - [sym_if_statement] = STATE(1262), - [sym_while_statement] = STATE(1262), - [sym_do_while_statement] = STATE(1262), - [sym_for_statement] = STATE(1262), - [sym_for_in_statement] = STATE(1262), - [sym_delete_statement] = STATE(1262), - [sym_exit_statement] = STATE(1262), - [sym_return_statement] = STATE(1262), - [sym_switch_statement] = STATE(1262), - [sym__io_statement] = STATE(1262), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1262), - [sym_piped_io_statement] = STATE(1262), - [sym_block] = STATE(1261), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(530), - [sym_continue_statement] = ACTIONS(530), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(530), - [sym_nextfile_statement] = ACTIONS(530), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym_block] = STATE(1281), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(15), + [aux_sym_if_statement_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(639), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(641), + [sym_continue_statement] = ACTIONS(641), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(641), + [sym_nextfile_statement] = ACTIONS(641), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [142] = { - [sym__statement] = STATE(1267), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1267), - [sym_if_statement] = STATE(1267), - [sym_while_statement] = STATE(1267), - [sym_do_while_statement] = STATE(1267), - [sym_for_statement] = STATE(1267), - [sym_for_in_statement] = STATE(1267), - [sym_delete_statement] = STATE(1267), - [sym_exit_statement] = STATE(1267), - [sym_return_statement] = STATE(1267), - [sym_switch_statement] = STATE(1267), - [sym__io_statement] = STATE(1267), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1267), - [sym_piped_io_statement] = STATE(1267), - [sym_block] = STATE(1265), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(124), - [aux_sym_if_statement_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(518), - [sym_continue_statement] = ACTIONS(518), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(518), - [sym_nextfile_statement] = ACTIONS(518), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(2057), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(2057), + [sym_if_statement] = STATE(2057), + [sym_while_statement] = STATE(2057), + [sym_do_while_statement] = STATE(2057), + [sym_for_statement] = STATE(2057), + [sym_for_in_statement] = STATE(2057), + [sym_delete_statement] = STATE(2057), + [sym_exit_statement] = STATE(2057), + [sym_return_statement] = STATE(2057), + [sym_switch_statement] = STATE(2057), + [sym__io_statement] = STATE(2057), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(2057), + [sym_piped_io_statement] = STATE(2057), + [sym_block] = STATE(2058), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_comment] = STATE(17), + [aux_sym_if_statement_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(645), + [sym_continue_statement] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(645), + [sym_nextfile_statement] = ACTIONS(645), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), }, [143] = { - [sym__statement] = STATE(1389), - [sym__statement_separated] = STATE(1389), - [sym__control_statement] = STATE(1389), - [sym_if_statement] = STATE(1389), - [sym_while_statement] = STATE(1389), - [sym_do_while_statement] = STATE(1389), - [sym_for_statement] = STATE(1389), - [sym_for_in_statement] = STATE(1389), - [sym_delete_statement] = STATE(1389), - [sym_exit_statement] = STATE(1389), - [sym_return_statement] = STATE(1389), - [sym_switch_statement] = STATE(1389), - [sym__io_statement] = STATE(1389), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1389), - [sym_piped_io_statement] = STATE(1389), - [sym_block] = STATE(1391), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(622), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(624), - [sym_continue_statement] = ACTIONS(624), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(624), - [sym_nextfile_statement] = ACTIONS(624), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1171), + [sym__statement_separated] = STATE(1171), + [sym__control_statement] = STATE(1171), + [sym_if_statement] = STATE(1171), + [sym_while_statement] = STATE(1171), + [sym_do_while_statement] = STATE(1171), + [sym_for_statement] = STATE(1171), + [sym_for_in_statement] = STATE(1171), + [sym_delete_statement] = STATE(1171), + [sym_exit_statement] = STATE(1171), + [sym_return_statement] = STATE(1171), + [sym_switch_statement] = STATE(1171), + [sym__io_statement] = STATE(1171), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1171), + [sym_piped_io_statement] = STATE(1171), + [sym_block] = STATE(1173), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(144), + [aux_sym_if_statement_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(309), + [sym_continue_statement] = ACTIONS(309), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(309), + [sym_nextfile_statement] = ACTIONS(309), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [144] = { - [sym__statement] = STATE(1938), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1938), - [sym_if_statement] = STATE(1938), - [sym_while_statement] = STATE(1938), - [sym_do_while_statement] = STATE(1938), - [sym_for_statement] = STATE(1938), - [sym_for_in_statement] = STATE(1938), - [sym_delete_statement] = STATE(1938), - [sym_exit_statement] = STATE(1938), - [sym_return_statement] = STATE(1938), - [sym_switch_statement] = STATE(1938), - [sym__io_statement] = STATE(1938), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1938), - [sym_piped_io_statement] = STATE(1938), - [sym_block] = STATE(1965), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(147), - [aux_sym_if_statement_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(628), - [sym_continue_statement] = ACTIONS(628), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(628), - [sym_nextfile_statement] = ACTIONS(628), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1166), + [sym__statement_separated] = STATE(1166), + [sym__control_statement] = STATE(1166), + [sym_if_statement] = STATE(1166), + [sym_while_statement] = STATE(1166), + [sym_do_while_statement] = STATE(1166), + [sym_for_statement] = STATE(1166), + [sym_for_in_statement] = STATE(1166), + [sym_delete_statement] = STATE(1166), + [sym_exit_statement] = STATE(1166), + [sym_return_statement] = STATE(1166), + [sym_switch_statement] = STATE(1166), + [sym__io_statement] = STATE(1166), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1166), + [sym_piped_io_statement] = STATE(1166), + [sym_block] = STATE(1167), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(499), + [sym_continue_statement] = ACTIONS(499), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(499), + [sym_nextfile_statement] = ACTIONS(499), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [145] = { - [sym__statement] = STATE(1322), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1322), - [sym_if_statement] = STATE(1322), - [sym_while_statement] = STATE(1322), - [sym_do_while_statement] = STATE(1322), - [sym_for_statement] = STATE(1322), - [sym_for_in_statement] = STATE(1322), - [sym_delete_statement] = STATE(1322), - [sym_exit_statement] = STATE(1322), - [sym_return_statement] = STATE(1322), - [sym_switch_statement] = STATE(1322), - [sym__io_statement] = STATE(1322), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1322), - [sym_piped_io_statement] = STATE(1322), - [sym_block] = STATE(1360), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(148), - [aux_sym_if_statement_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(594), - [sym_continue_statement] = ACTIONS(594), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(594), - [sym_nextfile_statement] = ACTIONS(594), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1208), + [sym__statement_separated] = STATE(1208), + [sym__control_statement] = STATE(1208), + [sym_if_statement] = STATE(1208), + [sym_while_statement] = STATE(1208), + [sym_do_while_statement] = STATE(1208), + [sym_for_statement] = STATE(1208), + [sym_for_in_statement] = STATE(1208), + [sym_delete_statement] = STATE(1208), + [sym_exit_statement] = STATE(1208), + [sym_return_statement] = STATE(1208), + [sym_switch_statement] = STATE(1208), + [sym__io_statement] = STATE(1208), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1208), + [sym_piped_io_statement] = STATE(1208), + [sym_block] = STATE(1216), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(146), + [aux_sym_if_statement_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(491), + [sym_continue_statement] = ACTIONS(491), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(491), + [sym_nextfile_statement] = ACTIONS(491), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [146] = { - [sym__statement] = STATE(1264), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_while_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_delete_statement] = STATE(1264), - [sym_exit_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym__io_statement] = STATE(1264), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1264), - [sym_piped_io_statement] = STATE(1264), - [sym_block] = STATE(1263), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(137), - [aux_sym_if_statement_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(526), - [sym_continue_statement] = ACTIONS(526), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(526), - [sym_nextfile_statement] = ACTIONS(526), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1215), + [sym__statement_separated] = STATE(1215), + [sym__control_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_while_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_delete_statement] = STATE(1215), + [sym_exit_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym__io_statement] = STATE(1215), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1215), + [sym_piped_io_statement] = STATE(1215), + [sym_block] = STATE(1211), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(487), + [sym_continue_statement] = ACTIONS(487), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(487), + [sym_nextfile_statement] = ACTIONS(487), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [147] = { - [sym__statement] = STATE(1948), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1948), - [sym_if_statement] = STATE(1948), - [sym_while_statement] = STATE(1948), - [sym_do_while_statement] = STATE(1948), - [sym_for_statement] = STATE(1948), - [sym_for_in_statement] = STATE(1948), - [sym_delete_statement] = STATE(1948), - [sym_exit_statement] = STATE(1948), - [sym_return_statement] = STATE(1948), - [sym_switch_statement] = STATE(1948), - [sym__io_statement] = STATE(1948), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1948), - [sym_piped_io_statement] = STATE(1948), - [sym_block] = STATE(1955), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(630), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(632), - [sym_continue_statement] = ACTIONS(632), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(632), - [sym_nextfile_statement] = ACTIONS(632), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1187), + [sym__statement_separated] = STATE(1187), + [sym__control_statement] = STATE(1187), + [sym_if_statement] = STATE(1187), + [sym_while_statement] = STATE(1187), + [sym_do_while_statement] = STATE(1187), + [sym_for_statement] = STATE(1187), + [sym_for_in_statement] = STATE(1187), + [sym_delete_statement] = STATE(1187), + [sym_exit_statement] = STATE(1187), + [sym_return_statement] = STATE(1187), + [sym_switch_statement] = STATE(1187), + [sym__io_statement] = STATE(1187), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1187), + [sym_piped_io_statement] = STATE(1187), + [sym_block] = STATE(1213), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(126), + [aux_sym_if_statement_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(479), + [sym_continue_statement] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(479), + [sym_nextfile_statement] = ACTIONS(479), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [148] = { - [sym__statement] = STATE(1300), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1300), - [sym_if_statement] = STATE(1300), - [sym_while_statement] = STATE(1300), - [sym_do_while_statement] = STATE(1300), - [sym_for_statement] = STATE(1300), - [sym_for_in_statement] = STATE(1300), - [sym_delete_statement] = STATE(1300), - [sym_exit_statement] = STATE(1300), - [sym_return_statement] = STATE(1300), - [sym_switch_statement] = STATE(1300), - [sym__io_statement] = STATE(1300), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1300), - [sym_piped_io_statement] = STATE(1300), - [sym_block] = STATE(1312), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(578), - [sym_continue_statement] = ACTIONS(578), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(578), - [sym_nextfile_statement] = ACTIONS(578), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [sym__statement] = STATE(1190), + [sym__statement_separated] = STATE(1190), + [sym__control_statement] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_while_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_delete_statement] = STATE(1190), + [sym_exit_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym__io_statement] = STATE(1190), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1190), + [sym_piped_io_statement] = STATE(1190), + [sym_block] = STATE(1212), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_comment] = STATE(125), + [aux_sym_if_statement_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(475), + [sym_continue_statement] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(475), + [sym_nextfile_statement] = ACTIONS(475), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), }, [149] = { - [sym__statement] = STATE(1989), + [sym__statement] = STATE(2194), [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1989), - [sym_if_statement] = STATE(1989), - [sym_while_statement] = STATE(1989), - [sym_do_while_statement] = STATE(1989), - [sym_for_statement] = STATE(1989), - [sym_for_in_statement] = STATE(1989), - [sym_delete_statement] = STATE(1989), - [sym_exit_statement] = STATE(1989), - [sym_return_statement] = STATE(1989), - [sym_switch_statement] = STATE(1989), - [sym__io_statement] = STATE(1989), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1989), - [sym_piped_io_statement] = STATE(1989), - [sym_block] = STATE(2264), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(151), - [aux_sym_if_statement_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(346), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), + [sym__control_statement] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_do_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_for_in_statement] = STATE(2194), + [sym_delete_statement] = STATE(2194), + [sym_exit_statement] = STATE(2194), + [sym_return_statement] = STATE(2194), + [sym_switch_statement] = STATE(2194), + [sym__io_statement] = STATE(2194), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(2194), + [sym_piped_io_statement] = STATE(2194), + [sym_block] = STATE(2294), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(150), + [aux_sym_if_statement_repeat1] = STATE(150), + [sym_identifier] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(647), + [sym_continue_statement] = ACTIONS(647), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(647), + [sym_nextfile_statement] = ACTIONS(647), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [150] = { - [sym__statement] = STATE(2005), + [sym__statement] = STATE(2205), [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(2005), - [sym_if_statement] = STATE(2005), - [sym_while_statement] = STATE(2005), - [sym_do_while_statement] = STATE(2005), - [sym_for_statement] = STATE(2005), - [sym_for_in_statement] = STATE(2005), - [sym_delete_statement] = STATE(2005), - [sym_exit_statement] = STATE(2005), - [sym_return_statement] = STATE(2005), - [sym_switch_statement] = STATE(2005), - [sym__io_statement] = STATE(2005), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(2005), - [sym_piped_io_statement] = STATE(2005), - [sym_block] = STATE(2150), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(152), - [aux_sym_if_statement_repeat1] = STATE(152), - [sym_identifier] = ACTIONS(346), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), + [sym__control_statement] = STATE(2205), + [sym_if_statement] = STATE(2205), + [sym_while_statement] = STATE(2205), + [sym_do_while_statement] = STATE(2205), + [sym_for_statement] = STATE(2205), + [sym_for_in_statement] = STATE(2205), + [sym_delete_statement] = STATE(2205), + [sym_exit_statement] = STATE(2205), + [sym_return_statement] = STATE(2205), + [sym_switch_statement] = STATE(2205), + [sym__io_statement] = STATE(2205), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(2205), + [sym_piped_io_statement] = STATE(2205), + [sym_block] = STATE(2402), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(649), + [sym_continue_statement] = ACTIONS(649), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(649), + [sym_nextfile_statement] = ACTIONS(649), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [151] = { - [sym__statement] = STATE(1981), + [sym__statement] = STATE(2189), [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1981), - [sym_if_statement] = STATE(1981), - [sym_while_statement] = STATE(1981), - [sym_do_while_statement] = STATE(1981), - [sym_for_statement] = STATE(1981), - [sym_for_in_statement] = STATE(1981), - [sym_delete_statement] = STATE(1981), - [sym_exit_statement] = STATE(1981), - [sym_return_statement] = STATE(1981), - [sym_switch_statement] = STATE(1981), - [sym__io_statement] = STATE(1981), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1981), - [sym_piped_io_statement] = STATE(1981), - [sym_block] = STATE(2268), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(638), - [sym_continue_statement] = ACTIONS(638), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), + [sym__control_statement] = STATE(2189), + [sym_if_statement] = STATE(2189), + [sym_while_statement] = STATE(2189), + [sym_do_while_statement] = STATE(2189), + [sym_for_statement] = STATE(2189), + [sym_for_in_statement] = STATE(2189), + [sym_delete_statement] = STATE(2189), + [sym_exit_statement] = STATE(2189), + [sym_return_statement] = STATE(2189), + [sym_switch_statement] = STATE(2189), + [sym__io_statement] = STATE(2189), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(2189), + [sym_piped_io_statement] = STATE(2189), + [sym_block] = STATE(2535), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(651), + [sym_continue_statement] = ACTIONS(651), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(638), - [sym_nextfile_statement] = ACTIONS(638), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(651), + [sym_nextfile_statement] = ACTIONS(651), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [152] = { - [sym__statement] = STATE(2010), + [sym__statement] = STATE(2196), [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_while_statement] = STATE(2010), - [sym_do_while_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_for_in_statement] = STATE(2010), - [sym_delete_statement] = STATE(2010), - [sym_exit_statement] = STATE(2010), - [sym_return_statement] = STATE(2010), - [sym_switch_statement] = STATE(2010), - [sym__io_statement] = STATE(2010), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(2010), - [sym_piped_io_statement] = STATE(2010), - [sym_block] = STATE(2092), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_comment] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(346), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(640), - [sym_continue_statement] = ACTIONS(640), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), + [sym__control_statement] = STATE(2196), + [sym_if_statement] = STATE(2196), + [sym_while_statement] = STATE(2196), + [sym_do_while_statement] = STATE(2196), + [sym_for_statement] = STATE(2196), + [sym_for_in_statement] = STATE(2196), + [sym_delete_statement] = STATE(2196), + [sym_exit_statement] = STATE(2196), + [sym_return_statement] = STATE(2196), + [sym_switch_statement] = STATE(2196), + [sym__io_statement] = STATE(2196), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(2196), + [sym_piped_io_statement] = STATE(2196), + [sym_block] = STATE(2531), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_comment] = STATE(151), + [aux_sym_if_statement_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(653), + [sym_continue_statement] = ACTIONS(653), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(640), - [sym_nextfile_statement] = ACTIONS(640), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND] = ACTIONS(212), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(653), + [sym_nextfile_statement] = ACTIONS(653), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), }, [153] = { - [sym__statement] = STATE(1221), + [sym__statement] = STATE(1178), [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1178), + [sym_if_statement] = STATE(1178), + [sym_while_statement] = STATE(1178), + [sym_do_while_statement] = STATE(1178), + [sym_for_statement] = STATE(1178), + [sym_for_in_statement] = STATE(1178), + [sym_delete_statement] = STATE(1178), + [sym_exit_statement] = STATE(1178), + [sym_return_statement] = STATE(1178), + [sym_switch_statement] = STATE(1178), + [sym__io_statement] = STATE(1178), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1178), + [sym_piped_io_statement] = STATE(1178), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_LF] = ACTIONS(43), + [anon_sym_CR_LF] = ACTIONS(43), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(55), + [sym_continue_statement] = ACTIONS(55), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(55), + [sym_nextfile_statement] = ACTIONS(55), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_AT] = ACTIONS(663), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [sym__if_else_separator] = ACTIONS(87), + }, + [154] = { + [sym__statement] = STATE(1247), + [sym__statement_separated] = STATE(154), + [sym__control_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_while_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_for_in_statement] = STATE(1247), + [sym_delete_statement] = STATE(1247), + [sym_exit_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym__io_statement] = STATE(1247), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1247), + [sym_piped_io_statement] = STATE(1247), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_LF] = ACTIONS(43), + [anon_sym_CR_LF] = ACTIONS(43), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(153), + [sym_continue_statement] = ACTIONS(153), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(153), + [sym_nextfile_statement] = ACTIONS(153), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(669), + [anon_sym_DASH_DASH] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(671), + [anon_sym_AT] = ACTIONS(673), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(177), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [155] = { + [sym__statement] = STATE(1185), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1185), + [sym_if_statement] = STATE(1185), + [sym_while_statement] = STATE(1185), + [sym_do_while_statement] = STATE(1185), + [sym_for_statement] = STATE(1185), + [sym_for_in_statement] = STATE(1185), + [sym_delete_statement] = STATE(1185), + [sym_exit_statement] = STATE(1185), + [sym_return_statement] = STATE(1185), + [sym_switch_statement] = STATE(1185), + [sym__io_statement] = STATE(1185), + [sym__getline_exp] = STATE(1773), + [sym_getline_input] = STATE(1773), + [sym_getline_file] = STATE(1773), + [sym_print_statement] = STATE(2052), + [sym_printf_statement] = STATE(2052), + [sym_redirected_io_statement] = STATE(1185), + [sym_piped_io_statement] = STATE(1185), + [sym_block] = STATE(1197), + [sym__exp] = STATE(1773), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1773), + [sym_assignment_exp] = STATE(1773), + [sym_piped_io_exp] = STATE(1773), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1773), + [sym_regex_constant] = STATE(1773), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1773), + [sym_identifier] = ACTIONS(41), + [anon_sym_if] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [sym_break_statement] = ACTIONS(675), + [sym_continue_statement] = ACTIONS(675), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(65), + [sym_next_statement] = ACTIONS(675), + [sym_nextfile_statement] = ACTIONS(675), + [anon_sym_print] = ACTIONS(67), + [anon_sym_printf] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [156] = { + [sym__statement] = STATE(1221), + [sym__statement_separated] = STATE(1221), [sym__control_statement] = STATE(1221), [sym_if_statement] = STATE(1221), [sym_while_statement] = STATE(1221), @@ -19995,50053 +27446,97158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1221), [sym_switch_statement] = STATE(1221), [sym__io_statement] = STATE(1221), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), + [sym__getline_exp] = STATE(546), + [sym_getline_input] = STATE(546), + [sym_getline_file] = STATE(546), + [sym_print_statement] = STATE(1159), + [sym_printf_statement] = STATE(1159), [sym_redirected_io_statement] = STATE(1221), [sym_piped_io_statement] = STATE(1221), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(41), - [anon_sym_LF] = ACTIONS(41), - [anon_sym_CR_LF] = ACTIONS(41), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(53), - [sym_continue_statement] = ACTIONS(53), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(53), - [sym_nextfile_statement] = ACTIONS(53), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_PLUS_PLUS] = ACTIONS(646), - [anon_sym_DASH_DASH] = ACTIONS(646), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_AT] = ACTIONS(650), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym__if_else_separator] = ACTIONS(83), - }, - [154] = { - [sym__statement] = STATE(1320), - [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1320), - [sym_if_statement] = STATE(1320), - [sym_while_statement] = STATE(1320), - [sym_do_while_statement] = STATE(1320), - [sym_for_statement] = STATE(1320), - [sym_for_in_statement] = STATE(1320), - [sym_delete_statement] = STATE(1320), - [sym_exit_statement] = STATE(1320), - [sym_return_statement] = STATE(1320), - [sym_switch_statement] = STATE(1320), - [sym__io_statement] = STATE(1320), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1320), - [sym_piped_io_statement] = STATE(1320), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(41), - [anon_sym_LF] = ACTIONS(41), - [anon_sym_CR_LF] = ACTIONS(41), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(234), - [sym_continue_statement] = ACTIONS(234), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(234), - [sym_nextfile_statement] = ACTIONS(234), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(256), - [anon_sym_DQUOTE] = ACTIONS(258), - }, - [155] = { - [sym__statement] = STATE(1344), - [sym__statement_separated] = STATE(1344), - [sym__control_statement] = STATE(1344), - [sym_if_statement] = STATE(1344), - [sym_while_statement] = STATE(1344), - [sym_do_while_statement] = STATE(1344), - [sym_for_statement] = STATE(1344), - [sym_for_in_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_exit_statement] = STATE(1344), - [sym_return_statement] = STATE(1344), - [sym_switch_statement] = STATE(1344), - [sym__io_statement] = STATE(1344), - [sym__getline_exp] = STATE(521), - [sym_getline_input] = STATE(521), - [sym_getline_file] = STATE(521), - [sym_print_statement] = STATE(936), - [sym_printf_statement] = STATE(936), - [sym_redirected_io_statement] = STATE(1344), - [sym_piped_io_statement] = STATE(1344), - [sym_block] = STATE(1350), - [sym__exp] = STATE(521), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), + [sym_block] = STATE(1222), + [sym__exp] = STATE(546), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(521), - [sym_assignment_exp] = STATE(521), - [sym_piped_io_exp] = STATE(521), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_regex] = STATE(521), - [sym_regex_constant] = STATE(521), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(521), - [sym_identifier] = ACTIONS(162), - [anon_sym_if] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(172), - [sym_break_statement] = ACTIONS(662), - [sym_continue_statement] = ACTIONS(662), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(178), - [anon_sym_return] = ACTIONS(180), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(662), - [sym_nextfile_statement] = ACTIONS(662), - [anon_sym_print] = ACTIONS(190), - [anon_sym_printf] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_PLUS_PLUS] = ACTIONS(200), - [anon_sym_DASH_DASH] = ACTIONS(200), - [anon_sym_DOLLAR] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(204), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DQUOTE] = ACTIONS(210), - }, - [156] = { - [sym__statement] = STATE(1250), - [sym__statement_separated] = STATE(1250), - [sym__control_statement] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_do_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_for_in_statement] = STATE(1250), - [sym_delete_statement] = STATE(1250), - [sym_exit_statement] = STATE(1250), - [sym_return_statement] = STATE(1250), - [sym_switch_statement] = STATE(1250), - [sym__io_statement] = STATE(1250), - [sym__getline_exp] = STATE(509), - [sym_getline_input] = STATE(509), - [sym_getline_file] = STATE(509), - [sym_print_statement] = STATE(831), - [sym_printf_statement] = STATE(831), - [sym_redirected_io_statement] = STATE(1250), - [sym_piped_io_statement] = STATE(1250), - [sym_block] = STATE(1251), - [sym__exp] = STATE(509), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(509), - [sym_assignment_exp] = STATE(509), - [sym_piped_io_exp] = STATE(509), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_regex] = STATE(509), - [sym_regex_constant] = STATE(509), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(509), - [sym_identifier] = ACTIONS(302), - [anon_sym_if] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_while] = ACTIONS(310), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(312), - [sym_break_statement] = ACTIONS(664), - [sym_continue_statement] = ACTIONS(664), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(316), - [anon_sym_return] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(664), - [sym_nextfile_statement] = ACTIONS(664), - [anon_sym_print] = ACTIONS(324), - [anon_sym_printf] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(336), - [anon_sym_AT] = ACTIONS(338), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(344), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(546), + [sym_assignment_exp] = STATE(546), + [sym_piped_io_exp] = STATE(546), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(546), + [sym_regex_constant] = STATE(546), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(546), + [sym_identifier] = ACTIONS(89), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(99), + [sym_break_statement] = ACTIONS(677), + [sym_continue_statement] = ACTIONS(677), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(677), + [sym_nextfile_statement] = ACTIONS(677), + [anon_sym_print] = ACTIONS(117), + [anon_sym_printf] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), }, [157] = { - [sym__statement] = STATE(1344), - [sym__statement_separated] = STATE(10), - [sym__control_statement] = STATE(1344), - [sym_if_statement] = STATE(1344), - [sym_while_statement] = STATE(1344), - [sym_do_while_statement] = STATE(1344), - [sym_for_statement] = STATE(1344), - [sym_for_in_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_exit_statement] = STATE(1344), - [sym_return_statement] = STATE(1344), - [sym_switch_statement] = STATE(1344), - [sym__io_statement] = STATE(1344), - [sym__getline_exp] = STATE(1620), - [sym_getline_input] = STATE(1620), - [sym_getline_file] = STATE(1620), - [sym_print_statement] = STATE(1840), - [sym_printf_statement] = STATE(1840), - [sym_redirected_io_statement] = STATE(1344), - [sym_piped_io_statement] = STATE(1344), - [sym_block] = STATE(1350), - [sym__exp] = STATE(1620), - [sym_ternary_exp] = STATE(1518), - [sym_binary_exp] = STATE(1518), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1518), - [sym_update_exp] = STATE(1620), - [sym_assignment_exp] = STATE(1620), - [sym_piped_io_exp] = STATE(1620), - [sym_string_concat] = STATE(1518), - [sym_field_ref] = STATE(694), - [sym_array_ref] = STATE(665), - [sym_regex] = STATE(1620), - [sym_regex_constant] = STATE(1620), - [sym_grouping] = STATE(1518), - [sym__primitive] = STATE(1518), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(625), - [sym_number] = STATE(1518), - [sym_string] = STATE(1518), - [sym_func_call] = STATE(1518), - [sym_indirect_func_call] = STATE(1620), - [sym_identifier] = ACTIONS(224), - [anon_sym_if] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_while] = ACTIONS(230), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(232), - [sym_break_statement] = ACTIONS(662), - [sym_continue_statement] = ACTIONS(662), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(236), - [anon_sym_return] = ACTIONS(238), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(240), - [sym_next_statement] = ACTIONS(662), - [sym_nextfile_statement] = ACTIONS(662), - [anon_sym_print] = ACTIONS(242), - [anon_sym_printf] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), + [sym__statement] = STATE(1221), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1221), + [sym_if_statement] = STATE(1221), + [sym_while_statement] = STATE(1221), + [sym_do_while_statement] = STATE(1221), + [sym_for_statement] = STATE(1221), + [sym_for_in_statement] = STATE(1221), + [sym_delete_statement] = STATE(1221), + [sym_exit_statement] = STATE(1221), + [sym_return_statement] = STATE(1221), + [sym_switch_statement] = STATE(1221), + [sym__io_statement] = STATE(1221), + [sym__getline_exp] = STATE(1833), + [sym_getline_input] = STATE(1833), + [sym_getline_file] = STATE(1833), + [sym_print_statement] = STATE(2053), + [sym_printf_statement] = STATE(2053), + [sym_redirected_io_statement] = STATE(1221), + [sym_piped_io_statement] = STATE(1221), + [sym_block] = STATE(1222), + [sym__exp] = STATE(1833), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1833), + [sym_assignment_exp] = STATE(1833), + [sym_piped_io_exp] = STATE(1833), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1833), + [sym_regex_constant] = STATE(1833), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1833), + [sym_identifier] = ACTIONS(143), + [anon_sym_if] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(151), + [sym_break_statement] = ACTIONS(677), + [sym_continue_statement] = ACTIONS(677), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(155), + [anon_sym_return] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(159), + [sym_next_statement] = ACTIONS(677), + [sym_nextfile_statement] = ACTIONS(677), + [anon_sym_print] = ACTIONS(161), + [anon_sym_printf] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), }, [158] = { - [sym__statement] = STATE(1250), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_do_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_for_in_statement] = STATE(1250), - [sym_delete_statement] = STATE(1250), - [sym_exit_statement] = STATE(1250), - [sym_return_statement] = STATE(1250), - [sym_switch_statement] = STATE(1250), - [sym__io_statement] = STATE(1250), - [sym__getline_exp] = STATE(1562), - [sym_getline_input] = STATE(1562), - [sym_getline_file] = STATE(1562), - [sym_print_statement] = STATE(1838), - [sym_printf_statement] = STATE(1838), - [sym_redirected_io_statement] = STATE(1250), - [sym_piped_io_statement] = STATE(1250), - [sym_block] = STATE(1251), - [sym__exp] = STATE(1562), - [sym_ternary_exp] = STATE(1493), - [sym_binary_exp] = STATE(1493), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1493), - [sym_update_exp] = STATE(1562), - [sym_assignment_exp] = STATE(1562), - [sym_piped_io_exp] = STATE(1562), - [sym_string_concat] = STATE(1493), - [sym_field_ref] = STATE(648), - [sym_array_ref] = STATE(630), - [sym_regex] = STATE(1562), - [sym_regex_constant] = STATE(1562), - [sym_grouping] = STATE(1493), - [sym__primitive] = STATE(1493), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(612), - [sym_number] = STATE(1493), - [sym_string] = STATE(1493), - [sym_func_call] = STATE(1493), - [sym_indirect_func_call] = STATE(1562), - [sym_identifier] = ACTIONS(39), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(664), - [sym_continue_statement] = ACTIONS(664), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(664), - [sym_nextfile_statement] = ACTIONS(664), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(396), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), + [sym__statement] = STATE(1185), + [sym__statement_separated] = STATE(153), + [sym__control_statement] = STATE(1185), + [sym_if_statement] = STATE(1185), + [sym_while_statement] = STATE(1185), + [sym_do_while_statement] = STATE(1185), + [sym_for_statement] = STATE(1185), + [sym_for_in_statement] = STATE(1185), + [sym_delete_statement] = STATE(1185), + [sym_exit_statement] = STATE(1185), + [sym_return_statement] = STATE(1185), + [sym_switch_statement] = STATE(1185), + [sym__io_statement] = STATE(1185), + [sym__getline_exp] = STATE(1882), + [sym_getline_input] = STATE(1882), + [sym_getline_file] = STATE(1882), + [sym_print_statement] = STATE(2054), + [sym_printf_statement] = STATE(2054), + [sym_redirected_io_statement] = STATE(1185), + [sym_piped_io_statement] = STATE(1185), + [sym_block] = STATE(1197), + [sym__exp] = STATE(1882), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1882), + [sym_assignment_exp] = STATE(1882), + [sym_piped_io_exp] = STATE(1882), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1882), + [sym_regex_constant] = STATE(1882), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1882), + [sym_identifier] = ACTIONS(297), + [anon_sym_if] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_while] = ACTIONS(305), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(307), + [sym_break_statement] = ACTIONS(675), + [sym_continue_statement] = ACTIONS(675), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(311), + [anon_sym_return] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(317), + [sym_next_statement] = ACTIONS(675), + [sym_nextfile_statement] = ACTIONS(675), + [anon_sym_print] = ACTIONS(319), + [anon_sym_printf] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), }, [159] = { - [sym__statement] = STATE(1344), + [sym__statement] = STATE(1221), [sym__statement_separated] = STATE(154), - [sym__control_statement] = STATE(1344), - [sym_if_statement] = STATE(1344), - [sym_while_statement] = STATE(1344), - [sym_do_while_statement] = STATE(1344), - [sym_for_statement] = STATE(1344), - [sym_for_in_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_exit_statement] = STATE(1344), - [sym_return_statement] = STATE(1344), - [sym_switch_statement] = STATE(1344), - [sym__io_statement] = STATE(1344), - [sym__getline_exp] = STATE(1695), - [sym_getline_input] = STATE(1695), - [sym_getline_file] = STATE(1695), - [sym_print_statement] = STATE(1842), - [sym_printf_statement] = STATE(1842), - [sym_redirected_io_statement] = STATE(1344), - [sym_piped_io_statement] = STATE(1344), - [sym_block] = STATE(1350), - [sym__exp] = STATE(1695), - [sym_ternary_exp] = STATE(1588), - [sym_binary_exp] = STATE(1588), - [sym__binary_in] = STATE(1473), - [sym_unary_exp] = STATE(1588), - [sym_update_exp] = STATE(1695), - [sym_assignment_exp] = STATE(1695), - [sym_piped_io_exp] = STATE(1695), - [sym_string_concat] = STATE(1588), - [sym_field_ref] = STATE(1293), - [sym_array_ref] = STATE(931), - [sym_regex] = STATE(1695), - [sym_regex_constant] = STATE(1695), - [sym_grouping] = STATE(1588), - [sym__primitive] = STATE(1588), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(851), - [sym_number] = STATE(1588), - [sym_string] = STATE(1588), - [sym_func_call] = STATE(1588), - [sym_indirect_func_call] = STATE(1695), - [sym_identifier] = ACTIONS(346), - [anon_sym_if] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(352), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(170), - [anon_sym_for] = ACTIONS(356), - [sym_break_statement] = ACTIONS(662), - [sym_continue_statement] = ACTIONS(662), - [anon_sym_delete] = ACTIONS(176), - [anon_sym_exit] = ACTIONS(360), - [anon_sym_return] = ACTIONS(362), - [anon_sym_switch] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(364), - [sym_next_statement] = ACTIONS(662), - [sym_nextfile_statement] = ACTIONS(662), - [anon_sym_print] = ACTIONS(366), - [anon_sym_printf] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(376), - [anon_sym_DASH_DASH] = ACTIONS(376), - [anon_sym_DOLLAR] = ACTIONS(378), - [anon_sym_AT] = ACTIONS(380), - [aux_sym_number_token1] = ACTIONS(256), - [aux_sym_number_token2] = ACTIONS(290), - [anon_sym_DQUOTE] = ACTIONS(292), + [sym__control_statement] = STATE(1221), + [sym_if_statement] = STATE(1221), + [sym_while_statement] = STATE(1221), + [sym_do_while_statement] = STATE(1221), + [sym_for_statement] = STATE(1221), + [sym_for_in_statement] = STATE(1221), + [sym_delete_statement] = STATE(1221), + [sym_exit_statement] = STATE(1221), + [sym_return_statement] = STATE(1221), + [sym_switch_statement] = STATE(1221), + [sym__io_statement] = STATE(1221), + [sym__getline_exp] = STATE(1902), + [sym_getline_input] = STATE(1902), + [sym_getline_file] = STATE(1902), + [sym_print_statement] = STATE(2063), + [sym_printf_statement] = STATE(2063), + [sym_redirected_io_statement] = STATE(1221), + [sym_piped_io_statement] = STATE(1221), + [sym_block] = STATE(1222), + [sym__exp] = STATE(1902), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1902), + [sym_assignment_exp] = STATE(1902), + [sym_piped_io_exp] = STATE(1902), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1902), + [sym_regex_constant] = STATE(1902), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1902), + [sym_identifier] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(97), + [anon_sym_for] = ACTIONS(577), + [sym_break_statement] = ACTIONS(677), + [sym_continue_statement] = ACTIONS(677), + [anon_sym_delete] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_getline] = ACTIONS(583), + [sym_next_statement] = ACTIONS(677), + [sym_nextfile_statement] = ACTIONS(677), + [anon_sym_print] = ACTIONS(585), + [anon_sym_printf] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), }, [160] = { - [sym__statement] = STATE(1250), - [sym__statement_separated] = STATE(153), - [sym__control_statement] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_do_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_for_in_statement] = STATE(1250), - [sym_delete_statement] = STATE(1250), - [sym_exit_statement] = STATE(1250), - [sym_return_statement] = STATE(1250), - [sym_switch_statement] = STATE(1250), - [sym__io_statement] = STATE(1250), - [sym__getline_exp] = STATE(1690), - [sym_getline_input] = STATE(1690), - [sym_getline_file] = STATE(1690), - [sym_print_statement] = STATE(1841), - [sym_printf_statement] = STATE(1841), - [sym_redirected_io_statement] = STATE(1250), - [sym_piped_io_statement] = STATE(1250), - [sym_block] = STATE(1251), - [sym__exp] = STATE(1690), - [sym_ternary_exp] = STATE(1559), - [sym_binary_exp] = STATE(1559), - [sym__binary_in] = STATE(1419), - [sym_unary_exp] = STATE(1559), - [sym_update_exp] = STATE(1690), - [sym_assignment_exp] = STATE(1690), - [sym_piped_io_exp] = STATE(1690), - [sym_string_concat] = STATE(1559), - [sym_field_ref] = STATE(1131), - [sym_array_ref] = STATE(840), - [sym_regex] = STATE(1690), - [sym_regex_constant] = STATE(1690), - [sym_grouping] = STATE(1559), - [sym__primitive] = STATE(1559), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(689), - [sym_number] = STATE(1559), - [sym_string] = STATE(1559), - [sym_func_call] = STATE(1559), - [sym_indirect_func_call] = STATE(1690), - [sym_identifier] = ACTIONS(430), - [anon_sym_if] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(440), - [sym_break_statement] = ACTIONS(664), - [sym_continue_statement] = ACTIONS(664), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_getline] = ACTIONS(448), - [sym_next_statement] = ACTIONS(664), - [sym_nextfile_statement] = ACTIONS(664), - [anon_sym_print] = ACTIONS(450), - [anon_sym_printf] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(400), + [sym__statement] = STATE(1185), + [sym__statement_separated] = STATE(1185), + [sym__control_statement] = STATE(1185), + [sym_if_statement] = STATE(1185), + [sym_while_statement] = STATE(1185), + [sym_do_while_statement] = STATE(1185), + [sym_for_statement] = STATE(1185), + [sym_for_in_statement] = STATE(1185), + [sym_delete_statement] = STATE(1185), + [sym_exit_statement] = STATE(1185), + [sym_return_statement] = STATE(1185), + [sym_switch_statement] = STATE(1185), + [sym__io_statement] = STATE(1185), + [sym__getline_exp] = STATE(517), + [sym_getline_input] = STATE(517), + [sym_getline_file] = STATE(517), + [sym_print_statement] = STATE(989), + [sym_printf_statement] = STATE(989), + [sym_redirected_io_statement] = STATE(1185), + [sym_piped_io_statement] = STATE(1185), + [sym_block] = STATE(1197), + [sym__exp] = STATE(517), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(517), + [sym_assignment_exp] = STATE(517), + [sym_piped_io_exp] = STATE(517), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(517), + [sym_regex_constant] = STATE(517), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(517), + [sym_identifier] = ACTIONS(339), + [anon_sym_if] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(349), + [sym_break_statement] = ACTIONS(675), + [sym_continue_statement] = ACTIONS(675), + [anon_sym_delete] = ACTIONS(57), + [anon_sym_exit] = ACTIONS(353), + [anon_sym_return] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(675), + [sym_nextfile_statement] = ACTIONS(675), + [anon_sym_print] = ACTIONS(359), + [anon_sym_printf] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), }, [161] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_case] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(668), - [anon_sym_DASH_DASH] = ACTIONS(668), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(666), - [anon_sym_DASH_EQ] = ACTIONS(666), - [anon_sym_STAR_EQ] = ACTIONS(666), - [anon_sym_SLASH_EQ] = ACTIONS(666), - [anon_sym_PERCENT_EQ] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), - [sym__if_else_separator] = ACTIONS(674), - [sym__func_call] = ACTIONS(676), + [sym__getline_exp] = STATE(414), + [sym_getline_input] = STATE(414), + [sym_getline_file] = STATE(414), + [sym__print_args] = STATE(662), + [sym__exp] = STATE(414), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(414), + [sym_assignment_exp] = STATE(414), + [sym_piped_io_exp] = STATE(414), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_exp_list] = STATE(662), + [sym_regex] = STATE(414), + [sym_regex_constant] = STATE(414), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(414), + [aux_sym_exp_list_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(679), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_CR_LF] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_while] = ACTIONS(679), + [anon_sym_do] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [sym_break_statement] = ACTIONS(679), + [sym_continue_statement] = ACTIONS(679), + [anon_sym_delete] = ACTIONS(679), + [anon_sym_exit] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(679), + [anon_sym_RBRACE] = ACTIONS(679), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(679), + [sym_nextfile_statement] = ACTIONS(679), + [anon_sym_print] = ACTIONS(679), + [anon_sym_LPAREN2] = ACTIONS(683), + [anon_sym_printf] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(691), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(375), + [anon_sym_DQUOTE] = ACTIONS(693), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(679), + [sym__if_else_separator] = ACTIONS(695), }, [162] = { - [sym_array_ref] = STATE(173), - [sym_namespace] = STATE(2256), - [sym_ns_qualified_name] = STATE(173), - [sym_identifier] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LF] = ACTIONS(680), - [anon_sym_CR_LF] = ACTIONS(680), - [anon_sym_if] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(680), - [anon_sym_while] = ACTIONS(680), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(680), - [anon_sym_in] = ACTIONS(680), - [sym_break_statement] = ACTIONS(680), - [sym_continue_statement] = ACTIONS(680), - [anon_sym_delete] = ACTIONS(680), - [anon_sym_exit] = ACTIONS(680), - [anon_sym_return] = ACTIONS(680), - [anon_sym_switch] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_case] = ACTIONS(680), - [anon_sym_default] = ACTIONS(680), - [anon_sym_getline] = ACTIONS(680), - [anon_sym_LT] = ACTIONS(680), - [sym_next_statement] = ACTIONS(680), - [sym_nextfile_statement] = ACTIONS(680), - [anon_sym_print] = ACTIONS(680), - [anon_sym_printf] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(680), - [anon_sym_PIPE_AMP] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_CARET] = ACTIONS(680), - [anon_sym_STAR_STAR] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(680), - [anon_sym_PERCENT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_BANG_TILDE] = ACTIONS(680), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_DOLLAR] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_number_token1] = ACTIONS(680), - [aux_sym_number_token2] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [sym_concatenating_space] = ACTIONS(682), - [sym__if_else_separator] = ACTIONS(682), + [sym__getline_exp] = STATE(471), + [sym_getline_input] = STATE(471), + [sym_getline_file] = STATE(471), + [sym__print_args] = STATE(807), + [sym__exp] = STATE(471), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(471), + [sym_assignment_exp] = STATE(471), + [sym_piped_io_exp] = STATE(471), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_exp_list] = STATE(807), + [sym_regex] = STATE(471), + [sym_regex_constant] = STATE(471), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(471), + [aux_sym_exp_list_repeat1] = STATE(767), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(679), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_CR_LF] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(697), + [anon_sym_while] = ACTIONS(679), + [anon_sym_do] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [sym_break_statement] = ACTIONS(679), + [sym_continue_statement] = ACTIONS(679), + [anon_sym_delete] = ACTIONS(679), + [anon_sym_exit] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(679), + [anon_sym_RBRACE] = ACTIONS(679), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(679), + [sym_nextfile_statement] = ACTIONS(679), + [anon_sym_print] = ACTIONS(679), + [anon_sym_LPAREN2] = ACTIONS(699), + [anon_sym_printf] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(707), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(133), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(679), }, [163] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [anon_sym_DASH_EQ] = ACTIONS(684), - [anon_sym_STAR_EQ] = ACTIONS(684), - [anon_sym_SLASH_EQ] = ACTIONS(684), - [anon_sym_PERCENT_EQ] = ACTIONS(684), - [anon_sym_CARET_EQ] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(684), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__if_else_separator] = ACTIONS(686), - [sym__func_call] = ACTIONS(676), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(711), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), + [sym__func_call] = ACTIONS(721), }, [164] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_case] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(666), - [anon_sym_DASH_EQ] = ACTIONS(666), - [anon_sym_STAR_EQ] = ACTIONS(666), - [anon_sym_SLASH_EQ] = ACTIONS(666), - [anon_sym_PERCENT_EQ] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), - [sym__func_call] = ACTIONS(692), + [sym_array_ref] = STATE(191), + [sym_namespace] = STATE(2522), + [sym_ns_qualified_name] = STATE(202), + [sym_identifier] = ACTIONS(723), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(725), + [anon_sym_DASH_EQ] = ACTIONS(725), + [anon_sym_STAR_EQ] = ACTIONS(725), + [anon_sym_SLASH_EQ] = ACTIONS(725), + [anon_sym_PERCENT_EQ] = ACTIONS(725), + [anon_sym_CARET_EQ] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym_concatenating_space] = ACTIONS(729), + [sym__if_else_separator] = ACTIONS(729), }, [165] = { - [sym__getline_exp] = STATE(425), - [sym_getline_input] = STATE(425), - [sym_getline_file] = STATE(425), - [sym__print_args] = STATE(661), - [sym__exp] = STATE(425), - [sym_ternary_exp] = STATE(382), - [sym_binary_exp] = STATE(382), - [sym__binary_in] = STATE(399), - [sym_unary_exp] = STATE(382), - [sym_update_exp] = STATE(425), - [sym_assignment_exp] = STATE(425), - [sym_piped_io_exp] = STATE(425), - [sym_string_concat] = STATE(382), - [sym_field_ref] = STATE(255), - [sym_array_ref] = STATE(233), - [sym_exp_list] = STATE(661), - [sym_regex] = STATE(425), - [sym_regex_constant] = STATE(425), - [sym_grouping] = STATE(382), - [sym__primitive] = STATE(382), - [sym_namespace] = STATE(2249), - [sym_ns_qualified_name] = STATE(201), - [sym_number] = STATE(382), - [sym_string] = STATE(382), - [sym_func_call] = STATE(382), - [sym_indirect_func_call] = STATE(425), - [aux_sym_exp_list_repeat1] = STATE(842), - [sym_identifier] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LF] = ACTIONS(694), - [anon_sym_CR_LF] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_while] = ACTIONS(694), - [anon_sym_do] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [sym_break_statement] = ACTIONS(694), - [sym_continue_statement] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(694), - [anon_sym_exit] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_getline] = ACTIONS(322), - [sym_next_statement] = ACTIONS(694), - [sym_nextfile_statement] = ACTIONS(694), - [anon_sym_print] = ACTIONS(694), - [anon_sym_LPAREN2] = ACTIONS(698), - [anon_sym_printf] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PIPE_AMP] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(330), - [anon_sym_PLUS_PLUS] = ACTIONS(702), - [anon_sym_DASH_DASH] = ACTIONS(702), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - [aux_sym_number_token1] = ACTIONS(340), - [aux_sym_number_token2] = ACTIONS(340), - [anon_sym_DQUOTE] = ACTIONS(708), - [anon_sym_POUND] = ACTIONS(694), - [sym__if_else_separator] = ACTIONS(710), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(713), + [anon_sym_DASH_EQ] = ACTIONS(713), + [anon_sym_STAR_EQ] = ACTIONS(713), + [anon_sym_SLASH_EQ] = ACTIONS(713), + [anon_sym_PERCENT_EQ] = ACTIONS(713), + [anon_sym_CARET_EQ] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__if_else_separator] = ACTIONS(733), + [sym__func_call] = ACTIONS(721), }, [166] = { - [sym_array_ref] = STATE(202), - [sym_namespace] = STATE(2243), - [sym_ns_qualified_name] = STATE(202), - [sym_identifier] = ACTIONS(712), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LF] = ACTIONS(680), - [anon_sym_CR_LF] = ACTIONS(680), - [anon_sym_if] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(680), - [anon_sym_while] = ACTIONS(680), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(680), - [anon_sym_in] = ACTIONS(680), - [sym_break_statement] = ACTIONS(680), - [sym_continue_statement] = ACTIONS(680), - [anon_sym_delete] = ACTIONS(680), - [anon_sym_exit] = ACTIONS(680), - [anon_sym_return] = ACTIONS(680), - [anon_sym_switch] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_case] = ACTIONS(680), - [anon_sym_default] = ACTIONS(680), - [anon_sym_getline] = ACTIONS(680), - [anon_sym_LT] = ACTIONS(680), - [sym_next_statement] = ACTIONS(680), - [sym_nextfile_statement] = ACTIONS(680), - [anon_sym_print] = ACTIONS(680), - [anon_sym_printf] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(680), - [anon_sym_PIPE_AMP] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_CARET] = ACTIONS(680), - [anon_sym_STAR_STAR] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(680), - [anon_sym_PERCENT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_BANG_TILDE] = ACTIONS(680), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_DOLLAR] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_number_token1] = ACTIONS(680), - [aux_sym_number_token2] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [sym_concatenating_space] = ACTIONS(682), + [sym_array_ref] = STATE(191), + [sym_namespace] = STATE(2522), + [sym_ns_qualified_name] = STATE(191), + [sym_identifier] = ACTIONS(735), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(725), + [anon_sym_DASH_EQ] = ACTIONS(725), + [anon_sym_STAR_EQ] = ACTIONS(725), + [anon_sym_SLASH_EQ] = ACTIONS(725), + [anon_sym_PERCENT_EQ] = ACTIONS(725), + [anon_sym_CARET_EQ] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym_concatenating_space] = ACTIONS(729), + [sym__if_else_separator] = ACTIONS(729), }, [167] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [anon_sym_DASH_EQ] = ACTIONS(684), - [anon_sym_STAR_EQ] = ACTIONS(684), - [anon_sym_SLASH_EQ] = ACTIONS(684), - [anon_sym_PERCENT_EQ] = ACTIONS(684), - [anon_sym_CARET_EQ] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(684), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__func_call] = ACTIONS(692), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(739), + [anon_sym_DASH_EQ] = ACTIONS(739), + [anon_sym_STAR_EQ] = ACTIONS(739), + [anon_sym_SLASH_EQ] = ACTIONS(739), + [anon_sym_PERCENT_EQ] = ACTIONS(739), + [anon_sym_CARET_EQ] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__if_else_separator] = ACTIONS(733), + [sym__func_call] = ACTIONS(741), }, [168] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_case] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(668), - [anon_sym_DASH_DASH] = ACTIONS(668), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(666), - [anon_sym_DASH_EQ] = ACTIONS(666), - [anon_sym_STAR_EQ] = ACTIONS(666), - [anon_sym_SLASH_EQ] = ACTIONS(666), - [anon_sym_PERCENT_EQ] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(666), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), - [sym__if_else_separator] = ACTIONS(674), - [sym__func_call] = ACTIONS(676), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_PLUS_EQ] = ACTIONS(745), + [anon_sym_DASH_EQ] = ACTIONS(745), + [anon_sym_STAR_EQ] = ACTIONS(745), + [anon_sym_SLASH_EQ] = ACTIONS(745), + [anon_sym_PERCENT_EQ] = ACTIONS(745), + [anon_sym_CARET_EQ] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(747), + [sym__if_else_separator] = ACTIONS(733), + [sym__func_call] = ACTIONS(741), }, [169] = { - [sym_identifier] = ACTIONS(714), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_SEMI] = ACTIONS(714), - [anon_sym_LF] = ACTIONS(714), - [anon_sym_CR_LF] = ACTIONS(714), - [anon_sym_if] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_while] = ACTIONS(714), - [anon_sym_do] = ACTIONS(714), - [anon_sym_for] = ACTIONS(714), - [anon_sym_in] = ACTIONS(714), - [sym_break_statement] = ACTIONS(714), - [sym_continue_statement] = ACTIONS(714), - [anon_sym_delete] = ACTIONS(714), - [anon_sym_exit] = ACTIONS(714), - [anon_sym_return] = ACTIONS(714), - [anon_sym_switch] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(714), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_case] = ACTIONS(714), - [anon_sym_default] = ACTIONS(714), - [anon_sym_getline] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(714), - [sym_next_statement] = ACTIONS(714), - [sym_nextfile_statement] = ACTIONS(714), - [anon_sym_print] = ACTIONS(714), - [anon_sym_printf] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_GT_GT] = ACTIONS(714), - [anon_sym_PIPE] = ACTIONS(714), - [anon_sym_PIPE_AMP] = ACTIONS(714), - [anon_sym_QMARK] = ACTIONS(714), - [anon_sym_CARET] = ACTIONS(714), - [anon_sym_STAR_STAR] = ACTIONS(714), - [anon_sym_STAR] = ACTIONS(714), - [anon_sym_SLASH] = ACTIONS(714), - [anon_sym_PERCENT] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(714), - [anon_sym_GT_EQ] = ACTIONS(714), - [anon_sym_EQ_EQ] = ACTIONS(714), - [anon_sym_BANG_EQ] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(714), - [anon_sym_BANG_TILDE] = ACTIONS(714), - [anon_sym_AMP_AMP] = ACTIONS(714), - [anon_sym_PIPE_PIPE] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(714), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(714), - [anon_sym_PLUS_EQ] = ACTIONS(714), - [anon_sym_DASH_EQ] = ACTIONS(714), - [anon_sym_STAR_EQ] = ACTIONS(714), - [anon_sym_SLASH_EQ] = ACTIONS(714), - [anon_sym_PERCENT_EQ] = ACTIONS(714), - [anon_sym_CARET_EQ] = ACTIONS(714), - [anon_sym_DOLLAR] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(714), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(714), - [aux_sym_number_token2] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(714), - [anon_sym_POUND] = ACTIONS(714), - [sym_concatenating_space] = ACTIONS(716), - [sym__if_else_separator] = ACTIONS(716), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(749), + [anon_sym_DASH_EQ] = ACTIONS(749), + [anon_sym_STAR_EQ] = ACTIONS(749), + [anon_sym_SLASH_EQ] = ACTIONS(749), + [anon_sym_PERCENT_EQ] = ACTIONS(749), + [anon_sym_CARET_EQ] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(711), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), + [sym__func_call] = ACTIONS(741), }, [170] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [anon_sym_DASH_EQ] = ACTIONS(684), - [anon_sym_STAR_EQ] = ACTIONS(684), - [anon_sym_SLASH_EQ] = ACTIONS(684), - [anon_sym_PERCENT_EQ] = ACTIONS(684), - [anon_sym_CARET_EQ] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(684), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__if_else_separator] = ACTIONS(686), - [sym__func_call] = ACTIONS(676), + [sym_array_ref] = STATE(209), + [sym_namespace] = STATE(2507), + [sym_ns_qualified_name] = STATE(210), + [sym_identifier] = ACTIONS(751), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(753), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(725), + [anon_sym_DASH_EQ] = ACTIONS(725), + [anon_sym_STAR_EQ] = ACTIONS(725), + [anon_sym_SLASH_EQ] = ACTIONS(725), + [anon_sym_PERCENT_EQ] = ACTIONS(725), + [anon_sym_CARET_EQ] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym_concatenating_space] = ACTIONS(729), }, [171] = { - [sym_identifier] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_CR_LF] = ACTIONS(718), - [anon_sym_if] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_while] = ACTIONS(718), - [anon_sym_do] = ACTIONS(718), - [anon_sym_for] = ACTIONS(718), - [anon_sym_in] = ACTIONS(718), - [sym_break_statement] = ACTIONS(718), - [sym_continue_statement] = ACTIONS(718), - [anon_sym_delete] = ACTIONS(718), - [anon_sym_exit] = ACTIONS(718), - [anon_sym_return] = ACTIONS(718), - [anon_sym_switch] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_case] = ACTIONS(718), - [anon_sym_default] = ACTIONS(718), - [anon_sym_getline] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(718), - [sym_next_statement] = ACTIONS(718), - [sym_nextfile_statement] = ACTIONS(718), - [anon_sym_print] = ACTIONS(718), - [anon_sym_printf] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_PIPE_AMP] = ACTIONS(718), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym_STAR_STAR] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_PERCENT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_LT_EQ] = ACTIONS(718), - [anon_sym_GT_EQ] = ACTIONS(718), - [anon_sym_EQ_EQ] = ACTIONS(718), - [anon_sym_BANG_EQ] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_BANG_TILDE] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_EQ] = ACTIONS(718), - [anon_sym_PLUS_EQ] = ACTIONS(718), - [anon_sym_DASH_EQ] = ACTIONS(718), - [anon_sym_STAR_EQ] = ACTIONS(718), - [anon_sym_SLASH_EQ] = ACTIONS(718), - [anon_sym_PERCENT_EQ] = ACTIONS(718), - [anon_sym_CARET_EQ] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [aux_sym_number_token1] = ACTIONS(718), - [aux_sym_number_token2] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(718), - [sym_concatenating_space] = ACTIONS(720), - [sym__if_else_separator] = ACTIONS(720), - [sym__func_call] = ACTIONS(720), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(757), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + [sym__if_else_separator] = ACTIONS(759), }, [172] = { - [sym_identifier] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_CR_LF] = ACTIONS(722), - [anon_sym_if] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_while] = ACTIONS(722), - [anon_sym_do] = ACTIONS(722), - [anon_sym_for] = ACTIONS(722), - [anon_sym_in] = ACTIONS(722), - [sym_break_statement] = ACTIONS(722), - [sym_continue_statement] = ACTIONS(722), - [anon_sym_delete] = ACTIONS(722), - [anon_sym_exit] = ACTIONS(722), - [anon_sym_return] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_case] = ACTIONS(722), - [anon_sym_default] = ACTIONS(722), - [anon_sym_getline] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(722), - [sym_next_statement] = ACTIONS(722), - [sym_nextfile_statement] = ACTIONS(722), - [anon_sym_print] = ACTIONS(722), - [anon_sym_printf] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(722), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_PERCENT] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(722), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG_TILDE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), - [anon_sym_EQ] = ACTIONS(722), - [anon_sym_PLUS_EQ] = ACTIONS(722), - [anon_sym_DASH_EQ] = ACTIONS(722), - [anon_sym_STAR_EQ] = ACTIONS(722), - [anon_sym_SLASH_EQ] = ACTIONS(722), - [anon_sym_PERCENT_EQ] = ACTIONS(722), - [anon_sym_CARET_EQ] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(722), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(722), - [aux_sym_number_token2] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND] = ACTIONS(722), - [sym_concatenating_space] = ACTIONS(724), - [sym__if_else_separator] = ACTIONS(724), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(749), + [anon_sym_DASH_EQ] = ACTIONS(749), + [anon_sym_STAR_EQ] = ACTIONS(749), + [anon_sym_SLASH_EQ] = ACTIONS(749), + [anon_sym_PERCENT_EQ] = ACTIONS(749), + [anon_sym_CARET_EQ] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(711), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__func_call] = ACTIONS(763), }, [173] = { - [sym_identifier] = ACTIONS(714), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_SEMI] = ACTIONS(714), - [anon_sym_LF] = ACTIONS(714), - [anon_sym_CR_LF] = ACTIONS(714), - [anon_sym_if] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_while] = ACTIONS(714), - [anon_sym_do] = ACTIONS(714), - [anon_sym_for] = ACTIONS(714), - [anon_sym_in] = ACTIONS(714), - [sym_break_statement] = ACTIONS(714), - [sym_continue_statement] = ACTIONS(714), - [anon_sym_delete] = ACTIONS(714), - [anon_sym_exit] = ACTIONS(714), - [anon_sym_return] = ACTIONS(714), - [anon_sym_switch] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(714), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_case] = ACTIONS(714), - [anon_sym_default] = ACTIONS(714), - [anon_sym_getline] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(714), - [sym_next_statement] = ACTIONS(714), - [sym_nextfile_statement] = ACTIONS(714), - [anon_sym_print] = ACTIONS(714), - [anon_sym_printf] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_GT_GT] = ACTIONS(714), - [anon_sym_PIPE] = ACTIONS(714), - [anon_sym_PIPE_AMP] = ACTIONS(714), - [anon_sym_QMARK] = ACTIONS(714), - [anon_sym_CARET] = ACTIONS(714), - [anon_sym_STAR_STAR] = ACTIONS(714), - [anon_sym_STAR] = ACTIONS(714), - [anon_sym_SLASH] = ACTIONS(714), - [anon_sym_PERCENT] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(714), - [anon_sym_GT_EQ] = ACTIONS(714), - [anon_sym_EQ_EQ] = ACTIONS(714), - [anon_sym_BANG_EQ] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(714), - [anon_sym_BANG_TILDE] = ACTIONS(714), - [anon_sym_AMP_AMP] = ACTIONS(714), - [anon_sym_PIPE_PIPE] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(714), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(714), - [anon_sym_PLUS_EQ] = ACTIONS(714), - [anon_sym_DASH_EQ] = ACTIONS(714), - [anon_sym_STAR_EQ] = ACTIONS(714), - [anon_sym_SLASH_EQ] = ACTIONS(714), - [anon_sym_PERCENT_EQ] = ACTIONS(714), - [anon_sym_CARET_EQ] = ACTIONS(714), - [anon_sym_DOLLAR] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(714), - [aux_sym_number_token1] = ACTIONS(714), - [aux_sym_number_token2] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(714), - [anon_sym_POUND] = ACTIONS(714), - [sym_concatenating_space] = ACTIONS(716), - [sym__if_else_separator] = ACTIONS(716), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), + [anon_sym_STAR_EQ] = ACTIONS(765), + [anon_sym_SLASH_EQ] = ACTIONS(765), + [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_CARET_EQ] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + [sym__if_else_separator] = ACTIONS(767), }, [174] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [anon_sym_DASH_DASH] = ACTIONS(726), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_PLUS_EQ] = ACTIONS(728), - [anon_sym_DASH_EQ] = ACTIONS(728), - [anon_sym_STAR_EQ] = ACTIONS(728), - [anon_sym_SLASH_EQ] = ACTIONS(728), - [anon_sym_PERCENT_EQ] = ACTIONS(728), - [anon_sym_CARET_EQ] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(730), - [sym__if_else_separator] = ACTIONS(674), - [sym__func_call] = ACTIONS(732), + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(769), + [anon_sym_CR_LF] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym_break_statement] = ACTIONS(769), + [sym_continue_statement] = ACTIONS(769), + [anon_sym_delete] = ACTIONS(769), + [anon_sym_exit] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [sym_next_statement] = ACTIONS(769), + [sym_nextfile_statement] = ACTIONS(769), + [anon_sym_print] = ACTIONS(769), + [anon_sym_printf] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + [sym_concatenating_space] = ACTIONS(771), + [sym__if_else_separator] = ACTIONS(771), + [sym__func_call] = ACTIONS(771), }, [175] = { - [sym_identifier] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_CR_LF] = ACTIONS(722), - [anon_sym_if] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_while] = ACTIONS(722), - [anon_sym_do] = ACTIONS(722), - [anon_sym_for] = ACTIONS(722), - [anon_sym_in] = ACTIONS(722), - [sym_break_statement] = ACTIONS(722), - [sym_continue_statement] = ACTIONS(722), - [anon_sym_delete] = ACTIONS(722), - [anon_sym_exit] = ACTIONS(722), - [anon_sym_return] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_case] = ACTIONS(722), - [anon_sym_default] = ACTIONS(722), - [anon_sym_getline] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(722), - [sym_next_statement] = ACTIONS(722), - [sym_nextfile_statement] = ACTIONS(722), - [anon_sym_print] = ACTIONS(722), - [anon_sym_printf] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(722), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_PERCENT] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(722), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG_TILDE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), - [anon_sym_EQ] = ACTIONS(722), - [anon_sym_PLUS_EQ] = ACTIONS(722), - [anon_sym_DASH_EQ] = ACTIONS(722), - [anon_sym_STAR_EQ] = ACTIONS(722), - [anon_sym_SLASH_EQ] = ACTIONS(722), - [anon_sym_PERCENT_EQ] = ACTIONS(722), - [anon_sym_CARET_EQ] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(722), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(722), - [aux_sym_number_token2] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND] = ACTIONS(722), - [sym_concatenating_space] = ACTIONS(724), + [sym_array_ref] = STATE(209), + [sym_namespace] = STATE(2507), + [sym_ns_qualified_name] = STATE(209), + [sym_identifier] = ACTIONS(773), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(725), + [anon_sym_DASH_EQ] = ACTIONS(725), + [anon_sym_STAR_EQ] = ACTIONS(725), + [anon_sym_SLASH_EQ] = ACTIONS(725), + [anon_sym_PERCENT_EQ] = ACTIONS(725), + [anon_sym_CARET_EQ] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym_concatenating_space] = ACTIONS(729), }, [176] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(734), - [anon_sym_DASH_DASH] = ACTIONS(734), - [anon_sym_EQ] = ACTIONS(736), - [anon_sym_PLUS_EQ] = ACTIONS(736), - [anon_sym_DASH_EQ] = ACTIONS(736), - [anon_sym_STAR_EQ] = ACTIONS(736), - [anon_sym_SLASH_EQ] = ACTIONS(736), - [anon_sym_PERCENT_EQ] = ACTIONS(736), - [anon_sym_CARET_EQ] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), - [sym__if_else_separator] = ACTIONS(674), - [sym__func_call] = ACTIONS(732), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_DASH_DASH] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(713), + [anon_sym_DASH_EQ] = ACTIONS(713), + [anon_sym_STAR_EQ] = ACTIONS(713), + [anon_sym_SLASH_EQ] = ACTIONS(713), + [anon_sym_PERCENT_EQ] = ACTIONS(713), + [anon_sym_CARET_EQ] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__func_call] = ACTIONS(777), }, [177] = { - [sym_identifier] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_CR_LF] = ACTIONS(718), - [anon_sym_if] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_while] = ACTIONS(718), - [anon_sym_do] = ACTIONS(718), - [anon_sym_for] = ACTIONS(718), - [anon_sym_in] = ACTIONS(718), - [sym_break_statement] = ACTIONS(718), - [sym_continue_statement] = ACTIONS(718), - [anon_sym_delete] = ACTIONS(718), - [anon_sym_exit] = ACTIONS(718), - [anon_sym_return] = ACTIONS(718), - [anon_sym_switch] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_case] = ACTIONS(718), - [anon_sym_default] = ACTIONS(718), - [anon_sym_getline] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(718), - [sym_next_statement] = ACTIONS(718), - [sym_nextfile_statement] = ACTIONS(718), - [anon_sym_print] = ACTIONS(718), - [anon_sym_printf] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_PIPE_AMP] = ACTIONS(718), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym_STAR_STAR] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_PERCENT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_LT_EQ] = ACTIONS(718), - [anon_sym_GT_EQ] = ACTIONS(718), - [anon_sym_EQ_EQ] = ACTIONS(718), - [anon_sym_BANG_EQ] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_BANG_TILDE] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_EQ] = ACTIONS(718), - [anon_sym_PLUS_EQ] = ACTIONS(718), - [anon_sym_DASH_EQ] = ACTIONS(718), - [anon_sym_STAR_EQ] = ACTIONS(718), - [anon_sym_SLASH_EQ] = ACTIONS(718), - [anon_sym_PERCENT_EQ] = ACTIONS(718), - [anon_sym_CARET_EQ] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [aux_sym_number_token1] = ACTIONS(718), - [aux_sym_number_token2] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(718), - [sym_concatenating_space] = ACTIONS(720), - [sym__if_else_separator] = ACTIONS(720), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(711), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__func_call] = ACTIONS(777), }, [178] = { - [sym_array_ref] = STATE(173), - [sym_namespace] = STATE(2256), - [sym_ns_qualified_name] = STATE(231), - [sym_identifier] = ACTIONS(738), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LF] = ACTIONS(680), - [anon_sym_CR_LF] = ACTIONS(680), - [anon_sym_if] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(680), - [anon_sym_while] = ACTIONS(680), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(680), - [anon_sym_in] = ACTIONS(680), - [sym_break_statement] = ACTIONS(680), - [sym_continue_statement] = ACTIONS(680), - [anon_sym_delete] = ACTIONS(680), - [anon_sym_exit] = ACTIONS(680), - [anon_sym_return] = ACTIONS(680), - [anon_sym_switch] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_getline] = ACTIONS(680), - [anon_sym_LT] = ACTIONS(740), - [sym_next_statement] = ACTIONS(680), - [sym_nextfile_statement] = ACTIONS(680), - [anon_sym_print] = ACTIONS(680), - [anon_sym_printf] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(680), - [anon_sym_PIPE_AMP] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_CARET] = ACTIONS(680), - [anon_sym_STAR_STAR] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(680), - [anon_sym_PERCENT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_BANG_TILDE] = ACTIONS(680), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_DOLLAR] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_number_token1] = ACTIONS(680), - [aux_sym_number_token2] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [sym_concatenating_space] = ACTIONS(682), - [sym__if_else_separator] = ACTIONS(682), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + [sym__if_else_separator] = ACTIONS(759), }, [179] = { - [sym_identifier] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_CR_LF] = ACTIONS(722), - [anon_sym_if] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_while] = ACTIONS(722), - [anon_sym_do] = ACTIONS(722), - [anon_sym_for] = ACTIONS(722), - [anon_sym_in] = ACTIONS(722), - [sym_break_statement] = ACTIONS(722), - [sym_continue_statement] = ACTIONS(722), - [anon_sym_delete] = ACTIONS(722), - [anon_sym_exit] = ACTIONS(722), - [anon_sym_return] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_case] = ACTIONS(722), - [anon_sym_default] = ACTIONS(722), - [anon_sym_getline] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(722), - [sym_next_statement] = ACTIONS(722), - [sym_nextfile_statement] = ACTIONS(722), - [anon_sym_print] = ACTIONS(722), - [anon_sym_printf] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(722), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_PERCENT] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(722), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG_TILDE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), - [anon_sym_EQ] = ACTIONS(722), - [anon_sym_PLUS_EQ] = ACTIONS(722), - [anon_sym_DASH_EQ] = ACTIONS(722), - [anon_sym_STAR_EQ] = ACTIONS(722), - [anon_sym_SLASH_EQ] = ACTIONS(722), - [anon_sym_PERCENT_EQ] = ACTIONS(722), - [anon_sym_CARET_EQ] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(722), - [aux_sym_number_token1] = ACTIONS(722), - [aux_sym_number_token2] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND] = ACTIONS(722), - [sym_concatenating_space] = ACTIONS(724), - [sym__if_else_separator] = ACTIONS(724), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_PLUS_EQ] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(781), + [anon_sym_STAR_EQ] = ACTIONS(781), + [anon_sym_SLASH_EQ] = ACTIONS(781), + [anon_sym_PERCENT_EQ] = ACTIONS(781), + [anon_sym_CARET_EQ] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__func_call] = ACTIONS(763), }, [180] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_case] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(668), - [anon_sym_DASH_DASH] = ACTIONS(668), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(666), - [anon_sym_DASH_EQ] = ACTIONS(666), - [anon_sym_STAR_EQ] = ACTIONS(666), - [anon_sym_SLASH_EQ] = ACTIONS(666), - [anon_sym_PERCENT_EQ] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(666), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), - [sym__if_else_separator] = ACTIONS(674), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), + [sym__func_call] = ACTIONS(721), }, [181] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [anon_sym_DASH_EQ] = ACTIONS(684), - [anon_sym_STAR_EQ] = ACTIONS(684), - [anon_sym_SLASH_EQ] = ACTIONS(684), - [anon_sym_PERCENT_EQ] = ACTIONS(684), - [anon_sym_CARET_EQ] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(684), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__if_else_separator] = ACTIONS(686), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_PLUS_EQ] = ACTIONS(785), + [anon_sym_DASH_EQ] = ACTIONS(785), + [anon_sym_STAR_EQ] = ACTIONS(785), + [anon_sym_SLASH_EQ] = ACTIONS(785), + [anon_sym_PERCENT_EQ] = ACTIONS(785), + [anon_sym_CARET_EQ] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(787), + [sym__func_call] = ACTIONS(763), }, [182] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [anon_sym_DASH_EQ] = ACTIONS(684), - [anon_sym_STAR_EQ] = ACTIONS(684), - [anon_sym_SLASH_EQ] = ACTIONS(684), - [anon_sym_PERCENT_EQ] = ACTIONS(684), - [anon_sym_CARET_EQ] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(684), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__func_call] = ACTIONS(692), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_PLUS_EQ] = ACTIONS(745), + [anon_sym_DASH_EQ] = ACTIONS(745), + [anon_sym_STAR_EQ] = ACTIONS(745), + [anon_sym_SLASH_EQ] = ACTIONS(745), + [anon_sym_PERCENT_EQ] = ACTIONS(745), + [anon_sym_CARET_EQ] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(747), + [sym__if_else_separator] = ACTIONS(733), + [sym__func_call] = ACTIONS(741), }, [183] = { - [sym_identifier] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_LF] = ACTIONS(742), - [anon_sym_CR_LF] = ACTIONS(742), - [anon_sym_if] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_while] = ACTIONS(742), - [anon_sym_do] = ACTIONS(742), - [anon_sym_for] = ACTIONS(742), - [anon_sym_in] = ACTIONS(742), - [sym_break_statement] = ACTIONS(742), - [sym_continue_statement] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(742), - [anon_sym_exit] = ACTIONS(742), - [anon_sym_return] = ACTIONS(742), - [anon_sym_switch] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_case] = ACTIONS(742), - [anon_sym_default] = ACTIONS(742), - [anon_sym_getline] = ACTIONS(742), - [anon_sym_LT] = ACTIONS(742), - [sym_next_statement] = ACTIONS(742), - [sym_nextfile_statement] = ACTIONS(742), - [anon_sym_print] = ACTIONS(742), - [anon_sym_printf] = ACTIONS(742), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_GT_GT] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_PIPE_AMP] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym_STAR_STAR] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_LT_EQ] = ACTIONS(742), - [anon_sym_GT_EQ] = ACTIONS(742), - [anon_sym_EQ_EQ] = ACTIONS(742), - [anon_sym_BANG_EQ] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_BANG_TILDE] = ACTIONS(742), - [anon_sym_AMP_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_PLUS_PLUS] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_PLUS_EQ] = ACTIONS(742), - [anon_sym_DASH_EQ] = ACTIONS(742), - [anon_sym_STAR_EQ] = ACTIONS(742), - [anon_sym_SLASH_EQ] = ACTIONS(742), - [anon_sym_PERCENT_EQ] = ACTIONS(742), - [anon_sym_CARET_EQ] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [aux_sym_number_token1] = ACTIONS(742), - [aux_sym_number_token2] = ACTIONS(742), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [sym_concatenating_space] = ACTIONS(744), - [sym__if_else_separator] = ACTIONS(744), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(713), + [anon_sym_DASH_EQ] = ACTIONS(713), + [anon_sym_STAR_EQ] = ACTIONS(713), + [anon_sym_SLASH_EQ] = ACTIONS(713), + [anon_sym_PERCENT_EQ] = ACTIONS(713), + [anon_sym_CARET_EQ] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__if_else_separator] = ACTIONS(733), + [sym__func_call] = ACTIONS(721), }, [184] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_case] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(666), - [anon_sym_DASH_EQ] = ACTIONS(666), - [anon_sym_STAR_EQ] = ACTIONS(666), - [anon_sym_SLASH_EQ] = ACTIONS(666), - [anon_sym_PERCENT_EQ] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(666), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), - [sym__func_call] = ACTIONS(692), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(739), + [anon_sym_DASH_EQ] = ACTIONS(739), + [anon_sym_STAR_EQ] = ACTIONS(739), + [anon_sym_SLASH_EQ] = ACTIONS(739), + [anon_sym_PERCENT_EQ] = ACTIONS(739), + [anon_sym_CARET_EQ] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__if_else_separator] = ACTIONS(733), + [sym__func_call] = ACTIONS(741), }, [185] = { - [sym_identifier] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_CR_LF] = ACTIONS(718), - [anon_sym_if] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_while] = ACTIONS(718), - [anon_sym_do] = ACTIONS(718), - [anon_sym_for] = ACTIONS(718), - [anon_sym_in] = ACTIONS(718), - [sym_break_statement] = ACTIONS(718), - [sym_continue_statement] = ACTIONS(718), - [anon_sym_delete] = ACTIONS(718), - [anon_sym_exit] = ACTIONS(718), - [anon_sym_return] = ACTIONS(718), - [anon_sym_switch] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_case] = ACTIONS(718), - [anon_sym_default] = ACTIONS(718), - [anon_sym_getline] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(718), - [sym_next_statement] = ACTIONS(718), - [sym_nextfile_statement] = ACTIONS(718), - [anon_sym_print] = ACTIONS(718), - [anon_sym_printf] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_PIPE_AMP] = ACTIONS(718), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym_STAR_STAR] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_PERCENT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_LT_EQ] = ACTIONS(718), - [anon_sym_GT_EQ] = ACTIONS(718), - [anon_sym_EQ_EQ] = ACTIONS(718), - [anon_sym_BANG_EQ] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_BANG_TILDE] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_EQ] = ACTIONS(718), - [anon_sym_PLUS_EQ] = ACTIONS(718), - [anon_sym_DASH_EQ] = ACTIONS(718), - [anon_sym_STAR_EQ] = ACTIONS(718), - [anon_sym_SLASH_EQ] = ACTIONS(718), - [anon_sym_PERCENT_EQ] = ACTIONS(718), - [anon_sym_CARET_EQ] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [aux_sym_number_token1] = ACTIONS(718), - [aux_sym_number_token2] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(718), - [sym_concatenating_space] = ACTIONS(720), - [sym__func_call] = ACTIONS(720), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(749), + [anon_sym_DASH_EQ] = ACTIONS(749), + [anon_sym_STAR_EQ] = ACTIONS(749), + [anon_sym_SLASH_EQ] = ACTIONS(749), + [anon_sym_PERCENT_EQ] = ACTIONS(749), + [anon_sym_CARET_EQ] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), + [sym__func_call] = ACTIONS(741), }, [186] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(746), - [anon_sym_PLUS_EQ] = ACTIONS(746), - [anon_sym_DASH_EQ] = ACTIONS(746), - [anon_sym_STAR_EQ] = ACTIONS(746), - [anon_sym_SLASH_EQ] = ACTIONS(746), - [anon_sym_PERCENT_EQ] = ACTIONS(746), - [anon_sym_CARET_EQ] = ACTIONS(746), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(684), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__if_else_separator] = ACTIONS(686), - [sym__func_call] = ACTIONS(732), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(713), + [anon_sym_DASH_EQ] = ACTIONS(713), + [anon_sym_STAR_EQ] = ACTIONS(713), + [anon_sym_SLASH_EQ] = ACTIONS(713), + [anon_sym_PERCENT_EQ] = ACTIONS(713), + [anon_sym_CARET_EQ] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__if_else_separator] = ACTIONS(733), }, [187] = { - [sym__getline_exp] = STATE(480), - [sym_getline_input] = STATE(480), - [sym_getline_file] = STATE(480), - [sym__print_args] = STATE(781), - [sym__exp] = STATE(480), - [sym_ternary_exp] = STATE(426), - [sym_binary_exp] = STATE(426), - [sym__binary_in] = STATE(431), - [sym_unary_exp] = STATE(426), - [sym_update_exp] = STATE(480), - [sym_assignment_exp] = STATE(480), - [sym_piped_io_exp] = STATE(480), - [sym_string_concat] = STATE(426), - [sym_field_ref] = STATE(292), - [sym_array_ref] = STATE(269), - [sym_exp_list] = STATE(781), - [sym_regex] = STATE(480), - [sym_regex_constant] = STATE(480), - [sym_grouping] = STATE(426), - [sym__primitive] = STATE(426), - [sym_namespace] = STATE(2114), - [sym_ns_qualified_name] = STATE(243), - [sym_number] = STATE(426), - [sym_string] = STATE(426), - [sym_func_call] = STATE(426), - [sym_indirect_func_call] = STATE(480), - [aux_sym_exp_list_repeat1] = STATE(830), - [sym_identifier] = ACTIONS(162), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LF] = ACTIONS(694), - [anon_sym_CR_LF] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_while] = ACTIONS(694), - [anon_sym_do] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [sym_break_statement] = ACTIONS(694), - [sym_continue_statement] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(694), - [anon_sym_exit] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_getline] = ACTIONS(188), - [sym_next_statement] = ACTIONS(694), - [sym_nextfile_statement] = ACTIONS(694), - [anon_sym_print] = ACTIONS(694), - [anon_sym_LPAREN2] = ACTIONS(750), - [anon_sym_printf] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_PIPE_AMP] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_DASH_DASH] = ACTIONS(754), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(758), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(206), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_POUND] = ACTIONS(694), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(749), + [anon_sym_DASH_EQ] = ACTIONS(749), + [anon_sym_STAR_EQ] = ACTIONS(749), + [anon_sym_SLASH_EQ] = ACTIONS(749), + [anon_sym_PERCENT_EQ] = ACTIONS(749), + [anon_sym_CARET_EQ] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), }, [188] = { - [sym_identifier] = ACTIONS(714), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_SEMI] = ACTIONS(714), - [anon_sym_LF] = ACTIONS(714), - [anon_sym_CR_LF] = ACTIONS(714), - [anon_sym_if] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_while] = ACTIONS(714), - [anon_sym_do] = ACTIONS(714), - [anon_sym_for] = ACTIONS(714), - [anon_sym_in] = ACTIONS(714), - [sym_break_statement] = ACTIONS(714), - [sym_continue_statement] = ACTIONS(714), - [anon_sym_delete] = ACTIONS(714), - [anon_sym_exit] = ACTIONS(714), - [anon_sym_return] = ACTIONS(714), - [anon_sym_switch] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(714), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_case] = ACTIONS(714), - [anon_sym_default] = ACTIONS(714), - [anon_sym_getline] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(714), - [sym_next_statement] = ACTIONS(714), - [sym_nextfile_statement] = ACTIONS(714), - [anon_sym_print] = ACTIONS(714), - [anon_sym_printf] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_GT_GT] = ACTIONS(714), - [anon_sym_PIPE] = ACTIONS(714), - [anon_sym_PIPE_AMP] = ACTIONS(714), - [anon_sym_QMARK] = ACTIONS(714), - [anon_sym_CARET] = ACTIONS(714), - [anon_sym_STAR_STAR] = ACTIONS(714), - [anon_sym_STAR] = ACTIONS(714), - [anon_sym_SLASH] = ACTIONS(714), - [anon_sym_PERCENT] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(714), - [anon_sym_GT_EQ] = ACTIONS(714), - [anon_sym_EQ_EQ] = ACTIONS(714), - [anon_sym_BANG_EQ] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(714), - [anon_sym_BANG_TILDE] = ACTIONS(714), - [anon_sym_AMP_AMP] = ACTIONS(714), - [anon_sym_PIPE_PIPE] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(714), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(714), - [anon_sym_PLUS_EQ] = ACTIONS(714), - [anon_sym_DASH_EQ] = ACTIONS(714), - [anon_sym_STAR_EQ] = ACTIONS(714), - [anon_sym_SLASH_EQ] = ACTIONS(714), - [anon_sym_PERCENT_EQ] = ACTIONS(714), - [anon_sym_CARET_EQ] = ACTIONS(714), - [anon_sym_DOLLAR] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(714), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(714), - [aux_sym_number_token2] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(714), - [anon_sym_POUND] = ACTIONS(714), - [sym_concatenating_space] = ACTIONS(716), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(739), + [anon_sym_DASH_EQ] = ACTIONS(739), + [anon_sym_STAR_EQ] = ACTIONS(739), + [anon_sym_SLASH_EQ] = ACTIONS(739), + [anon_sym_PERCENT_EQ] = ACTIONS(739), + [anon_sym_CARET_EQ] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__if_else_separator] = ACTIONS(733), }, [189] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [anon_sym_DASH_EQ] = ACTIONS(684), - [anon_sym_STAR_EQ] = ACTIONS(684), - [anon_sym_SLASH_EQ] = ACTIONS(684), - [anon_sym_PERCENT_EQ] = ACTIONS(684), - [anon_sym_CARET_EQ] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(684), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__if_else_separator] = ACTIONS(686), + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(769), + [anon_sym_CR_LF] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym_break_statement] = ACTIONS(769), + [sym_continue_statement] = ACTIONS(769), + [anon_sym_delete] = ACTIONS(769), + [anon_sym_exit] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [sym_next_statement] = ACTIONS(769), + [sym_nextfile_statement] = ACTIONS(769), + [anon_sym_print] = ACTIONS(769), + [anon_sym_printf] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + [sym_concatenating_space] = ACTIONS(771), + [sym__func_call] = ACTIONS(771), }, [190] = { - [sym_identifier] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_CR_LF] = ACTIONS(762), - [anon_sym_if] = ACTIONS(762), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_while] = ACTIONS(762), - [anon_sym_do] = ACTIONS(762), - [anon_sym_for] = ACTIONS(762), - [anon_sym_in] = ACTIONS(762), - [sym_break_statement] = ACTIONS(762), - [sym_continue_statement] = ACTIONS(762), - [anon_sym_delete] = ACTIONS(762), - [anon_sym_exit] = ACTIONS(762), - [anon_sym_return] = ACTIONS(762), - [anon_sym_switch] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_case] = ACTIONS(762), - [anon_sym_default] = ACTIONS(762), - [anon_sym_getline] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(762), - [sym_next_statement] = ACTIONS(762), - [sym_nextfile_statement] = ACTIONS(762), - [anon_sym_print] = ACTIONS(762), - [anon_sym_printf] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_GT_GT] = ACTIONS(762), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_STAR_STAR] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(762), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_PERCENT] = ACTIONS(762), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(762), - [anon_sym_LT_EQ] = ACTIONS(762), - [anon_sym_GT_EQ] = ACTIONS(762), - [anon_sym_EQ_EQ] = ACTIONS(762), - [anon_sym_BANG_EQ] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_BANG_TILDE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(762), - [anon_sym_PLUS_PLUS] = ACTIONS(762), - [anon_sym_DASH_DASH] = ACTIONS(762), - [anon_sym_EQ] = ACTIONS(762), - [anon_sym_PLUS_EQ] = ACTIONS(762), - [anon_sym_DASH_EQ] = ACTIONS(762), - [anon_sym_STAR_EQ] = ACTIONS(762), - [anon_sym_SLASH_EQ] = ACTIONS(762), - [anon_sym_PERCENT_EQ] = ACTIONS(762), - [anon_sym_CARET_EQ] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [aux_sym_number_token1] = ACTIONS(762), - [aux_sym_number_token2] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_POUND] = ACTIONS(762), - [sym_concatenating_space] = ACTIONS(764), - [sym__if_else_separator] = ACTIONS(764), + [sym_identifier] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_CR_LF] = ACTIONS(789), + [anon_sym_if] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_while] = ACTIONS(789), + [anon_sym_do] = ACTIONS(789), + [anon_sym_for] = ACTIONS(789), + [anon_sym_in] = ACTIONS(789), + [sym_break_statement] = ACTIONS(789), + [sym_continue_statement] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_exit] = ACTIONS(789), + [anon_sym_return] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_getline] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [sym_next_statement] = ACTIONS(789), + [sym_nextfile_statement] = ACTIONS(789), + [anon_sym_print] = ACTIONS(789), + [anon_sym_printf] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_PIPE_AMP] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_PERCENT] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_BANG_TILDE] = ACTIONS(789), + [anon_sym_AMP_AMP] = ACTIONS(789), + [anon_sym_PIPE_PIPE] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(789), + [anon_sym_DASH_DASH] = ACTIONS(789), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_PLUS_EQ] = ACTIONS(789), + [anon_sym_DASH_EQ] = ACTIONS(789), + [anon_sym_STAR_EQ] = ACTIONS(789), + [anon_sym_SLASH_EQ] = ACTIONS(789), + [anon_sym_PERCENT_EQ] = ACTIONS(789), + [anon_sym_CARET_EQ] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(789), + [sym_regex_flags] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(789), + [aux_sym_number_token1] = ACTIONS(789), + [aux_sym_number_token2] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_asort] = ACTIONS(789), + [anon_sym_asorti] = ACTIONS(789), + [anon_sym_bindtextdomain] = ACTIONS(789), + [anon_sym_compl] = ACTIONS(789), + [anon_sym_cos] = ACTIONS(789), + [anon_sym_dcgettext] = ACTIONS(789), + [anon_sym_dcngettext] = ACTIONS(789), + [anon_sym_exp] = ACTIONS(789), + [anon_sym_gensub] = ACTIONS(789), + [anon_sym_gsub] = ACTIONS(789), + [anon_sym_index] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_isarray] = ACTIONS(789), + [anon_sym_length] = ACTIONS(789), + [anon_sym_log] = ACTIONS(789), + [anon_sym_lshift] = ACTIONS(789), + [anon_sym_match] = ACTIONS(789), + [anon_sym_mktime] = ACTIONS(789), + [anon_sym_or] = ACTIONS(789), + [anon_sym_patsplit] = ACTIONS(789), + [anon_sym_rand] = ACTIONS(789), + [anon_sym_rshift] = ACTIONS(789), + [anon_sym_sin] = ACTIONS(789), + [anon_sym_split] = ACTIONS(789), + [anon_sym_sprintf] = ACTIONS(789), + [anon_sym_sqrt] = ACTIONS(789), + [anon_sym_srand] = ACTIONS(789), + [anon_sym_strftime] = ACTIONS(789), + [anon_sym_strtonum] = ACTIONS(789), + [anon_sym_sub] = ACTIONS(789), + [anon_sym_substr] = ACTIONS(789), + [anon_sym_systime] = ACTIONS(789), + [anon_sym_tolower] = ACTIONS(789), + [anon_sym_toupper] = ACTIONS(789), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(789), + [sym_concatenating_space] = ACTIONS(793), + [sym__if_else_separator] = ACTIONS(793), }, [191] = { - [sym_identifier] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_CR_LF] = ACTIONS(766), - [anon_sym_if] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_while] = ACTIONS(766), - [anon_sym_do] = ACTIONS(766), - [anon_sym_for] = ACTIONS(766), - [anon_sym_in] = ACTIONS(766), - [sym_break_statement] = ACTIONS(766), - [sym_continue_statement] = ACTIONS(766), - [anon_sym_delete] = ACTIONS(766), - [anon_sym_exit] = ACTIONS(766), - [anon_sym_return] = ACTIONS(766), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_case] = ACTIONS(766), - [anon_sym_default] = ACTIONS(766), - [anon_sym_getline] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(766), - [sym_next_statement] = ACTIONS(766), - [sym_nextfile_statement] = ACTIONS(766), - [anon_sym_print] = ACTIONS(766), - [anon_sym_printf] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_LT_EQ] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(766), - [anon_sym_EQ_EQ] = ACTIONS(766), - [anon_sym_BANG_EQ] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_BANG_TILDE] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(766), - [anon_sym_DASH_DASH] = ACTIONS(766), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_PLUS_EQ] = ACTIONS(766), - [anon_sym_DASH_EQ] = ACTIONS(766), - [anon_sym_STAR_EQ] = ACTIONS(766), - [anon_sym_SLASH_EQ] = ACTIONS(766), - [anon_sym_PERCENT_EQ] = ACTIONS(766), - [anon_sym_CARET_EQ] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [aux_sym_number_token1] = ACTIONS(766), - [aux_sym_number_token2] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_POUND] = ACTIONS(766), - [sym_concatenating_space] = ACTIONS(768), - [sym__if_else_separator] = ACTIONS(768), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + [sym__if_else_separator] = ACTIONS(759), }, [192] = { - [sym_identifier] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_CR_LF] = ACTIONS(722), - [anon_sym_if] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_while] = ACTIONS(722), - [anon_sym_do] = ACTIONS(722), - [anon_sym_for] = ACTIONS(722), - [anon_sym_in] = ACTIONS(722), - [sym_break_statement] = ACTIONS(722), - [sym_continue_statement] = ACTIONS(722), - [anon_sym_delete] = ACTIONS(722), - [anon_sym_exit] = ACTIONS(722), - [anon_sym_return] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_case] = ACTIONS(722), - [anon_sym_default] = ACTIONS(722), - [anon_sym_getline] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(722), - [sym_next_statement] = ACTIONS(722), - [sym_nextfile_statement] = ACTIONS(722), - [anon_sym_print] = ACTIONS(722), - [anon_sym_printf] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(722), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_PERCENT] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(722), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG_TILDE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), - [anon_sym_EQ] = ACTIONS(722), - [anon_sym_PLUS_EQ] = ACTIONS(722), - [anon_sym_DASH_EQ] = ACTIONS(722), - [anon_sym_STAR_EQ] = ACTIONS(722), - [anon_sym_SLASH_EQ] = ACTIONS(722), - [anon_sym_PERCENT_EQ] = ACTIONS(722), - [anon_sym_CARET_EQ] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(722), - [aux_sym_number_token1] = ACTIONS(722), - [aux_sym_number_token2] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND] = ACTIONS(722), - [sym_concatenating_space] = ACTIONS(724), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_PLUS_EQ] = ACTIONS(745), + [anon_sym_DASH_EQ] = ACTIONS(745), + [anon_sym_STAR_EQ] = ACTIONS(745), + [anon_sym_SLASH_EQ] = ACTIONS(745), + [anon_sym_PERCENT_EQ] = ACTIONS(745), + [anon_sym_CARET_EQ] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(747), + [sym__if_else_separator] = ACTIONS(733), }, [193] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(770), - [anon_sym_DASH_DASH] = ACTIONS(770), - [anon_sym_EQ] = ACTIONS(772), - [anon_sym_PLUS_EQ] = ACTIONS(772), - [anon_sym_DASH_EQ] = ACTIONS(772), - [anon_sym_STAR_EQ] = ACTIONS(772), - [anon_sym_SLASH_EQ] = ACTIONS(772), - [anon_sym_PERCENT_EQ] = ACTIONS(772), - [anon_sym_CARET_EQ] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(774), - [sym__func_call] = ACTIONS(776), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_PLUS_EQ] = ACTIONS(785), + [anon_sym_DASH_EQ] = ACTIONS(785), + [anon_sym_STAR_EQ] = ACTIONS(785), + [anon_sym_SLASH_EQ] = ACTIONS(785), + [anon_sym_PERCENT_EQ] = ACTIONS(785), + [anon_sym_CARET_EQ] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(787), + [sym__func_call] = ACTIONS(763), }, [194] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [anon_sym_DASH_EQ] = ACTIONS(684), - [anon_sym_STAR_EQ] = ACTIONS(684), - [anon_sym_SLASH_EQ] = ACTIONS(684), - [anon_sym_PERCENT_EQ] = ACTIONS(684), - [anon_sym_CARET_EQ] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(684), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__if_else_separator] = ACTIONS(686), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), + [anon_sym_STAR_EQ] = ACTIONS(765), + [anon_sym_SLASH_EQ] = ACTIONS(765), + [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_CARET_EQ] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + [sym__if_else_separator] = ACTIONS(767), }, [195] = { - [sym_identifier] = ACTIONS(778), - [anon_sym_COMMA] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(778), - [anon_sym_CR_LF] = ACTIONS(778), - [anon_sym_if] = ACTIONS(778), - [anon_sym_LPAREN] = ACTIONS(778), - [anon_sym_while] = ACTIONS(778), - [anon_sym_do] = ACTIONS(778), - [anon_sym_for] = ACTIONS(778), - [anon_sym_in] = ACTIONS(778), - [sym_break_statement] = ACTIONS(778), - [sym_continue_statement] = ACTIONS(778), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_exit] = ACTIONS(778), - [anon_sym_return] = ACTIONS(778), - [anon_sym_switch] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(778), - [anon_sym_RBRACE] = ACTIONS(778), - [anon_sym_case] = ACTIONS(778), - [anon_sym_default] = ACTIONS(778), - [anon_sym_getline] = ACTIONS(778), - [anon_sym_LT] = ACTIONS(778), - [sym_next_statement] = ACTIONS(778), - [sym_nextfile_statement] = ACTIONS(778), - [anon_sym_print] = ACTIONS(778), - [anon_sym_printf] = ACTIONS(778), - [anon_sym_GT] = ACTIONS(778), - [anon_sym_GT_GT] = ACTIONS(778), - [anon_sym_PIPE] = ACTIONS(778), - [anon_sym_PIPE_AMP] = ACTIONS(778), - [anon_sym_QMARK] = ACTIONS(778), - [anon_sym_CARET] = ACTIONS(778), - [anon_sym_STAR_STAR] = ACTIONS(778), - [anon_sym_STAR] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(778), - [anon_sym_PERCENT] = ACTIONS(778), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_LT_EQ] = ACTIONS(778), - [anon_sym_GT_EQ] = ACTIONS(778), - [anon_sym_EQ_EQ] = ACTIONS(778), - [anon_sym_BANG_EQ] = ACTIONS(778), - [anon_sym_TILDE] = ACTIONS(778), - [anon_sym_BANG_TILDE] = ACTIONS(778), - [anon_sym_AMP_AMP] = ACTIONS(778), - [anon_sym_PIPE_PIPE] = ACTIONS(778), - [anon_sym_BANG] = ACTIONS(778), - [anon_sym_PLUS_PLUS] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_EQ] = ACTIONS(778), - [anon_sym_PLUS_EQ] = ACTIONS(778), - [anon_sym_DASH_EQ] = ACTIONS(778), - [anon_sym_STAR_EQ] = ACTIONS(778), - [anon_sym_SLASH_EQ] = ACTIONS(778), - [anon_sym_PERCENT_EQ] = ACTIONS(778), - [anon_sym_CARET_EQ] = ACTIONS(778), - [anon_sym_DOLLAR] = ACTIONS(778), - [anon_sym_AT] = ACTIONS(778), - [aux_sym_number_token1] = ACTIONS(778), - [aux_sym_number_token2] = ACTIONS(778), - [anon_sym_DQUOTE] = ACTIONS(778), - [anon_sym_POUND] = ACTIONS(778), - [sym_concatenating_space] = ACTIONS(780), - [sym__if_else_separator] = ACTIONS(780), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_PLUS_EQ] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(781), + [anon_sym_STAR_EQ] = ACTIONS(781), + [anon_sym_SLASH_EQ] = ACTIONS(781), + [anon_sym_PERCENT_EQ] = ACTIONS(781), + [anon_sym_CARET_EQ] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__func_call] = ACTIONS(763), }, [196] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(746), - [anon_sym_PLUS_EQ] = ACTIONS(746), - [anon_sym_DASH_EQ] = ACTIONS(746), - [anon_sym_STAR_EQ] = ACTIONS(746), - [anon_sym_SLASH_EQ] = ACTIONS(746), - [anon_sym_PERCENT_EQ] = ACTIONS(746), - [anon_sym_CARET_EQ] = ACTIONS(746), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(684), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__func_call] = ACTIONS(776), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_DASH_DASH] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(713), + [anon_sym_DASH_EQ] = ACTIONS(713), + [anon_sym_STAR_EQ] = ACTIONS(713), + [anon_sym_SLASH_EQ] = ACTIONS(713), + [anon_sym_PERCENT_EQ] = ACTIONS(713), + [anon_sym_CARET_EQ] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__func_call] = ACTIONS(777), }, [197] = { - [sym_identifier] = ACTIONS(782), - [anon_sym_COMMA] = ACTIONS(782), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(782), - [anon_sym_CR_LF] = ACTIONS(782), - [anon_sym_if] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(782), - [anon_sym_while] = ACTIONS(782), - [anon_sym_do] = ACTIONS(782), - [anon_sym_for] = ACTIONS(782), - [anon_sym_in] = ACTIONS(782), - [sym_break_statement] = ACTIONS(782), - [sym_continue_statement] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_exit] = ACTIONS(782), - [anon_sym_return] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_RBRACE] = ACTIONS(782), - [anon_sym_case] = ACTIONS(782), - [anon_sym_default] = ACTIONS(782), - [anon_sym_getline] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [sym_next_statement] = ACTIONS(782), - [sym_nextfile_statement] = ACTIONS(782), - [anon_sym_print] = ACTIONS(782), - [anon_sym_printf] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_CARET] = ACTIONS(782), - [anon_sym_STAR_STAR] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_SLASH] = ACTIONS(782), - [anon_sym_PERCENT] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_LT_EQ] = ACTIONS(782), - [anon_sym_GT_EQ] = ACTIONS(782), - [anon_sym_EQ_EQ] = ACTIONS(782), - [anon_sym_BANG_EQ] = ACTIONS(782), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_BANG_TILDE] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(782), - [anon_sym_PLUS_EQ] = ACTIONS(782), - [anon_sym_DASH_EQ] = ACTIONS(782), - [anon_sym_STAR_EQ] = ACTIONS(782), - [anon_sym_SLASH_EQ] = ACTIONS(782), - [anon_sym_PERCENT_EQ] = ACTIONS(782), - [anon_sym_CARET_EQ] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_AT] = ACTIONS(782), - [aux_sym_number_token1] = ACTIONS(782), - [aux_sym_number_token2] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(782), - [sym_concatenating_space] = ACTIONS(784), - [sym__if_else_separator] = ACTIONS(784), + [sym_identifier] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(795), + [anon_sym_LF] = ACTIONS(795), + [anon_sym_CR_LF] = ACTIONS(795), + [anon_sym_if] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(795), + [anon_sym_for] = ACTIONS(795), + [anon_sym_in] = ACTIONS(795), + [sym_break_statement] = ACTIONS(795), + [sym_continue_statement] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_exit] = ACTIONS(795), + [anon_sym_return] = ACTIONS(795), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_getline] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [sym_next_statement] = ACTIONS(795), + [sym_nextfile_statement] = ACTIONS(795), + [anon_sym_print] = ACTIONS(795), + [anon_sym_printf] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_GT_GT] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_STAR_STAR] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_PERCENT] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(795), + [anon_sym_BANG_EQ] = ACTIONS(795), + [anon_sym_TILDE] = ACTIONS(795), + [anon_sym_BANG_TILDE] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(795), + [anon_sym_PIPE_PIPE] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_PLUS_EQ] = ACTIONS(795), + [anon_sym_DASH_EQ] = ACTIONS(795), + [anon_sym_STAR_EQ] = ACTIONS(795), + [anon_sym_SLASH_EQ] = ACTIONS(795), + [anon_sym_PERCENT_EQ] = ACTIONS(795), + [anon_sym_CARET_EQ] = ACTIONS(795), + [anon_sym_DOLLAR] = ACTIONS(795), + [sym_regex_flags] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(795), + [aux_sym_number_token1] = ACTIONS(795), + [aux_sym_number_token2] = ACTIONS(795), + [anon_sym_DQUOTE] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_asort] = ACTIONS(795), + [anon_sym_asorti] = ACTIONS(795), + [anon_sym_bindtextdomain] = ACTIONS(795), + [anon_sym_compl] = ACTIONS(795), + [anon_sym_cos] = ACTIONS(795), + [anon_sym_dcgettext] = ACTIONS(795), + [anon_sym_dcngettext] = ACTIONS(795), + [anon_sym_exp] = ACTIONS(795), + [anon_sym_gensub] = ACTIONS(795), + [anon_sym_gsub] = ACTIONS(795), + [anon_sym_index] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_isarray] = ACTIONS(795), + [anon_sym_length] = ACTIONS(795), + [anon_sym_log] = ACTIONS(795), + [anon_sym_lshift] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_mktime] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_patsplit] = ACTIONS(795), + [anon_sym_rand] = ACTIONS(795), + [anon_sym_rshift] = ACTIONS(795), + [anon_sym_sin] = ACTIONS(795), + [anon_sym_split] = ACTIONS(795), + [anon_sym_sprintf] = ACTIONS(795), + [anon_sym_sqrt] = ACTIONS(795), + [anon_sym_srand] = ACTIONS(795), + [anon_sym_strftime] = ACTIONS(795), + [anon_sym_strtonum] = ACTIONS(795), + [anon_sym_sub] = ACTIONS(795), + [anon_sym_substr] = ACTIONS(795), + [anon_sym_systime] = ACTIONS(795), + [anon_sym_tolower] = ACTIONS(795), + [anon_sym_toupper] = ACTIONS(795), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(795), + [sym_concatenating_space] = ACTIONS(799), + [sym__if_else_separator] = ACTIONS(799), }, [198] = { - [sym_identifier] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_CR_LF] = ACTIONS(718), - [anon_sym_if] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_while] = ACTIONS(718), - [anon_sym_do] = ACTIONS(718), - [anon_sym_for] = ACTIONS(718), - [anon_sym_in] = ACTIONS(718), - [sym_break_statement] = ACTIONS(718), - [sym_continue_statement] = ACTIONS(718), - [anon_sym_delete] = ACTIONS(718), - [anon_sym_exit] = ACTIONS(718), - [anon_sym_return] = ACTIONS(718), - [anon_sym_switch] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_case] = ACTIONS(718), - [anon_sym_default] = ACTIONS(718), - [anon_sym_getline] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(718), - [sym_next_statement] = ACTIONS(718), - [sym_nextfile_statement] = ACTIONS(718), - [anon_sym_print] = ACTIONS(718), - [anon_sym_printf] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_PIPE_AMP] = ACTIONS(718), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym_STAR_STAR] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_PERCENT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_LT_EQ] = ACTIONS(718), - [anon_sym_GT_EQ] = ACTIONS(718), - [anon_sym_EQ_EQ] = ACTIONS(718), - [anon_sym_BANG_EQ] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_BANG_TILDE] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_EQ] = ACTIONS(718), - [anon_sym_PLUS_EQ] = ACTIONS(718), - [anon_sym_DASH_EQ] = ACTIONS(718), - [anon_sym_STAR_EQ] = ACTIONS(718), - [anon_sym_SLASH_EQ] = ACTIONS(718), - [anon_sym_PERCENT_EQ] = ACTIONS(718), - [anon_sym_CARET_EQ] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [aux_sym_number_token1] = ACTIONS(718), - [aux_sym_number_token2] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(718), - [sym_concatenating_space] = ACTIONS(720), + [sym_identifier] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_CR_LF] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [sym_break_statement] = ACTIONS(801), + [sym_continue_statement] = ACTIONS(801), + [anon_sym_delete] = ACTIONS(801), + [anon_sym_exit] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_switch] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_getline] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [sym_next_statement] = ACTIONS(801), + [sym_nextfile_statement] = ACTIONS(801), + [anon_sym_print] = ACTIONS(801), + [anon_sym_printf] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_PLUS_EQ] = ACTIONS(801), + [anon_sym_DASH_EQ] = ACTIONS(801), + [anon_sym_STAR_EQ] = ACTIONS(801), + [anon_sym_SLASH_EQ] = ACTIONS(801), + [anon_sym_PERCENT_EQ] = ACTIONS(801), + [anon_sym_CARET_EQ] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [aux_sym_number_token1] = ACTIONS(801), + [aux_sym_number_token2] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_asort] = ACTIONS(801), + [anon_sym_asorti] = ACTIONS(801), + [anon_sym_bindtextdomain] = ACTIONS(801), + [anon_sym_compl] = ACTIONS(801), + [anon_sym_cos] = ACTIONS(801), + [anon_sym_dcgettext] = ACTIONS(801), + [anon_sym_dcngettext] = ACTIONS(801), + [anon_sym_exp] = ACTIONS(801), + [anon_sym_gensub] = ACTIONS(801), + [anon_sym_gsub] = ACTIONS(801), + [anon_sym_index] = ACTIONS(801), + [anon_sym_int] = ACTIONS(801), + [anon_sym_isarray] = ACTIONS(801), + [anon_sym_length] = ACTIONS(801), + [anon_sym_log] = ACTIONS(801), + [anon_sym_lshift] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_mktime] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_patsplit] = ACTIONS(801), + [anon_sym_rand] = ACTIONS(801), + [anon_sym_rshift] = ACTIONS(801), + [anon_sym_sin] = ACTIONS(801), + [anon_sym_split] = ACTIONS(801), + [anon_sym_sprintf] = ACTIONS(801), + [anon_sym_sqrt] = ACTIONS(801), + [anon_sym_srand] = ACTIONS(801), + [anon_sym_strftime] = ACTIONS(801), + [anon_sym_strtonum] = ACTIONS(801), + [anon_sym_sub] = ACTIONS(801), + [anon_sym_substr] = ACTIONS(801), + [anon_sym_systime] = ACTIONS(801), + [anon_sym_tolower] = ACTIONS(801), + [anon_sym_toupper] = ACTIONS(801), + [anon_sym_typeof] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [sym_concatenating_space] = ACTIONS(803), + [sym__if_else_separator] = ACTIONS(803), }, [199] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(746), - [anon_sym_PLUS_EQ] = ACTIONS(746), - [anon_sym_DASH_EQ] = ACTIONS(746), - [anon_sym_STAR_EQ] = ACTIONS(746), - [anon_sym_SLASH_EQ] = ACTIONS(746), - [anon_sym_PERCENT_EQ] = ACTIONS(746), - [anon_sym_CARET_EQ] = ACTIONS(746), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(684), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), - [sym__if_else_separator] = ACTIONS(686), - [sym__func_call] = ACTIONS(732), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(749), + [anon_sym_DASH_EQ] = ACTIONS(749), + [anon_sym_STAR_EQ] = ACTIONS(749), + [anon_sym_SLASH_EQ] = ACTIONS(749), + [anon_sym_PERCENT_EQ] = ACTIONS(749), + [anon_sym_CARET_EQ] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__func_call] = ACTIONS(763), }, [200] = { - [sym_identifier] = ACTIONS(786), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_SEMI] = ACTIONS(786), - [anon_sym_LF] = ACTIONS(786), - [anon_sym_CR_LF] = ACTIONS(786), - [anon_sym_if] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(786), - [anon_sym_while] = ACTIONS(786), - [anon_sym_do] = ACTIONS(786), - [anon_sym_for] = ACTIONS(786), - [anon_sym_in] = ACTIONS(786), - [sym_break_statement] = ACTIONS(786), - [sym_continue_statement] = ACTIONS(786), - [anon_sym_delete] = ACTIONS(786), - [anon_sym_exit] = ACTIONS(786), - [anon_sym_return] = ACTIONS(786), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_LBRACE] = ACTIONS(786), - [anon_sym_RBRACE] = ACTIONS(786), - [anon_sym_case] = ACTIONS(786), - [anon_sym_default] = ACTIONS(786), - [anon_sym_getline] = ACTIONS(786), - [anon_sym_LT] = ACTIONS(786), - [sym_next_statement] = ACTIONS(786), - [sym_nextfile_statement] = ACTIONS(786), - [anon_sym_print] = ACTIONS(786), - [anon_sym_printf] = ACTIONS(786), - [anon_sym_GT] = ACTIONS(786), - [anon_sym_GT_GT] = ACTIONS(786), - [anon_sym_PIPE] = ACTIONS(786), - [anon_sym_PIPE_AMP] = ACTIONS(786), - [anon_sym_QMARK] = ACTIONS(786), - [anon_sym_CARET] = ACTIONS(786), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_STAR] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(786), - [anon_sym_PERCENT] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_LT_EQ] = ACTIONS(786), - [anon_sym_GT_EQ] = ACTIONS(786), - [anon_sym_EQ_EQ] = ACTIONS(786), - [anon_sym_BANG_EQ] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_BANG_TILDE] = ACTIONS(786), - [anon_sym_AMP_AMP] = ACTIONS(786), - [anon_sym_PIPE_PIPE] = ACTIONS(786), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_DASH_DASH] = ACTIONS(786), - [anon_sym_EQ] = ACTIONS(786), - [anon_sym_PLUS_EQ] = ACTIONS(786), - [anon_sym_DASH_EQ] = ACTIONS(786), - [anon_sym_STAR_EQ] = ACTIONS(786), - [anon_sym_SLASH_EQ] = ACTIONS(786), - [anon_sym_PERCENT_EQ] = ACTIONS(786), - [anon_sym_CARET_EQ] = ACTIONS(786), - [anon_sym_DOLLAR] = ACTIONS(786), - [anon_sym_AT] = ACTIONS(786), - [aux_sym_number_token1] = ACTIONS(786), - [aux_sym_number_token2] = ACTIONS(786), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_POUND] = ACTIONS(786), - [sym_concatenating_space] = ACTIONS(788), - [sym__if_else_separator] = ACTIONS(788), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__func_call] = ACTIONS(777), }, [201] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [anon_sym_DASH_DASH] = ACTIONS(726), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_PLUS_EQ] = ACTIONS(728), - [anon_sym_DASH_EQ] = ACTIONS(728), - [anon_sym_STAR_EQ] = ACTIONS(728), - [anon_sym_SLASH_EQ] = ACTIONS(728), - [anon_sym_PERCENT_EQ] = ACTIONS(728), - [anon_sym_CARET_EQ] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(666), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(730), - [sym__if_else_separator] = ACTIONS(674), - [sym__func_call] = ACTIONS(732), + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(769), + [anon_sym_CR_LF] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym_break_statement] = ACTIONS(769), + [sym_continue_statement] = ACTIONS(769), + [anon_sym_delete] = ACTIONS(769), + [anon_sym_exit] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [sym_next_statement] = ACTIONS(769), + [sym_nextfile_statement] = ACTIONS(769), + [anon_sym_print] = ACTIONS(769), + [anon_sym_printf] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + [sym_concatenating_space] = ACTIONS(771), + [sym__if_else_separator] = ACTIONS(771), }, [202] = { - [sym_identifier] = ACTIONS(714), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_SEMI] = ACTIONS(714), - [anon_sym_LF] = ACTIONS(714), - [anon_sym_CR_LF] = ACTIONS(714), - [anon_sym_if] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_while] = ACTIONS(714), - [anon_sym_do] = ACTIONS(714), - [anon_sym_for] = ACTIONS(714), - [anon_sym_in] = ACTIONS(714), - [sym_break_statement] = ACTIONS(714), - [sym_continue_statement] = ACTIONS(714), - [anon_sym_delete] = ACTIONS(714), - [anon_sym_exit] = ACTIONS(714), - [anon_sym_return] = ACTIONS(714), - [anon_sym_switch] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(714), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_case] = ACTIONS(714), - [anon_sym_default] = ACTIONS(714), - [anon_sym_getline] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(714), - [sym_next_statement] = ACTIONS(714), - [sym_nextfile_statement] = ACTIONS(714), - [anon_sym_print] = ACTIONS(714), - [anon_sym_printf] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_GT_GT] = ACTIONS(714), - [anon_sym_PIPE] = ACTIONS(714), - [anon_sym_PIPE_AMP] = ACTIONS(714), - [anon_sym_QMARK] = ACTIONS(714), - [anon_sym_CARET] = ACTIONS(714), - [anon_sym_STAR_STAR] = ACTIONS(714), - [anon_sym_STAR] = ACTIONS(714), - [anon_sym_SLASH] = ACTIONS(714), - [anon_sym_PERCENT] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(714), - [anon_sym_GT_EQ] = ACTIONS(714), - [anon_sym_EQ_EQ] = ACTIONS(714), - [anon_sym_BANG_EQ] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(714), - [anon_sym_BANG_TILDE] = ACTIONS(714), - [anon_sym_AMP_AMP] = ACTIONS(714), - [anon_sym_PIPE_PIPE] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(714), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(714), - [anon_sym_PLUS_EQ] = ACTIONS(714), - [anon_sym_DASH_EQ] = ACTIONS(714), - [anon_sym_STAR_EQ] = ACTIONS(714), - [anon_sym_SLASH_EQ] = ACTIONS(714), - [anon_sym_PERCENT_EQ] = ACTIONS(714), - [anon_sym_CARET_EQ] = ACTIONS(714), - [anon_sym_DOLLAR] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(714), - [aux_sym_number_token1] = ACTIONS(714), - [aux_sym_number_token2] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(714), - [anon_sym_POUND] = ACTIONS(714), - [sym_concatenating_space] = ACTIONS(716), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(757), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + [sym__if_else_separator] = ACTIONS(759), }, [203] = { - [sym_identifier] = ACTIONS(790), - [anon_sym_COMMA] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_CR_LF] = ACTIONS(790), - [anon_sym_if] = ACTIONS(790), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(790), - [anon_sym_for] = ACTIONS(790), - [anon_sym_in] = ACTIONS(790), - [sym_break_statement] = ACTIONS(790), - [sym_continue_statement] = ACTIONS(790), - [anon_sym_delete] = ACTIONS(790), - [anon_sym_exit] = ACTIONS(790), - [anon_sym_return] = ACTIONS(790), - [anon_sym_switch] = ACTIONS(790), - [anon_sym_LBRACE] = ACTIONS(790), - [anon_sym_RBRACE] = ACTIONS(790), - [anon_sym_case] = ACTIONS(790), - [anon_sym_default] = ACTIONS(790), - [anon_sym_getline] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [sym_next_statement] = ACTIONS(790), - [sym_nextfile_statement] = ACTIONS(790), - [anon_sym_print] = ACTIONS(790), - [anon_sym_printf] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_CARET] = ACTIONS(790), - [anon_sym_STAR_STAR] = ACTIONS(790), - [anon_sym_STAR] = ACTIONS(790), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_PERCENT] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(790), - [anon_sym_LT_EQ] = ACTIONS(790), - [anon_sym_GT_EQ] = ACTIONS(790), - [anon_sym_EQ_EQ] = ACTIONS(790), - [anon_sym_BANG_EQ] = ACTIONS(790), - [anon_sym_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_EQ] = ACTIONS(790), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(790), - [aux_sym_number_token1] = ACTIONS(790), - [aux_sym_number_token2] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_POUND] = ACTIONS(790), - [sym_concatenating_space] = ACTIONS(792), - [sym__if_else_separator] = ACTIONS(792), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), }, [204] = { - [sym_identifier] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_CR_LF] = ACTIONS(794), - [anon_sym_if] = ACTIONS(794), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_while] = ACTIONS(794), - [anon_sym_do] = ACTIONS(794), - [anon_sym_for] = ACTIONS(794), - [anon_sym_in] = ACTIONS(794), - [sym_break_statement] = ACTIONS(794), - [sym_continue_statement] = ACTIONS(794), - [anon_sym_delete] = ACTIONS(794), - [anon_sym_exit] = ACTIONS(794), - [anon_sym_return] = ACTIONS(794), - [anon_sym_switch] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_case] = ACTIONS(794), - [anon_sym_default] = ACTIONS(794), - [anon_sym_getline] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [sym_next_statement] = ACTIONS(794), - [sym_nextfile_statement] = ACTIONS(794), - [anon_sym_print] = ACTIONS(794), - [anon_sym_printf] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_QMARK] = ACTIONS(794), - [anon_sym_CARET] = ACTIONS(794), - [anon_sym_STAR_STAR] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_SLASH] = ACTIONS(794), - [anon_sym_PERCENT] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(794), - [anon_sym_LT_EQ] = ACTIONS(794), - [anon_sym_GT_EQ] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_BANG_EQ] = ACTIONS(794), - [anon_sym_TILDE] = ACTIONS(794), - [anon_sym_BANG_TILDE] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_BANG] = ACTIONS(794), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_EQ] = ACTIONS(794), - [anon_sym_PLUS_EQ] = ACTIONS(794), - [anon_sym_DASH_EQ] = ACTIONS(794), - [anon_sym_STAR_EQ] = ACTIONS(794), - [anon_sym_SLASH_EQ] = ACTIONS(794), - [anon_sym_PERCENT_EQ] = ACTIONS(794), - [anon_sym_CARET_EQ] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(794), - [aux_sym_number_token1] = ACTIONS(794), - [aux_sym_number_token2] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_POUND] = ACTIONS(794), - [sym_concatenating_space] = ACTIONS(796), - [sym__if_else_separator] = ACTIONS(796), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), + [anon_sym_STAR_EQ] = ACTIONS(765), + [anon_sym_SLASH_EQ] = ACTIONS(765), + [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_CARET_EQ] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), }, [205] = { - [sym_identifier] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_CR_LF] = ACTIONS(722), - [anon_sym_if] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_while] = ACTIONS(722), - [anon_sym_do] = ACTIONS(722), - [anon_sym_for] = ACTIONS(722), - [anon_sym_in] = ACTIONS(722), - [sym_break_statement] = ACTIONS(722), - [sym_continue_statement] = ACTIONS(722), - [anon_sym_delete] = ACTIONS(722), - [anon_sym_exit] = ACTIONS(722), - [anon_sym_return] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_case] = ACTIONS(722), - [anon_sym_default] = ACTIONS(722), - [anon_sym_getline] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(722), - [sym_next_statement] = ACTIONS(722), - [sym_nextfile_statement] = ACTIONS(722), - [anon_sym_print] = ACTIONS(722), - [anon_sym_printf] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(722), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_PERCENT] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(722), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG_TILDE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), - [anon_sym_EQ] = ACTIONS(722), - [anon_sym_PLUS_EQ] = ACTIONS(722), - [anon_sym_DASH_EQ] = ACTIONS(722), - [anon_sym_STAR_EQ] = ACTIONS(722), - [anon_sym_SLASH_EQ] = ACTIONS(722), - [anon_sym_PERCENT_EQ] = ACTIONS(722), - [anon_sym_CARET_EQ] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(722), - [aux_sym_number_token1] = ACTIONS(722), - [aux_sym_number_token2] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND] = ACTIONS(722), - [sym_concatenating_space] = ACTIONS(724), - [sym__if_else_separator] = ACTIONS(724), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), }, [206] = { - [sym_identifier] = ACTIONS(798), - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_CR_LF] = ACTIONS(798), - [anon_sym_if] = ACTIONS(798), - [anon_sym_LPAREN] = ACTIONS(798), - [anon_sym_while] = ACTIONS(798), - [anon_sym_do] = ACTIONS(798), - [anon_sym_for] = ACTIONS(798), - [anon_sym_in] = ACTIONS(798), - [sym_break_statement] = ACTIONS(798), - [sym_continue_statement] = ACTIONS(798), - [anon_sym_delete] = ACTIONS(798), - [anon_sym_exit] = ACTIONS(798), - [anon_sym_return] = ACTIONS(798), - [anon_sym_switch] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_RBRACE] = ACTIONS(798), - [anon_sym_case] = ACTIONS(798), - [anon_sym_default] = ACTIONS(798), - [anon_sym_getline] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [sym_next_statement] = ACTIONS(798), - [sym_nextfile_statement] = ACTIONS(798), - [anon_sym_print] = ACTIONS(798), - [anon_sym_printf] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_QMARK] = ACTIONS(798), - [anon_sym_CARET] = ACTIONS(798), - [anon_sym_STAR_STAR] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(798), - [anon_sym_SLASH] = ACTIONS(798), - [anon_sym_PERCENT] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(798), - [anon_sym_LT_EQ] = ACTIONS(798), - [anon_sym_GT_EQ] = ACTIONS(798), - [anon_sym_EQ_EQ] = ACTIONS(798), - [anon_sym_BANG_EQ] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(798), - [anon_sym_BANG_TILDE] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_PLUS_PLUS] = ACTIONS(798), - [anon_sym_DASH_DASH] = ACTIONS(798), - [anon_sym_EQ] = ACTIONS(798), - [anon_sym_PLUS_EQ] = ACTIONS(798), - [anon_sym_DASH_EQ] = ACTIONS(798), - [anon_sym_STAR_EQ] = ACTIONS(798), - [anon_sym_SLASH_EQ] = ACTIONS(798), - [anon_sym_PERCENT_EQ] = ACTIONS(798), - [anon_sym_CARET_EQ] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [anon_sym_AT] = ACTIONS(798), - [aux_sym_number_token1] = ACTIONS(798), - [aux_sym_number_token2] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_POUND] = ACTIONS(798), - [sym_concatenating_space] = ACTIONS(800), - [sym__if_else_separator] = ACTIONS(800), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(805), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), }, [207] = { - [sym_identifier] = ACTIONS(802), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_CR_LF] = ACTIONS(802), - [anon_sym_if] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(802), - [anon_sym_while] = ACTIONS(802), - [anon_sym_do] = ACTIONS(802), - [anon_sym_for] = ACTIONS(802), - [anon_sym_in] = ACTIONS(802), - [sym_break_statement] = ACTIONS(802), - [sym_continue_statement] = ACTIONS(802), - [anon_sym_delete] = ACTIONS(802), - [anon_sym_exit] = ACTIONS(802), - [anon_sym_return] = ACTIONS(802), - [anon_sym_switch] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_case] = ACTIONS(802), - [anon_sym_default] = ACTIONS(802), - [anon_sym_getline] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(802), - [sym_next_statement] = ACTIONS(802), - [sym_nextfile_statement] = ACTIONS(802), - [anon_sym_print] = ACTIONS(802), - [anon_sym_printf] = ACTIONS(802), - [anon_sym_GT] = ACTIONS(802), - [anon_sym_GT_GT] = ACTIONS(802), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_QMARK] = ACTIONS(802), - [anon_sym_CARET] = ACTIONS(802), - [anon_sym_STAR_STAR] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(802), - [anon_sym_SLASH] = ACTIONS(802), - [anon_sym_PERCENT] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(802), - [anon_sym_LT_EQ] = ACTIONS(802), - [anon_sym_GT_EQ] = ACTIONS(802), - [anon_sym_EQ_EQ] = ACTIONS(802), - [anon_sym_BANG_EQ] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(802), - [anon_sym_BANG_TILDE] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(802), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), - [anon_sym_EQ] = ACTIONS(802), - [anon_sym_PLUS_EQ] = ACTIONS(802), - [anon_sym_DASH_EQ] = ACTIONS(802), - [anon_sym_STAR_EQ] = ACTIONS(802), - [anon_sym_SLASH_EQ] = ACTIONS(802), - [anon_sym_PERCENT_EQ] = ACTIONS(802), - [anon_sym_CARET_EQ] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [anon_sym_AT] = ACTIONS(802), - [aux_sym_number_token1] = ACTIONS(802), - [aux_sym_number_token2] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_POUND] = ACTIONS(802), - [sym_concatenating_space] = ACTIONS(804), - [sym__if_else_separator] = ACTIONS(804), + [sym_identifier] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(795), + [anon_sym_LF] = ACTIONS(795), + [anon_sym_CR_LF] = ACTIONS(795), + [anon_sym_if] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(795), + [anon_sym_for] = ACTIONS(795), + [anon_sym_in] = ACTIONS(795), + [sym_break_statement] = ACTIONS(795), + [sym_continue_statement] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_exit] = ACTIONS(795), + [anon_sym_return] = ACTIONS(795), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_getline] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [sym_next_statement] = ACTIONS(795), + [sym_nextfile_statement] = ACTIONS(795), + [anon_sym_print] = ACTIONS(795), + [anon_sym_printf] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_GT_GT] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_STAR_STAR] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_PERCENT] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(795), + [anon_sym_BANG_EQ] = ACTIONS(795), + [anon_sym_TILDE] = ACTIONS(795), + [anon_sym_BANG_TILDE] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(795), + [anon_sym_PIPE_PIPE] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_PLUS_EQ] = ACTIONS(795), + [anon_sym_DASH_EQ] = ACTIONS(795), + [anon_sym_STAR_EQ] = ACTIONS(795), + [anon_sym_SLASH_EQ] = ACTIONS(795), + [anon_sym_PERCENT_EQ] = ACTIONS(795), + [anon_sym_CARET_EQ] = ACTIONS(795), + [anon_sym_DOLLAR] = ACTIONS(795), + [sym_regex_flags] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(795), + [aux_sym_number_token1] = ACTIONS(795), + [aux_sym_number_token2] = ACTIONS(795), + [anon_sym_DQUOTE] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_asort] = ACTIONS(795), + [anon_sym_asorti] = ACTIONS(795), + [anon_sym_bindtextdomain] = ACTIONS(795), + [anon_sym_compl] = ACTIONS(795), + [anon_sym_cos] = ACTIONS(795), + [anon_sym_dcgettext] = ACTIONS(795), + [anon_sym_dcngettext] = ACTIONS(795), + [anon_sym_exp] = ACTIONS(795), + [anon_sym_gensub] = ACTIONS(795), + [anon_sym_gsub] = ACTIONS(795), + [anon_sym_index] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_isarray] = ACTIONS(795), + [anon_sym_length] = ACTIONS(795), + [anon_sym_log] = ACTIONS(795), + [anon_sym_lshift] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_mktime] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_patsplit] = ACTIONS(795), + [anon_sym_rand] = ACTIONS(795), + [anon_sym_rshift] = ACTIONS(795), + [anon_sym_sin] = ACTIONS(795), + [anon_sym_split] = ACTIONS(795), + [anon_sym_sprintf] = ACTIONS(795), + [anon_sym_sqrt] = ACTIONS(795), + [anon_sym_srand] = ACTIONS(795), + [anon_sym_strftime] = ACTIONS(795), + [anon_sym_strtonum] = ACTIONS(795), + [anon_sym_sub] = ACTIONS(795), + [anon_sym_substr] = ACTIONS(795), + [anon_sym_systime] = ACTIONS(795), + [anon_sym_tolower] = ACTIONS(795), + [anon_sym_toupper] = ACTIONS(795), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(795), + [sym_concatenating_space] = ACTIONS(799), }, [208] = { - [sym_identifier] = ACTIONS(806), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_CR_LF] = ACTIONS(806), - [anon_sym_if] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(806), - [anon_sym_while] = ACTIONS(806), - [anon_sym_do] = ACTIONS(806), - [anon_sym_for] = ACTIONS(806), - [anon_sym_in] = ACTIONS(806), - [sym_break_statement] = ACTIONS(806), - [sym_continue_statement] = ACTIONS(806), - [anon_sym_delete] = ACTIONS(806), - [anon_sym_exit] = ACTIONS(806), - [anon_sym_return] = ACTIONS(806), - [anon_sym_switch] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_case] = ACTIONS(806), - [anon_sym_default] = ACTIONS(806), - [anon_sym_getline] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [sym_next_statement] = ACTIONS(806), - [sym_nextfile_statement] = ACTIONS(806), - [anon_sym_print] = ACTIONS(806), - [anon_sym_printf] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_CARET] = ACTIONS(806), - [anon_sym_STAR_STAR] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_PERCENT] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_TILDE] = ACTIONS(806), - [anon_sym_BANG_TILDE] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_BANG] = ACTIONS(806), - [anon_sym_PLUS_PLUS] = ACTIONS(806), - [anon_sym_DASH_DASH] = ACTIONS(806), - [anon_sym_EQ] = ACTIONS(806), - [anon_sym_PLUS_EQ] = ACTIONS(806), - [anon_sym_DASH_EQ] = ACTIONS(806), - [anon_sym_STAR_EQ] = ACTIONS(806), - [anon_sym_SLASH_EQ] = ACTIONS(806), - [anon_sym_PERCENT_EQ] = ACTIONS(806), - [anon_sym_CARET_EQ] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_AT] = ACTIONS(806), - [aux_sym_number_token1] = ACTIONS(806), - [aux_sym_number_token2] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_POUND] = ACTIONS(806), - [sym_concatenating_space] = ACTIONS(808), - [sym__if_else_separator] = ACTIONS(808), + [sym_identifier] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_CR_LF] = ACTIONS(809), + [anon_sym_if] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(809), + [anon_sym_for] = ACTIONS(809), + [anon_sym_in] = ACTIONS(811), + [sym_break_statement] = ACTIONS(809), + [sym_continue_statement] = ACTIONS(809), + [anon_sym_delete] = ACTIONS(809), + [anon_sym_exit] = ACTIONS(809), + [anon_sym_return] = ACTIONS(809), + [anon_sym_switch] = ACTIONS(809), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_getline] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(809), + [sym_nextfile_statement] = ACTIONS(809), + [anon_sym_print] = ACTIONS(809), + [anon_sym_printf] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_BANG_TILDE] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(809), + [anon_sym_STAR_EQ] = ACTIONS(809), + [anon_sym_SLASH_EQ] = ACTIONS(809), + [anon_sym_PERCENT_EQ] = ACTIONS(809), + [anon_sym_CARET_EQ] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_AT] = ACTIONS(809), + [aux_sym_number_token1] = ACTIONS(809), + [aux_sym_number_token2] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), + [anon_sym_and] = ACTIONS(809), + [anon_sym_asort] = ACTIONS(809), + [anon_sym_asorti] = ACTIONS(809), + [anon_sym_bindtextdomain] = ACTIONS(809), + [anon_sym_compl] = ACTIONS(809), + [anon_sym_cos] = ACTIONS(809), + [anon_sym_dcgettext] = ACTIONS(809), + [anon_sym_dcngettext] = ACTIONS(809), + [anon_sym_exp] = ACTIONS(809), + [anon_sym_gensub] = ACTIONS(809), + [anon_sym_gsub] = ACTIONS(809), + [anon_sym_index] = ACTIONS(809), + [anon_sym_int] = ACTIONS(809), + [anon_sym_isarray] = ACTIONS(809), + [anon_sym_length] = ACTIONS(809), + [anon_sym_log] = ACTIONS(809), + [anon_sym_lshift] = ACTIONS(809), + [anon_sym_match] = ACTIONS(809), + [anon_sym_mktime] = ACTIONS(809), + [anon_sym_or] = ACTIONS(809), + [anon_sym_patsplit] = ACTIONS(809), + [anon_sym_rand] = ACTIONS(809), + [anon_sym_rshift] = ACTIONS(809), + [anon_sym_sin] = ACTIONS(809), + [anon_sym_split] = ACTIONS(809), + [anon_sym_sprintf] = ACTIONS(809), + [anon_sym_sqrt] = ACTIONS(809), + [anon_sym_srand] = ACTIONS(809), + [anon_sym_strftime] = ACTIONS(809), + [anon_sym_strtonum] = ACTIONS(809), + [anon_sym_sub] = ACTIONS(809), + [anon_sym_substr] = ACTIONS(809), + [anon_sym_systime] = ACTIONS(809), + [anon_sym_tolower] = ACTIONS(809), + [anon_sym_toupper] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(809), + [anon_sym_xor] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(809), + [sym_concatenating_space] = ACTIONS(829), + [sym__if_else_separator] = ACTIONS(829), }, [209] = { - [sym_identifier] = ACTIONS(714), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_SEMI] = ACTIONS(714), - [anon_sym_LF] = ACTIONS(714), - [anon_sym_CR_LF] = ACTIONS(714), - [anon_sym_if] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_while] = ACTIONS(714), - [anon_sym_do] = ACTIONS(714), - [anon_sym_for] = ACTIONS(714), - [anon_sym_in] = ACTIONS(714), - [sym_break_statement] = ACTIONS(714), - [sym_continue_statement] = ACTIONS(714), - [anon_sym_delete] = ACTIONS(714), - [anon_sym_exit] = ACTIONS(714), - [anon_sym_return] = ACTIONS(714), - [anon_sym_switch] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(714), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_getline] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(810), - [sym_next_statement] = ACTIONS(714), - [sym_nextfile_statement] = ACTIONS(714), - [anon_sym_print] = ACTIONS(714), - [anon_sym_printf] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_GT_GT] = ACTIONS(714), - [anon_sym_PIPE] = ACTIONS(714), - [anon_sym_PIPE_AMP] = ACTIONS(714), - [anon_sym_QMARK] = ACTIONS(714), - [anon_sym_CARET] = ACTIONS(714), - [anon_sym_STAR_STAR] = ACTIONS(714), - [anon_sym_STAR] = ACTIONS(714), - [anon_sym_SLASH] = ACTIONS(714), - [anon_sym_PERCENT] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(714), - [anon_sym_GT_EQ] = ACTIONS(714), - [anon_sym_EQ_EQ] = ACTIONS(714), - [anon_sym_BANG_EQ] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(714), - [anon_sym_BANG_TILDE] = ACTIONS(714), - [anon_sym_AMP_AMP] = ACTIONS(714), - [anon_sym_PIPE_PIPE] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(714), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(714), - [anon_sym_PLUS_EQ] = ACTIONS(714), - [anon_sym_DASH_EQ] = ACTIONS(714), - [anon_sym_STAR_EQ] = ACTIONS(714), - [anon_sym_SLASH_EQ] = ACTIONS(714), - [anon_sym_PERCENT_EQ] = ACTIONS(714), - [anon_sym_CARET_EQ] = ACTIONS(714), - [anon_sym_DOLLAR] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(714), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(714), - [aux_sym_number_token2] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(714), - [anon_sym_POUND] = ACTIONS(714), - [sym_concatenating_space] = ACTIONS(716), - [sym__if_else_separator] = ACTIONS(716), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), }, [210] = { - [sym_identifier] = ACTIONS(812), - [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(812), - [anon_sym_LF] = ACTIONS(812), - [anon_sym_CR_LF] = ACTIONS(812), - [anon_sym_if] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(812), - [anon_sym_while] = ACTIONS(812), - [anon_sym_do] = ACTIONS(812), - [anon_sym_for] = ACTIONS(812), - [anon_sym_in] = ACTIONS(812), - [sym_break_statement] = ACTIONS(812), - [sym_continue_statement] = ACTIONS(812), - [anon_sym_delete] = ACTIONS(812), - [anon_sym_exit] = ACTIONS(812), - [anon_sym_return] = ACTIONS(812), - [anon_sym_switch] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(812), - [anon_sym_RBRACE] = ACTIONS(812), - [anon_sym_case] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_getline] = ACTIONS(812), - [anon_sym_LT] = ACTIONS(812), - [sym_next_statement] = ACTIONS(812), - [sym_nextfile_statement] = ACTIONS(812), - [anon_sym_print] = ACTIONS(812), - [anon_sym_printf] = ACTIONS(812), - [anon_sym_GT] = ACTIONS(812), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_PIPE_AMP] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(812), - [anon_sym_CARET] = ACTIONS(812), - [anon_sym_STAR_STAR] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_SLASH] = ACTIONS(812), - [anon_sym_PERCENT] = ACTIONS(812), - [anon_sym_PLUS] = ACTIONS(812), - [anon_sym_DASH] = ACTIONS(812), - [anon_sym_LT_EQ] = ACTIONS(812), - [anon_sym_GT_EQ] = ACTIONS(812), - [anon_sym_EQ_EQ] = ACTIONS(812), - [anon_sym_BANG_EQ] = ACTIONS(812), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_BANG_TILDE] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(812), - [anon_sym_PIPE_PIPE] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(812), - [anon_sym_PLUS_EQ] = ACTIONS(812), - [anon_sym_DASH_EQ] = ACTIONS(812), - [anon_sym_STAR_EQ] = ACTIONS(812), - [anon_sym_SLASH_EQ] = ACTIONS(812), - [anon_sym_PERCENT_EQ] = ACTIONS(812), - [anon_sym_CARET_EQ] = ACTIONS(812), - [anon_sym_DOLLAR] = ACTIONS(812), - [anon_sym_AT] = ACTIONS(812), - [aux_sym_number_token1] = ACTIONS(812), - [aux_sym_number_token2] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_POUND] = ACTIONS(812), - [sym_concatenating_space] = ACTIONS(814), - [sym__if_else_separator] = ACTIONS(814), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(805), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), }, [211] = { - [sym_identifier] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_CR_LF] = ACTIONS(684), - [anon_sym_if] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(684), - [anon_sym_for] = ACTIONS(684), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(684), - [sym_continue_statement] = ACTIONS(684), - [anon_sym_delete] = ACTIONS(684), - [anon_sym_exit] = ACTIONS(684), - [anon_sym_return] = ACTIONS(684), - [anon_sym_switch] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_getline] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(684), - [sym_nextfile_statement] = ACTIONS(684), - [anon_sym_print] = ACTIONS(684), - [anon_sym_printf] = ACTIONS(684), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [anon_sym_DASH_EQ] = ACTIONS(684), - [anon_sym_STAR_EQ] = ACTIONS(684), - [anon_sym_SLASH_EQ] = ACTIONS(684), - [anon_sym_PERCENT_EQ] = ACTIONS(684), - [anon_sym_CARET_EQ] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(684), - [aux_sym_number_token1] = ACTIONS(684), - [aux_sym_number_token2] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(684), - [sym_concatenating_space] = ACTIONS(686), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), + [anon_sym_STAR_EQ] = ACTIONS(765), + [anon_sym_SLASH_EQ] = ACTIONS(765), + [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_CARET_EQ] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + [sym__if_else_separator] = ACTIONS(767), }, [212] = { - [sym_identifier] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(816), - [anon_sym_LF] = ACTIONS(816), - [anon_sym_CR_LF] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_do] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_in] = ACTIONS(816), - [sym_break_statement] = ACTIONS(816), - [sym_continue_statement] = ACTIONS(816), - [anon_sym_delete] = ACTIONS(816), - [anon_sym_exit] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_switch] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(816), - [anon_sym_case] = ACTIONS(816), - [anon_sym_default] = ACTIONS(816), - [anon_sym_getline] = ACTIONS(816), - [anon_sym_LT] = ACTIONS(816), - [sym_next_statement] = ACTIONS(816), - [sym_nextfile_statement] = ACTIONS(816), - [anon_sym_print] = ACTIONS(816), - [anon_sym_printf] = ACTIONS(816), - [anon_sym_GT] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_PIPE_AMP] = ACTIONS(816), - [anon_sym_QMARK] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [anon_sym_STAR_STAR] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(816), - [anon_sym_PLUS] = ACTIONS(816), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_LT_EQ] = ACTIONS(816), - [anon_sym_GT_EQ] = ACTIONS(816), - [anon_sym_EQ_EQ] = ACTIONS(816), - [anon_sym_BANG_EQ] = ACTIONS(816), - [anon_sym_TILDE] = ACTIONS(816), - [anon_sym_BANG_TILDE] = ACTIONS(816), - [anon_sym_AMP_AMP] = ACTIONS(816), - [anon_sym_PIPE_PIPE] = ACTIONS(816), - [anon_sym_BANG] = ACTIONS(816), - [anon_sym_PLUS_PLUS] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(816), - [anon_sym_EQ] = ACTIONS(816), - [anon_sym_PLUS_EQ] = ACTIONS(816), - [anon_sym_DASH_EQ] = ACTIONS(816), - [anon_sym_STAR_EQ] = ACTIONS(816), - [anon_sym_SLASH_EQ] = ACTIONS(816), - [anon_sym_PERCENT_EQ] = ACTIONS(816), - [anon_sym_CARET_EQ] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(816), - [aux_sym_number_token1] = ACTIONS(816), - [aux_sym_number_token2] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(816), - [anon_sym_POUND] = ACTIONS(816), - [sym_concatenating_space] = ACTIONS(818), - [sym__if_else_separator] = ACTIONS(818), + [sym_identifier] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_CR_LF] = ACTIONS(831), + [anon_sym_if] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_while] = ACTIONS(831), + [anon_sym_do] = ACTIONS(831), + [anon_sym_for] = ACTIONS(831), + [anon_sym_in] = ACTIONS(831), + [sym_break_statement] = ACTIONS(831), + [sym_continue_statement] = ACTIONS(831), + [anon_sym_delete] = ACTIONS(831), + [anon_sym_exit] = ACTIONS(831), + [anon_sym_return] = ACTIONS(831), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_getline] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(831), + [sym_next_statement] = ACTIONS(831), + [sym_nextfile_statement] = ACTIONS(831), + [anon_sym_print] = ACTIONS(831), + [anon_sym_printf] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_GT_GT] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_PIPE_AMP] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym_STAR_STAR] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LT_EQ] = ACTIONS(831), + [anon_sym_GT_EQ] = ACTIONS(831), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_BANG_EQ] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_BANG_TILDE] = ACTIONS(831), + [anon_sym_AMP_AMP] = ACTIONS(831), + [anon_sym_PIPE_PIPE] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_PLUS_PLUS] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [aux_sym_number_token1] = ACTIONS(831), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_and] = ACTIONS(831), + [anon_sym_asort] = ACTIONS(831), + [anon_sym_asorti] = ACTIONS(831), + [anon_sym_bindtextdomain] = ACTIONS(831), + [anon_sym_compl] = ACTIONS(831), + [anon_sym_cos] = ACTIONS(831), + [anon_sym_dcgettext] = ACTIONS(831), + [anon_sym_dcngettext] = ACTIONS(831), + [anon_sym_exp] = ACTIONS(831), + [anon_sym_gensub] = ACTIONS(831), + [anon_sym_gsub] = ACTIONS(831), + [anon_sym_index] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_isarray] = ACTIONS(831), + [anon_sym_length] = ACTIONS(831), + [anon_sym_log] = ACTIONS(831), + [anon_sym_lshift] = ACTIONS(831), + [anon_sym_match] = ACTIONS(831), + [anon_sym_mktime] = ACTIONS(831), + [anon_sym_or] = ACTIONS(831), + [anon_sym_patsplit] = ACTIONS(831), + [anon_sym_rand] = ACTIONS(831), + [anon_sym_rshift] = ACTIONS(831), + [anon_sym_sin] = ACTIONS(831), + [anon_sym_split] = ACTIONS(831), + [anon_sym_sprintf] = ACTIONS(831), + [anon_sym_sqrt] = ACTIONS(831), + [anon_sym_srand] = ACTIONS(831), + [anon_sym_strftime] = ACTIONS(831), + [anon_sym_strtonum] = ACTIONS(831), + [anon_sym_sub] = ACTIONS(831), + [anon_sym_substr] = ACTIONS(831), + [anon_sym_systime] = ACTIONS(831), + [anon_sym_tolower] = ACTIONS(831), + [anon_sym_toupper] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + [sym_concatenating_space] = ACTIONS(833), + [sym__if_else_separator] = ACTIONS(833), }, [213] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_case] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(668), - [anon_sym_DASH_DASH] = ACTIONS(668), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(666), - [anon_sym_DASH_EQ] = ACTIONS(666), - [anon_sym_STAR_EQ] = ACTIONS(666), - [anon_sym_SLASH_EQ] = ACTIONS(666), - [anon_sym_PERCENT_EQ] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(666), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), - [sym__if_else_separator] = ACTIONS(674), + [sym_identifier] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_CR_LF] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(835), + [anon_sym_for] = ACTIONS(835), + [anon_sym_in] = ACTIONS(835), + [sym_break_statement] = ACTIONS(835), + [sym_continue_statement] = ACTIONS(835), + [anon_sym_delete] = ACTIONS(835), + [anon_sym_exit] = ACTIONS(835), + [anon_sym_return] = ACTIONS(835), + [anon_sym_switch] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_getline] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [sym_next_statement] = ACTIONS(835), + [sym_nextfile_statement] = ACTIONS(835), + [anon_sym_print] = ACTIONS(835), + [anon_sym_printf] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PIPE_AMP] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(835), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(835), + [anon_sym_BANG_TILDE] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(835), + [anon_sym_DASH_DASH] = ACTIONS(835), + [anon_sym_EQ] = ACTIONS(835), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(835), + [aux_sym_number_token1] = ACTIONS(835), + [aux_sym_number_token2] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(835), + [anon_sym_and] = ACTIONS(835), + [anon_sym_asort] = ACTIONS(835), + [anon_sym_asorti] = ACTIONS(835), + [anon_sym_bindtextdomain] = ACTIONS(835), + [anon_sym_compl] = ACTIONS(835), + [anon_sym_cos] = ACTIONS(835), + [anon_sym_dcgettext] = ACTIONS(835), + [anon_sym_dcngettext] = ACTIONS(835), + [anon_sym_exp] = ACTIONS(835), + [anon_sym_gensub] = ACTIONS(835), + [anon_sym_gsub] = ACTIONS(835), + [anon_sym_index] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_isarray] = ACTIONS(835), + [anon_sym_length] = ACTIONS(835), + [anon_sym_log] = ACTIONS(835), + [anon_sym_lshift] = ACTIONS(835), + [anon_sym_match] = ACTIONS(835), + [anon_sym_mktime] = ACTIONS(835), + [anon_sym_or] = ACTIONS(835), + [anon_sym_patsplit] = ACTIONS(835), + [anon_sym_rand] = ACTIONS(835), + [anon_sym_rshift] = ACTIONS(835), + [anon_sym_sin] = ACTIONS(835), + [anon_sym_split] = ACTIONS(835), + [anon_sym_sprintf] = ACTIONS(835), + [anon_sym_sqrt] = ACTIONS(835), + [anon_sym_srand] = ACTIONS(835), + [anon_sym_strftime] = ACTIONS(835), + [anon_sym_strtonum] = ACTIONS(835), + [anon_sym_sub] = ACTIONS(835), + [anon_sym_substr] = ACTIONS(835), + [anon_sym_systime] = ACTIONS(835), + [anon_sym_tolower] = ACTIONS(835), + [anon_sym_toupper] = ACTIONS(835), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(835), + [anon_sym_POUND] = ACTIONS(835), + [sym_concatenating_space] = ACTIONS(837), + [sym__if_else_separator] = ACTIONS(837), }, [214] = { - [sym_identifier] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_CR_LF] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_in] = ACTIONS(820), - [sym_break_statement] = ACTIONS(820), - [sym_continue_statement] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_exit] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_case] = ACTIONS(820), - [anon_sym_default] = ACTIONS(820), - [anon_sym_getline] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [sym_next_statement] = ACTIONS(820), - [sym_nextfile_statement] = ACTIONS(820), - [anon_sym_print] = ACTIONS(820), - [anon_sym_printf] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PIPE_AMP] = ACTIONS(820), - [anon_sym_QMARK] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(820), - [anon_sym_GT_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_BANG_TILDE] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(820), - [anon_sym_PLUS_EQ] = ACTIONS(820), - [anon_sym_DASH_EQ] = ACTIONS(820), - [anon_sym_STAR_EQ] = ACTIONS(820), - [anon_sym_SLASH_EQ] = ACTIONS(820), - [anon_sym_PERCENT_EQ] = ACTIONS(820), - [anon_sym_CARET_EQ] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [aux_sym_number_token1] = ACTIONS(820), - [aux_sym_number_token2] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_POUND] = ACTIONS(820), - [sym_concatenating_space] = ACTIONS(822), - [sym__if_else_separator] = ACTIONS(822), + [sym_identifier] = ACTIONS(839), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(839), + [anon_sym_LF] = ACTIONS(839), + [anon_sym_CR_LF] = ACTIONS(839), + [anon_sym_if] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_while] = ACTIONS(839), + [anon_sym_do] = ACTIONS(839), + [anon_sym_for] = ACTIONS(839), + [anon_sym_in] = ACTIONS(839), + [sym_break_statement] = ACTIONS(839), + [sym_continue_statement] = ACTIONS(839), + [anon_sym_delete] = ACTIONS(839), + [anon_sym_exit] = ACTIONS(839), + [anon_sym_return] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_getline] = ACTIONS(839), + [anon_sym_LT] = ACTIONS(839), + [sym_next_statement] = ACTIONS(839), + [sym_nextfile_statement] = ACTIONS(839), + [anon_sym_print] = ACTIONS(839), + [anon_sym_printf] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [anon_sym_GT_GT] = ACTIONS(839), + [anon_sym_PIPE] = ACTIONS(839), + [anon_sym_PIPE_AMP] = ACTIONS(839), + [anon_sym_QMARK] = ACTIONS(839), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(839), + [anon_sym_GT_EQ] = ACTIONS(839), + [anon_sym_EQ_EQ] = ACTIONS(839), + [anon_sym_BANG_EQ] = ACTIONS(839), + [anon_sym_TILDE] = ACTIONS(839), + [anon_sym_BANG_TILDE] = ACTIONS(839), + [anon_sym_AMP_AMP] = ACTIONS(839), + [anon_sym_PIPE_PIPE] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(839), + [anon_sym_PLUS_PLUS] = ACTIONS(839), + [anon_sym_DASH_DASH] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_PLUS_EQ] = ACTIONS(839), + [anon_sym_DASH_EQ] = ACTIONS(839), + [anon_sym_STAR_EQ] = ACTIONS(839), + [anon_sym_SLASH_EQ] = ACTIONS(839), + [anon_sym_PERCENT_EQ] = ACTIONS(839), + [anon_sym_CARET_EQ] = ACTIONS(839), + [anon_sym_DOLLAR] = ACTIONS(839), + [anon_sym_AT] = ACTIONS(839), + [aux_sym_number_token1] = ACTIONS(839), + [aux_sym_number_token2] = ACTIONS(839), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_and] = ACTIONS(839), + [anon_sym_asort] = ACTIONS(839), + [anon_sym_asorti] = ACTIONS(839), + [anon_sym_bindtextdomain] = ACTIONS(839), + [anon_sym_compl] = ACTIONS(839), + [anon_sym_cos] = ACTIONS(839), + [anon_sym_dcgettext] = ACTIONS(839), + [anon_sym_dcngettext] = ACTIONS(839), + [anon_sym_exp] = ACTIONS(839), + [anon_sym_gensub] = ACTIONS(839), + [anon_sym_gsub] = ACTIONS(839), + [anon_sym_index] = ACTIONS(839), + [anon_sym_int] = ACTIONS(839), + [anon_sym_isarray] = ACTIONS(839), + [anon_sym_length] = ACTIONS(839), + [anon_sym_log] = ACTIONS(839), + [anon_sym_lshift] = ACTIONS(839), + [anon_sym_match] = ACTIONS(839), + [anon_sym_mktime] = ACTIONS(839), + [anon_sym_or] = ACTIONS(839), + [anon_sym_patsplit] = ACTIONS(839), + [anon_sym_rand] = ACTIONS(839), + [anon_sym_rshift] = ACTIONS(839), + [anon_sym_sin] = ACTIONS(839), + [anon_sym_split] = ACTIONS(839), + [anon_sym_sprintf] = ACTIONS(839), + [anon_sym_sqrt] = ACTIONS(839), + [anon_sym_srand] = ACTIONS(839), + [anon_sym_strftime] = ACTIONS(839), + [anon_sym_strtonum] = ACTIONS(839), + [anon_sym_sub] = ACTIONS(839), + [anon_sym_substr] = ACTIONS(839), + [anon_sym_systime] = ACTIONS(839), + [anon_sym_tolower] = ACTIONS(839), + [anon_sym_toupper] = ACTIONS(839), + [anon_sym_typeof] = ACTIONS(839), + [anon_sym_xor] = ACTIONS(839), + [anon_sym_POUND] = ACTIONS(839), + [sym_concatenating_space] = ACTIONS(841), + [sym__if_else_separator] = ACTIONS(841), }, [215] = { - [sym_identifier] = ACTIONS(824), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(824), - [anon_sym_CR_LF] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_in] = ACTIONS(824), - [sym_break_statement] = ACTIONS(824), - [sym_continue_statement] = ACTIONS(824), - [anon_sym_delete] = ACTIONS(824), - [anon_sym_exit] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_switch] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_case] = ACTIONS(824), - [anon_sym_default] = ACTIONS(824), - [anon_sym_getline] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [sym_next_statement] = ACTIONS(824), - [sym_nextfile_statement] = ACTIONS(824), - [anon_sym_print] = ACTIONS(824), - [anon_sym_printf] = ACTIONS(824), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_QMARK] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [anon_sym_STAR_STAR] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(824), - [anon_sym_PERCENT] = ACTIONS(824), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(824), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_BANG_TILDE] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [anon_sym_BANG] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym_EQ] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(824), - [anon_sym_DASH_EQ] = ACTIONS(824), - [anon_sym_STAR_EQ] = ACTIONS(824), - [anon_sym_SLASH_EQ] = ACTIONS(824), - [anon_sym_PERCENT_EQ] = ACTIONS(824), - [anon_sym_CARET_EQ] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(824), - [aux_sym_number_token1] = ACTIONS(824), - [aux_sym_number_token2] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_POUND] = ACTIONS(824), - [sym_concatenating_space] = ACTIONS(826), - [sym__if_else_separator] = ACTIONS(826), + [sym_identifier] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LF] = ACTIONS(843), + [anon_sym_CR_LF] = ACTIONS(843), + [anon_sym_if] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(843), + [anon_sym_for] = ACTIONS(843), + [anon_sym_in] = ACTIONS(843), + [sym_break_statement] = ACTIONS(843), + [sym_continue_statement] = ACTIONS(843), + [anon_sym_delete] = ACTIONS(843), + [anon_sym_exit] = ACTIONS(843), + [anon_sym_return] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_getline] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(843), + [sym_next_statement] = ACTIONS(843), + [sym_nextfile_statement] = ACTIONS(843), + [anon_sym_print] = ACTIONS(843), + [anon_sym_printf] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_GT_GT] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_PIPE_AMP] = ACTIONS(843), + [anon_sym_QMARK] = ACTIONS(843), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym_STAR_STAR] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_LT_EQ] = ACTIONS(843), + [anon_sym_GT_EQ] = ACTIONS(843), + [anon_sym_EQ_EQ] = ACTIONS(843), + [anon_sym_BANG_EQ] = ACTIONS(843), + [anon_sym_TILDE] = ACTIONS(843), + [anon_sym_BANG_TILDE] = ACTIONS(843), + [anon_sym_AMP_AMP] = ACTIONS(843), + [anon_sym_PIPE_PIPE] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_PLUS_PLUS] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(843), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_PLUS_EQ] = ACTIONS(843), + [anon_sym_DASH_EQ] = ACTIONS(843), + [anon_sym_STAR_EQ] = ACTIONS(843), + [anon_sym_SLASH_EQ] = ACTIONS(843), + [anon_sym_PERCENT_EQ] = ACTIONS(843), + [anon_sym_CARET_EQ] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_AT] = ACTIONS(843), + [aux_sym_number_token1] = ACTIONS(843), + [aux_sym_number_token2] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_and] = ACTIONS(843), + [anon_sym_asort] = ACTIONS(843), + [anon_sym_asorti] = ACTIONS(843), + [anon_sym_bindtextdomain] = ACTIONS(843), + [anon_sym_compl] = ACTIONS(843), + [anon_sym_cos] = ACTIONS(843), + [anon_sym_dcgettext] = ACTIONS(843), + [anon_sym_dcngettext] = ACTIONS(843), + [anon_sym_exp] = ACTIONS(843), + [anon_sym_gensub] = ACTIONS(843), + [anon_sym_gsub] = ACTIONS(843), + [anon_sym_index] = ACTIONS(843), + [anon_sym_int] = ACTIONS(843), + [anon_sym_isarray] = ACTIONS(843), + [anon_sym_length] = ACTIONS(843), + [anon_sym_log] = ACTIONS(843), + [anon_sym_lshift] = ACTIONS(843), + [anon_sym_match] = ACTIONS(843), + [anon_sym_mktime] = ACTIONS(843), + [anon_sym_or] = ACTIONS(843), + [anon_sym_patsplit] = ACTIONS(843), + [anon_sym_rand] = ACTIONS(843), + [anon_sym_rshift] = ACTIONS(843), + [anon_sym_sin] = ACTIONS(843), + [anon_sym_split] = ACTIONS(843), + [anon_sym_sprintf] = ACTIONS(843), + [anon_sym_sqrt] = ACTIONS(843), + [anon_sym_srand] = ACTIONS(843), + [anon_sym_strftime] = ACTIONS(843), + [anon_sym_strtonum] = ACTIONS(843), + [anon_sym_sub] = ACTIONS(843), + [anon_sym_substr] = ACTIONS(843), + [anon_sym_systime] = ACTIONS(843), + [anon_sym_tolower] = ACTIONS(843), + [anon_sym_toupper] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(843), + [anon_sym_xor] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(843), + [sym_concatenating_space] = ACTIONS(845), + [sym__if_else_separator] = ACTIONS(845), }, [216] = { - [sym_identifier] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_CR_LF] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_in] = ACTIONS(828), - [sym_break_statement] = ACTIONS(828), - [sym_continue_statement] = ACTIONS(828), - [anon_sym_delete] = ACTIONS(828), - [anon_sym_exit] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_switch] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_case] = ACTIONS(828), - [anon_sym_default] = ACTIONS(828), - [anon_sym_getline] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [sym_next_statement] = ACTIONS(828), - [sym_nextfile_statement] = ACTIONS(828), - [anon_sym_print] = ACTIONS(828), - [anon_sym_printf] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_LT_EQ] = ACTIONS(828), - [anon_sym_GT_EQ] = ACTIONS(828), - [anon_sym_EQ_EQ] = ACTIONS(828), - [anon_sym_BANG_EQ] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_BANG_TILDE] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_PLUS_PLUS] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(828), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_STAR_EQ] = ACTIONS(828), - [anon_sym_SLASH_EQ] = ACTIONS(828), - [anon_sym_PERCENT_EQ] = ACTIONS(828), - [anon_sym_CARET_EQ] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [aux_sym_number_token1] = ACTIONS(828), - [aux_sym_number_token2] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [sym_concatenating_space] = ACTIONS(830), - [sym__if_else_separator] = ACTIONS(830), + [sym_identifier] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(847), + [anon_sym_CR_LF] = ACTIONS(847), + [anon_sym_if] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_while] = ACTIONS(847), + [anon_sym_do] = ACTIONS(847), + [anon_sym_for] = ACTIONS(847), + [anon_sym_in] = ACTIONS(847), + [sym_break_statement] = ACTIONS(847), + [sym_continue_statement] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_exit] = ACTIONS(847), + [anon_sym_return] = ACTIONS(847), + [anon_sym_switch] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_getline] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(847), + [sym_next_statement] = ACTIONS(847), + [sym_nextfile_statement] = ACTIONS(847), + [anon_sym_print] = ACTIONS(847), + [anon_sym_printf] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_PIPE_AMP] = ACTIONS(847), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_CARET] = ACTIONS(847), + [anon_sym_STAR_STAR] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(847), + [anon_sym_PERCENT] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_BANG_TILDE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(847), + [anon_sym_AT] = ACTIONS(847), + [aux_sym_number_token1] = ACTIONS(847), + [aux_sym_number_token2] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_and] = ACTIONS(847), + [anon_sym_asort] = ACTIONS(847), + [anon_sym_asorti] = ACTIONS(847), + [anon_sym_bindtextdomain] = ACTIONS(847), + [anon_sym_compl] = ACTIONS(847), + [anon_sym_cos] = ACTIONS(847), + [anon_sym_dcgettext] = ACTIONS(847), + [anon_sym_dcngettext] = ACTIONS(847), + [anon_sym_exp] = ACTIONS(847), + [anon_sym_gensub] = ACTIONS(847), + [anon_sym_gsub] = ACTIONS(847), + [anon_sym_index] = ACTIONS(847), + [anon_sym_int] = ACTIONS(847), + [anon_sym_isarray] = ACTIONS(847), + [anon_sym_length] = ACTIONS(847), + [anon_sym_log] = ACTIONS(847), + [anon_sym_lshift] = ACTIONS(847), + [anon_sym_match] = ACTIONS(847), + [anon_sym_mktime] = ACTIONS(847), + [anon_sym_or] = ACTIONS(847), + [anon_sym_patsplit] = ACTIONS(847), + [anon_sym_rand] = ACTIONS(847), + [anon_sym_rshift] = ACTIONS(847), + [anon_sym_sin] = ACTIONS(847), + [anon_sym_split] = ACTIONS(847), + [anon_sym_sprintf] = ACTIONS(847), + [anon_sym_sqrt] = ACTIONS(847), + [anon_sym_srand] = ACTIONS(847), + [anon_sym_strftime] = ACTIONS(847), + [anon_sym_strtonum] = ACTIONS(847), + [anon_sym_sub] = ACTIONS(847), + [anon_sym_substr] = ACTIONS(847), + [anon_sym_systime] = ACTIONS(847), + [anon_sym_tolower] = ACTIONS(847), + [anon_sym_toupper] = ACTIONS(847), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_xor] = ACTIONS(847), + [anon_sym_POUND] = ACTIONS(847), + [sym_concatenating_space] = ACTIONS(849), + [sym__if_else_separator] = ACTIONS(849), }, [217] = { - [sym_identifier] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_LF] = ACTIONS(742), - [anon_sym_CR_LF] = ACTIONS(742), - [anon_sym_if] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_while] = ACTIONS(742), - [anon_sym_do] = ACTIONS(742), - [anon_sym_for] = ACTIONS(742), - [anon_sym_in] = ACTIONS(742), - [sym_break_statement] = ACTIONS(742), - [sym_continue_statement] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(742), - [anon_sym_exit] = ACTIONS(742), - [anon_sym_return] = ACTIONS(742), - [anon_sym_switch] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_case] = ACTIONS(742), - [anon_sym_default] = ACTIONS(742), - [anon_sym_getline] = ACTIONS(742), - [anon_sym_LT] = ACTIONS(742), - [sym_next_statement] = ACTIONS(742), - [sym_nextfile_statement] = ACTIONS(742), - [anon_sym_print] = ACTIONS(742), - [anon_sym_printf] = ACTIONS(742), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_GT_GT] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_PIPE_AMP] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym_STAR_STAR] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_LT_EQ] = ACTIONS(742), - [anon_sym_GT_EQ] = ACTIONS(742), - [anon_sym_EQ_EQ] = ACTIONS(742), - [anon_sym_BANG_EQ] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_BANG_TILDE] = ACTIONS(742), - [anon_sym_AMP_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_PLUS_PLUS] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_PLUS_EQ] = ACTIONS(742), - [anon_sym_DASH_EQ] = ACTIONS(742), - [anon_sym_STAR_EQ] = ACTIONS(742), - [anon_sym_SLASH_EQ] = ACTIONS(742), - [anon_sym_PERCENT_EQ] = ACTIONS(742), - [anon_sym_CARET_EQ] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [aux_sym_number_token1] = ACTIONS(742), - [aux_sym_number_token2] = ACTIONS(742), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [sym_concatenating_space] = ACTIONS(744), + [sym_identifier] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [anon_sym_CR_LF] = ACTIONS(851), + [anon_sym_if] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(851), + [anon_sym_for] = ACTIONS(851), + [anon_sym_in] = ACTIONS(851), + [sym_break_statement] = ACTIONS(851), + [sym_continue_statement] = ACTIONS(851), + [anon_sym_delete] = ACTIONS(851), + [anon_sym_exit] = ACTIONS(851), + [anon_sym_return] = ACTIONS(851), + [anon_sym_switch] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_getline] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [sym_next_statement] = ACTIONS(851), + [sym_nextfile_statement] = ACTIONS(851), + [anon_sym_print] = ACTIONS(851), + [anon_sym_printf] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_PIPE_AMP] = ACTIONS(851), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_STAR_STAR] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_BANG_TILDE] = ACTIONS(851), + [anon_sym_AMP_AMP] = ACTIONS(851), + [anon_sym_PIPE_PIPE] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_PLUS_EQ] = ACTIONS(851), + [anon_sym_DASH_EQ] = ACTIONS(851), + [anon_sym_STAR_EQ] = ACTIONS(851), + [anon_sym_SLASH_EQ] = ACTIONS(851), + [anon_sym_PERCENT_EQ] = ACTIONS(851), + [anon_sym_CARET_EQ] = ACTIONS(851), + [anon_sym_DOLLAR] = ACTIONS(851), + [anon_sym_AT] = ACTIONS(851), + [aux_sym_number_token1] = ACTIONS(851), + [aux_sym_number_token2] = ACTIONS(851), + [anon_sym_DQUOTE] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_asort] = ACTIONS(851), + [anon_sym_asorti] = ACTIONS(851), + [anon_sym_bindtextdomain] = ACTIONS(851), + [anon_sym_compl] = ACTIONS(851), + [anon_sym_cos] = ACTIONS(851), + [anon_sym_dcgettext] = ACTIONS(851), + [anon_sym_dcngettext] = ACTIONS(851), + [anon_sym_exp] = ACTIONS(851), + [anon_sym_gensub] = ACTIONS(851), + [anon_sym_gsub] = ACTIONS(851), + [anon_sym_index] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_isarray] = ACTIONS(851), + [anon_sym_length] = ACTIONS(851), + [anon_sym_log] = ACTIONS(851), + [anon_sym_lshift] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_mktime] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_patsplit] = ACTIONS(851), + [anon_sym_rand] = ACTIONS(851), + [anon_sym_rshift] = ACTIONS(851), + [anon_sym_sin] = ACTIONS(851), + [anon_sym_split] = ACTIONS(851), + [anon_sym_sprintf] = ACTIONS(851), + [anon_sym_sqrt] = ACTIONS(851), + [anon_sym_srand] = ACTIONS(851), + [anon_sym_strftime] = ACTIONS(851), + [anon_sym_strtonum] = ACTIONS(851), + [anon_sym_sub] = ACTIONS(851), + [anon_sym_substr] = ACTIONS(851), + [anon_sym_systime] = ACTIONS(851), + [anon_sym_tolower] = ACTIONS(851), + [anon_sym_toupper] = ACTIONS(851), + [anon_sym_typeof] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(851), + [sym_concatenating_space] = ACTIONS(853), + [sym__if_else_separator] = ACTIONS(853), }, [218] = { - [sym_array_ref] = STATE(202), - [sym_namespace] = STATE(2243), - [sym_ns_qualified_name] = STATE(267), - [sym_identifier] = ACTIONS(832), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LF] = ACTIONS(680), - [anon_sym_CR_LF] = ACTIONS(680), - [anon_sym_if] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(680), - [anon_sym_while] = ACTIONS(680), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(680), - [anon_sym_in] = ACTIONS(680), - [sym_break_statement] = ACTIONS(680), - [sym_continue_statement] = ACTIONS(680), - [anon_sym_delete] = ACTIONS(680), - [anon_sym_exit] = ACTIONS(680), - [anon_sym_return] = ACTIONS(680), - [anon_sym_switch] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_getline] = ACTIONS(680), - [anon_sym_LT] = ACTIONS(834), - [sym_next_statement] = ACTIONS(680), - [sym_nextfile_statement] = ACTIONS(680), - [anon_sym_print] = ACTIONS(680), - [anon_sym_printf] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(680), - [anon_sym_PIPE_AMP] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_CARET] = ACTIONS(680), - [anon_sym_STAR_STAR] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(680), - [anon_sym_PERCENT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_BANG_TILDE] = ACTIONS(680), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_DOLLAR] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_number_token1] = ACTIONS(680), - [aux_sym_number_token2] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [sym_concatenating_space] = ACTIONS(682), + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(769), + [anon_sym_CR_LF] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym_break_statement] = ACTIONS(769), + [sym_continue_statement] = ACTIONS(769), + [anon_sym_delete] = ACTIONS(769), + [anon_sym_exit] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [sym_next_statement] = ACTIONS(769), + [sym_nextfile_statement] = ACTIONS(769), + [anon_sym_print] = ACTIONS(769), + [anon_sym_printf] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + [sym_concatenating_space] = ACTIONS(771), }, [219] = { - [sym_identifier] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_CR_LF] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [sym_break_statement] = ACTIONS(836), - [sym_continue_statement] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_exit] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_case] = ACTIONS(836), - [anon_sym_default] = ACTIONS(836), - [anon_sym_getline] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [sym_next_statement] = ACTIONS(836), - [sym_nextfile_statement] = ACTIONS(836), - [anon_sym_print] = ACTIONS(836), - [anon_sym_printf] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_PLUS_EQ] = ACTIONS(836), - [anon_sym_DASH_EQ] = ACTIONS(836), - [anon_sym_STAR_EQ] = ACTIONS(836), - [anon_sym_SLASH_EQ] = ACTIONS(836), - [anon_sym_PERCENT_EQ] = ACTIONS(836), - [anon_sym_CARET_EQ] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_AT] = ACTIONS(836), - [aux_sym_number_token1] = ACTIONS(836), - [aux_sym_number_token2] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(836), - [sym_concatenating_space] = ACTIONS(838), - [sym__if_else_separator] = ACTIONS(838), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(749), + [anon_sym_DASH_EQ] = ACTIONS(749), + [anon_sym_STAR_EQ] = ACTIONS(749), + [anon_sym_SLASH_EQ] = ACTIONS(749), + [anon_sym_PERCENT_EQ] = ACTIONS(749), + [anon_sym_CARET_EQ] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), }, [220] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_case] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(666), - [anon_sym_DASH_EQ] = ACTIONS(666), - [anon_sym_STAR_EQ] = ACTIONS(666), - [anon_sym_SLASH_EQ] = ACTIONS(666), - [anon_sym_PERCENT_EQ] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(666), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(713), + [anon_sym_DASH_EQ] = ACTIONS(713), + [anon_sym_STAR_EQ] = ACTIONS(713), + [anon_sym_SLASH_EQ] = ACTIONS(713), + [anon_sym_PERCENT_EQ] = ACTIONS(713), + [anon_sym_CARET_EQ] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__if_else_separator] = ACTIONS(733), }, [221] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(734), - [anon_sym_DASH_DASH] = ACTIONS(734), - [anon_sym_EQ] = ACTIONS(736), - [anon_sym_PLUS_EQ] = ACTIONS(736), - [anon_sym_DASH_EQ] = ACTIONS(736), - [anon_sym_STAR_EQ] = ACTIONS(736), - [anon_sym_SLASH_EQ] = ACTIONS(736), - [anon_sym_PERCENT_EQ] = ACTIONS(736), - [anon_sym_CARET_EQ] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(666), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), - [sym__if_else_separator] = ACTIONS(674), - [sym__func_call] = ACTIONS(732), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), + [anon_sym_STAR_EQ] = ACTIONS(765), + [anon_sym_SLASH_EQ] = ACTIONS(765), + [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_CARET_EQ] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), }, [222] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_CR_LF] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_in] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_delete] = ACTIONS(666), - [anon_sym_exit] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_getline] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [sym_next_statement] = ACTIONS(666), - [sym_nextfile_statement] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_printf] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_STAR_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(840), - [anon_sym_DASH_DASH] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), - [anon_sym_PLUS_EQ] = ACTIONS(842), - [anon_sym_DASH_EQ] = ACTIONS(842), - [anon_sym_STAR_EQ] = ACTIONS(842), - [anon_sym_SLASH_EQ] = ACTIONS(842), - [anon_sym_PERCENT_EQ] = ACTIONS(842), - [anon_sym_CARET_EQ] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(666), - [sym_concatenating_space] = ACTIONS(674), - [sym__func_call] = ACTIONS(776), + [sym_identifier] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [sym_break_statement] = ACTIONS(855), + [sym_continue_statement] = ACTIONS(855), + [anon_sym_delete] = ACTIONS(855), + [anon_sym_exit] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_getline] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(855), + [sym_nextfile_statement] = ACTIONS(855), + [anon_sym_print] = ACTIONS(855), + [anon_sym_printf] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_PIPE_AMP] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_BANG_TILDE] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(855), + [anon_sym_DASH_EQ] = ACTIONS(855), + [anon_sym_STAR_EQ] = ACTIONS(855), + [anon_sym_SLASH_EQ] = ACTIONS(855), + [anon_sym_PERCENT_EQ] = ACTIONS(855), + [anon_sym_CARET_EQ] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(855), + [aux_sym_number_token1] = ACTIONS(855), + [aux_sym_number_token2] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_asort] = ACTIONS(855), + [anon_sym_asorti] = ACTIONS(855), + [anon_sym_bindtextdomain] = ACTIONS(855), + [anon_sym_compl] = ACTIONS(855), + [anon_sym_cos] = ACTIONS(855), + [anon_sym_dcgettext] = ACTIONS(855), + [anon_sym_dcngettext] = ACTIONS(855), + [anon_sym_exp] = ACTIONS(855), + [anon_sym_gensub] = ACTIONS(855), + [anon_sym_gsub] = ACTIONS(855), + [anon_sym_index] = ACTIONS(855), + [anon_sym_int] = ACTIONS(855), + [anon_sym_isarray] = ACTIONS(855), + [anon_sym_length] = ACTIONS(855), + [anon_sym_log] = ACTIONS(855), + [anon_sym_lshift] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_mktime] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_patsplit] = ACTIONS(855), + [anon_sym_rand] = ACTIONS(855), + [anon_sym_rshift] = ACTIONS(855), + [anon_sym_sin] = ACTIONS(855), + [anon_sym_split] = ACTIONS(855), + [anon_sym_sprintf] = ACTIONS(855), + [anon_sym_sqrt] = ACTIONS(855), + [anon_sym_srand] = ACTIONS(855), + [anon_sym_strftime] = ACTIONS(855), + [anon_sym_strtonum] = ACTIONS(855), + [anon_sym_sub] = ACTIONS(855), + [anon_sym_substr] = ACTIONS(855), + [anon_sym_systime] = ACTIONS(855), + [anon_sym_tolower] = ACTIONS(855), + [anon_sym_toupper] = ACTIONS(855), + [anon_sym_typeof] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [sym_concatenating_space] = ACTIONS(857), + [sym__if_else_separator] = ACTIONS(857), }, [223] = { - [sym_identifier] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_CR_LF] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [sym_break_statement] = ACTIONS(844), - [sym_continue_statement] = ACTIONS(844), - [anon_sym_delete] = ACTIONS(844), - [anon_sym_exit] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_case] = ACTIONS(844), - [anon_sym_default] = ACTIONS(844), - [anon_sym_getline] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(844), - [sym_next_statement] = ACTIONS(844), - [sym_nextfile_statement] = ACTIONS(844), - [anon_sym_print] = ACTIONS(844), - [anon_sym_printf] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_PIPE_AMP] = ACTIONS(844), - [anon_sym_QMARK] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(844), - [anon_sym_PIPE_PIPE] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_EQ] = ACTIONS(844), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_AT] = ACTIONS(844), - [aux_sym_number_token1] = ACTIONS(844), - [aux_sym_number_token2] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(844), - [sym_concatenating_space] = ACTIONS(846), - [sym__if_else_separator] = ACTIONS(846), + [sym_identifier] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [sym_break_statement] = ACTIONS(859), + [sym_continue_statement] = ACTIONS(859), + [anon_sym_delete] = ACTIONS(859), + [anon_sym_exit] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_switch] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_getline] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [sym_next_statement] = ACTIONS(859), + [sym_nextfile_statement] = ACTIONS(859), + [anon_sym_print] = ACTIONS(859), + [anon_sym_printf] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_BANG_TILDE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_PERCENT_EQ] = ACTIONS(859), + [anon_sym_CARET_EQ] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(859), + [aux_sym_number_token1] = ACTIONS(859), + [aux_sym_number_token2] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_asort] = ACTIONS(859), + [anon_sym_asorti] = ACTIONS(859), + [anon_sym_bindtextdomain] = ACTIONS(859), + [anon_sym_compl] = ACTIONS(859), + [anon_sym_cos] = ACTIONS(859), + [anon_sym_dcgettext] = ACTIONS(859), + [anon_sym_dcngettext] = ACTIONS(859), + [anon_sym_exp] = ACTIONS(859), + [anon_sym_gensub] = ACTIONS(859), + [anon_sym_gsub] = ACTIONS(859), + [anon_sym_index] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_isarray] = ACTIONS(859), + [anon_sym_length] = ACTIONS(859), + [anon_sym_log] = ACTIONS(859), + [anon_sym_lshift] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mktime] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_patsplit] = ACTIONS(859), + [anon_sym_rand] = ACTIONS(859), + [anon_sym_rshift] = ACTIONS(859), + [anon_sym_sin] = ACTIONS(859), + [anon_sym_split] = ACTIONS(859), + [anon_sym_sprintf] = ACTIONS(859), + [anon_sym_sqrt] = ACTIONS(859), + [anon_sym_srand] = ACTIONS(859), + [anon_sym_strftime] = ACTIONS(859), + [anon_sym_strtonum] = ACTIONS(859), + [anon_sym_sub] = ACTIONS(859), + [anon_sym_substr] = ACTIONS(859), + [anon_sym_systime] = ACTIONS(859), + [anon_sym_tolower] = ACTIONS(859), + [anon_sym_toupper] = ACTIONS(859), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [sym_concatenating_space] = ACTIONS(861), + [sym__if_else_separator] = ACTIONS(861), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 2, - ACTIONS(814), 1, - sym_concatenating_space, - ACTIONS(812), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [69] = 2, - ACTIONS(830), 1, - sym_concatenating_space, - ACTIONS(828), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [138] = 6, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(776), 1, - sym__func_call, - ACTIONS(840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(842), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [215] = 2, - ACTIONS(822), 1, - sym_concatenating_space, - ACTIONS(820), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [284] = 2, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(778), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [353] = 2, - ACTIONS(808), 1, - sym_concatenating_space, - ACTIONS(806), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [422] = 2, - ACTIONS(846), 1, - sym_concatenating_space, - ACTIONS(844), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [491] = 4, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(810), 1, - anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 60, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [564] = 2, - ACTIONS(788), 1, - sym_concatenating_space, - ACTIONS(786), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [633] = 6, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(730), 1, - sym_concatenating_space, - ACTIONS(726), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(728), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [710] = 2, - ACTIONS(796), 1, - sym_concatenating_space, - ACTIONS(794), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [779] = 2, - ACTIONS(784), 1, - sym_concatenating_space, - ACTIONS(782), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [848] = 2, - ACTIONS(768), 1, - sym_concatenating_space, - ACTIONS(766), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [917] = 2, - ACTIONS(826), 1, - sym_concatenating_space, - ACTIONS(824), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [986] = 2, - ACTIONS(818), 1, - sym_concatenating_space, - ACTIONS(816), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1055] = 6, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(776), 1, - sym__func_call, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1132] = 2, - ACTIONS(724), 1, - sym_concatenating_space, - ACTIONS(722), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1201] = 3, - ACTIONS(850), 1, - sym_regex_flags, - ACTIONS(852), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(848), 61, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1272] = 2, - ACTIONS(792), 1, - sym_concatenating_space, - ACTIONS(790), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1341] = 6, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, - sym_concatenating_space, - ACTIONS(776), 1, - sym__func_call, - ACTIONS(770), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(772), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1418] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(854), 1, - anon_sym_LT, - ACTIONS(714), 60, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1493] = 2, - ACTIONS(838), 1, - sym_concatenating_space, - ACTIONS(836), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1562] = 3, - ACTIONS(858), 1, - sym_regex_flags, - ACTIONS(860), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(856), 61, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1633] = 5, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(674), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(734), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(736), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1708] = 3, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1779] = 2, - ACTIONS(764), 1, - sym_concatenating_space, - ACTIONS(762), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1848] = 2, - ACTIONS(800), 1, - sym_concatenating_space, - ACTIONS(798), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1917] = 2, - ACTIONS(804), 1, - sym_concatenating_space, - ACTIONS(802), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1986] = 3, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2057] = 3, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(666), 61, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2128] = 5, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(686), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2203] = 5, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(730), 1, - sym_concatenating_space, - ACTIONS(726), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(728), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2277] = 7, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(872), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(874), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(862), 46, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2355] = 11, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(880), 1, - anon_sym_QMARK, - ACTIONS(882), 1, - anon_sym_AMP_AMP, - ACTIONS(884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(872), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(886), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2441] = 4, - ACTIONS(686), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2513] = 7, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(872), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(890), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 46, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2591] = 3, - ACTIONS(860), 1, - sym_concatenating_space, - ACTIONS(892), 1, - sym_regex_flags, - ACTIONS(856), 61, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2661] = 11, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(880), 1, - anon_sym_QMARK, - ACTIONS(882), 1, - anon_sym_AMP_AMP, - ACTIONS(884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(872), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(896), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2747] = 11, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(880), 1, - anon_sym_QMARK, - ACTIONS(882), 1, - anon_sym_AMP_AMP, - ACTIONS(884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(872), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(900), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(898), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2833] = 3, - ACTIONS(852), 1, - sym_concatenating_space, - ACTIONS(902), 1, - sym_regex_flags, - ACTIONS(848), 61, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2903] = 11, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(880), 1, - anon_sym_QMARK, - ACTIONS(882), 1, - anon_sym_AMP_AMP, - ACTIONS(884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(872), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(906), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(904), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2989] = 4, - ACTIONS(674), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(734), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(736), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3061] = 9, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(882), 1, - anon_sym_AMP_AMP, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(872), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 44, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3143] = 4, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(854), 1, - anon_sym_LT, - ACTIONS(714), 60, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3215] = 8, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(872), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 45, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3295] = 5, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, - sym_concatenating_space, - ACTIONS(770), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(772), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3369] = 6, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 48, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3445] = 4, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 56, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3517] = 3, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 59, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3587] = 5, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(910), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(908), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3661] = 5, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3735] = 5, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3809] = 12, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(880), 1, - anon_sym_QMARK, - ACTIONS(882), 1, - anon_sym_AMP_AMP, - ACTIONS(884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(866), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(870), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(872), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(914), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(916), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(864), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 40, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3897] = 5, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(842), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3971] = 12, - ACTIONS(916), 1, - sym_concatenating_space, - ACTIONS(918), 1, - anon_sym_in, - ACTIONS(924), 1, - anon_sym_QMARK, - ACTIONS(934), 1, - anon_sym_AMP_AMP, - ACTIONS(936), 1, - anon_sym_PIPE_PIPE, - ACTIONS(922), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(932), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 40, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4058] = 11, - ACTIONS(900), 1, - sym_concatenating_space, - ACTIONS(918), 1, - anon_sym_in, - ACTIONS(924), 1, - anon_sym_QMARK, - ACTIONS(934), 1, - anon_sym_AMP_AMP, - ACTIONS(936), 1, - anon_sym_PIPE_PIPE, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(932), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(898), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4143] = 5, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4216] = 5, - ACTIONS(910), 1, - sym_concatenating_space, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(908), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4289] = 11, - ACTIONS(906), 1, - sym_concatenating_space, - ACTIONS(918), 1, - anon_sym_in, - ACTIONS(924), 1, - anon_sym_QMARK, - ACTIONS(934), 1, - anon_sym_AMP_AMP, - ACTIONS(936), 1, - anon_sym_PIPE_PIPE, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(932), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(904), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4374] = 3, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 59, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4443] = 4, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 56, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4514] = 4, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(842), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4585] = 6, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 48, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4660] = 8, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(918), 1, - anon_sym_in, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(932), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 45, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4739] = 7, - ACTIONS(874), 1, - sym_concatenating_space, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(932), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(862), 46, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4816] = 4, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4887] = 11, - ACTIONS(896), 1, - sym_concatenating_space, - ACTIONS(918), 1, - anon_sym_in, - ACTIONS(924), 1, - anon_sym_QMARK, - ACTIONS(934), 1, - anon_sym_AMP_AMP, - ACTIONS(936), 1, - anon_sym_PIPE_PIPE, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(932), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4972] = 9, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(918), 1, - anon_sym_in, - ACTIONS(934), 1, - anon_sym_AMP_AMP, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(932), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 44, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5053] = 4, - ACTIONS(774), 1, - sym_concatenating_space, - ACTIONS(770), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(772), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5124] = 11, - ACTIONS(886), 1, - sym_concatenating_space, - ACTIONS(918), 1, - anon_sym_in, - ACTIONS(924), 1, - anon_sym_QMARK, - ACTIONS(934), 1, - anon_sym_AMP_AMP, - ACTIONS(936), 1, - anon_sym_PIPE_PIPE, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(932), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5209] = 7, - ACTIONS(890), 1, - sym_concatenating_space, - ACTIONS(926), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(932), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(920), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 46, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5286] = 7, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - sym__func_call, - ACTIONS(666), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_COLON, - anon_sym_getline, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(686), 23, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5361] = 5, - ACTIONS(942), 1, - sym_identifier, - STATE(2231), 1, - sym_namespace, - STATE(314), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(682), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5432] = 6, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - sym__func_call, - ACTIONS(944), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(666), 23, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_COLON, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 32, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5505] = 19, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(696), 1, - anon_sym_LPAREN, - ACTIONS(700), 1, - anon_sym_SLASH, - ACTIONS(704), 1, - anon_sym_DOLLAR, - ACTIONS(706), 1, - anon_sym_AT, - ACTIONS(708), 1, - anon_sym_DQUOTE, - ACTIONS(948), 1, - sym__if_else_separator, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(340), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(702), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(330), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(505), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(946), 20, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_POUND, - [5603] = 2, - ACTIONS(718), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(720), 37, - sym_concatenating_space, - sym__func_call, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5667] = 19, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(696), 1, - anon_sym_LPAREN, - ACTIONS(700), 1, - anon_sym_SLASH, - ACTIONS(704), 1, - anon_sym_DOLLAR, - ACTIONS(706), 1, - anon_sym_AT, - ACTIONS(708), 1, - anon_sym_DQUOTE, - ACTIONS(952), 1, - sym__if_else_separator, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(340), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(702), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(330), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(506), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(950), 20, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_POUND, - [5765] = 29, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_AT, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(37), 1, - anon_sym_POUND, - ACTIONS(954), 1, - ts_builtin_sym_end, - STATE(448), 1, - sym_ns_qualified_name, - STATE(483), 1, - sym_array_ref, - STATE(519), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(1632), 1, - sym_pattern, - STATE(1693), 1, - sym_block, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(23), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(35), 2, - anon_sym_function, - anon_sym_func, - STATE(1685), 2, - sym_range_pattern, - sym__special_pattern, - ACTIONS(9), 3, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - ACTIONS(7), 4, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - STATE(302), 5, - sym_rule, - sym_directive, - sym_func_def, - sym_comment, - aux_sym_program_repeat1, - STATE(567), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(596), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [5883] = 29, - ACTIONS(956), 1, - ts_builtin_sym_end, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(967), 1, - anon_sym_LPAREN, - ACTIONS(970), 1, - anon_sym_LBRACE, - ACTIONS(973), 1, - anon_sym_getline, - ACTIONS(976), 1, - anon_sym_SLASH, - ACTIONS(982), 1, - anon_sym_BANG, - ACTIONS(988), 1, - anon_sym_DOLLAR, - ACTIONS(991), 1, - anon_sym_AT, - ACTIONS(994), 1, - aux_sym_number_token1, - ACTIONS(997), 1, - aux_sym_number_token2, - ACTIONS(1000), 1, - anon_sym_DQUOTE, - ACTIONS(1006), 1, - anon_sym_POUND, - STATE(448), 1, - sym_ns_qualified_name, - STATE(483), 1, - sym_array_ref, - STATE(519), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(1632), 1, - sym_pattern, - STATE(1693), 1, - sym_block, - STATE(2209), 1, - sym_namespace, - ACTIONS(979), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(985), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1003), 2, - anon_sym_function, - anon_sym_func, - STATE(1685), 2, - sym_range_pattern, - sym__special_pattern, - ACTIONS(964), 3, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - ACTIONS(961), 4, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - STATE(302), 5, - sym_rule, - sym_directive, - sym_func_def, - sym_comment, - aux_sym_program_repeat1, - STATE(567), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(596), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [6001] = 5, - ACTIONS(1009), 1, - sym_identifier, - STATE(2255), 1, - sym_namespace, - ACTIONS(682), 2, - sym_concatenating_space, - sym__if_else_separator, - STATE(355), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6071] = 7, - ACTIONS(1011), 1, - sym_identifier, - ACTIONS(1013), 1, - anon_sym_LT, - STATE(347), 1, - sym_ns_qualified_name, - STATE(355), 1, - sym_array_ref, - STATE(2255), 1, - sym_namespace, - ACTIONS(682), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(680), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6145] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(714), 23, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_COLON, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 34, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6213] = 6, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - sym__func_call, - ACTIONS(666), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(686), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6285] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(722), 23, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_COLON, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 34, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6353] = 5, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - sym__func_call, - ACTIONS(944), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(666), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 33, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6423] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1015), 1, - anon_sym_LBRACK, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6490] = 3, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(722), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6555] = 2, - ACTIONS(718), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(720), 36, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6618] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1015), 1, - anon_sym_LBRACK, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6687] = 4, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(944), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(666), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 33, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6754] = 3, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(714), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6819] = 5, - ACTIONS(682), 1, - sym_concatenating_space, - ACTIONS(1019), 1, - sym_identifier, - STATE(2240), 1, - sym_namespace, - STATE(367), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6888] = 2, - ACTIONS(742), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(744), 36, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6951] = 5, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(666), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(686), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7020] = 2, - ACTIONS(720), 1, - sym__if_else_separator, - ACTIONS(718), 57, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7083] = 7, - ACTIONS(682), 1, - sym__if_else_separator, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1023), 1, - anon_sym_LT, - STATE(378), 1, - sym_ns_qualified_name, - STATE(379), 1, - sym_array_ref, - STATE(2252), 1, - sym_namespace, - ACTIONS(680), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7156] = 5, - ACTIONS(682), 1, - sym__if_else_separator, - ACTIONS(1025), 1, - sym_identifier, - STATE(2252), 1, - sym_namespace, - STATE(379), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7225] = 7, - ACTIONS(682), 1, - sym_concatenating_space, - ACTIONS(1027), 1, - sym_identifier, - ACTIONS(1029), 1, - anon_sym_LT, - STATE(367), 1, - sym_array_ref, - STATE(398), 1, - sym_ns_qualified_name, - STATE(2240), 1, - sym_namespace, - ACTIONS(680), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7298] = 2, - ACTIONS(744), 1, - sym__if_else_separator, - ACTIONS(742), 57, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7361] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1015), 1, - anon_sym_LBRACK, - ACTIONS(724), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7428] = 18, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(748), 1, - anon_sym_LPAREN, - ACTIONS(752), 1, - anon_sym_SLASH, - ACTIONS(756), 1, - anon_sym_DOLLAR, - ACTIONS(758), 1, - anon_sym_AT, - ACTIONS(760), 1, - anon_sym_DQUOTE, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(206), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(754), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(196), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(524), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(946), 20, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_POUND, - [7523] = 18, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(748), 1, - anon_sym_LPAREN, - ACTIONS(752), 1, - anon_sym_SLASH, - ACTIONS(756), 1, - anon_sym_DOLLAR, - ACTIONS(758), 1, - anon_sym_AT, - ACTIONS(760), 1, - anon_sym_DQUOTE, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(206), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(754), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(196), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(523), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(950), 20, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_POUND, - [7618] = 2, - ACTIONS(802), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(804), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7680] = 2, - ACTIONS(836), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(838), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7742] = 2, - ACTIONS(816), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(818), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7804] = 2, - ACTIONS(820), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(822), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7866] = 2, - ACTIONS(762), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(764), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7928] = 4, - ACTIONS(666), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(686), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7994] = 4, - ACTIONS(666), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(686), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8060] = 2, - ACTIONS(720), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(718), 55, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8122] = 2, - ACTIONS(798), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(800), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8184] = 2, - ACTIONS(824), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(826), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8246] = 3, - ACTIONS(1015), 1, - anon_sym_LBRACK, - ACTIONS(724), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8310] = 4, - ACTIONS(1031), 1, - sym_identifier, - STATE(2225), 1, - sym_namespace, - STATE(474), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8376] = 2, - ACTIONS(722), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8438] = 3, - ACTIONS(1033), 1, - sym_regex_flags, - ACTIONS(852), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(848), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8502] = 1, - ACTIONS(718), 57, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8562] = 2, - ACTIONS(744), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(742), 55, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8624] = 2, - ACTIONS(806), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(808), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8686] = 2, - ACTIONS(782), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(784), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8748] = 3, - ACTIONS(944), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(666), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 33, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8812] = 2, - ACTIONS(812), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(814), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8874] = 2, - ACTIONS(778), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [8936] = 4, - ACTIONS(1015), 1, - anon_sym_LBRACK, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9002] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(724), 1, - sym_concatenating_space, - ACTIONS(1035), 1, - anon_sym_LBRACK, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9068] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(716), 1, - sym__if_else_separator, - ACTIONS(1037), 1, - anon_sym_LT, - ACTIONS(1039), 1, - anon_sym_LBRACK, - ACTIONS(714), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9136] = 2, - ACTIONS(766), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(768), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9198] = 2, - ACTIONS(844), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(846), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9260] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(724), 1, - sym__if_else_separator, - ACTIONS(1039), 1, - anon_sym_LBRACK, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9326] = 1, - ACTIONS(742), 57, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9386] = 3, - ACTIONS(1041), 1, - sym_regex_flags, - ACTIONS(860), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(856), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9450] = 3, - ACTIONS(1015), 1, - anon_sym_LBRACK, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9514] = 2, - ACTIONS(786), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(788), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9576] = 2, - ACTIONS(794), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(796), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9638] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(1035), 1, - anon_sym_LBRACK, - ACTIONS(714), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9704] = 2, - ACTIONS(828), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(830), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9766] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(1035), 1, - anon_sym_LBRACK, - ACTIONS(1043), 1, - anon_sym_LT, - ACTIONS(714), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9834] = 2, - ACTIONS(790), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(792), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9896] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(716), 1, - sym__if_else_separator, - ACTIONS(1039), 1, - anon_sym_LBRACK, - ACTIONS(714), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [9962] = 6, - ACTIONS(1045), 1, - sym_identifier, - ACTIONS(1047), 1, - anon_sym_LT, - STATE(418), 1, - sym_ns_qualified_name, - STATE(474), 1, - sym_array_ref, - STATE(2225), 1, - sym_namespace, - ACTIONS(680), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10032] = 2, - ACTIONS(808), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(806), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10093] = 7, - ACTIONS(890), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10164] = 3, - ACTIONS(724), 1, - sym__if_else_separator, - ACTIONS(1039), 1, - anon_sym_LBRACK, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10227] = 3, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(1035), 1, - anon_sym_LBRACK, - ACTIONS(714), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10290] = 2, - ACTIONS(764), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(762), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10351] = 5, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 47, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10418] = 7, - ACTIONS(874), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(862), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10489] = 2, - ACTIONS(720), 1, - sym_concatenating_space, - ACTIONS(718), 55, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10550] = 2, - ACTIONS(796), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(794), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10611] = 9, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1061), 1, - anon_sym_EQ, - ACTIONS(1065), 1, - sym_concatenating_space, - ACTIONS(1067), 1, - sym__func_call, - ACTIONS(1059), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1063), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 22, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10686] = 3, - ACTIONS(686), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10749] = 2, - ACTIONS(822), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(820), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10810] = 11, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(906), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(904), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10889] = 2, - ACTIONS(724), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10950] = 4, - ACTIONS(716), 1, - sym__if_else_separator, - ACTIONS(1037), 1, - anon_sym_LT, - ACTIONS(1039), 1, - anon_sym_LBRACK, - ACTIONS(714), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11015] = 3, - ACTIONS(716), 1, - sym__if_else_separator, - ACTIONS(1039), 1, - anon_sym_LBRACK, - ACTIONS(714), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11078] = 3, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1077), 1, - anon_sym_LBRACK, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11141] = 11, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(900), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(898), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11220] = 3, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(730), 1, - sym_concatenating_space, - ACTIONS(666), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11283] = 2, - ACTIONS(818), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(816), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11344] = 11, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(896), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11423] = 2, - ACTIONS(814), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(812), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11484] = 2, - ACTIONS(826), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(824), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11545] = 2, - ACTIONS(830), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(828), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11606] = 2, - ACTIONS(788), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(786), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11667] = 12, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(916), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1079), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11748] = 2, - ACTIONS(846), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(844), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11809] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1077), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LT, - ACTIONS(714), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11874] = 2, - ACTIONS(784), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(782), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11935] = 2, - ACTIONS(768), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(766), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11996] = 11, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(886), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12075] = 3, - ACTIONS(724), 1, - sym_concatenating_space, - ACTIONS(1035), 1, - anon_sym_LBRACK, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12138] = 5, - ACTIONS(910), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(908), 47, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12205] = 2, - ACTIONS(792), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(790), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12266] = 4, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(1035), 1, - anon_sym_LBRACK, - ACTIONS(1043), 1, - anon_sym_LT, - ACTIONS(714), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12331] = 2, - ACTIONS(804), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(802), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12392] = 9, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 37, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12467] = 2, - ACTIONS(800), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(798), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12528] = 8, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12601] = 6, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 41, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12670] = 4, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 49, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12735] = 3, - ACTIONS(860), 1, - sym__if_else_separator, - ACTIONS(1083), 1, - sym_regex_flags, - ACTIONS(856), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12798] = 9, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - sym__func_call, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(686), 14, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12873] = 2, - ACTIONS(838), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(836), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12934] = 3, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1077), 1, - anon_sym_LBRACK, - ACTIONS(714), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [12997] = 2, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(778), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13058] = 3, - ACTIONS(860), 1, - sym_concatenating_space, - ACTIONS(1087), 1, - sym_regex_flags, - ACTIONS(856), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13121] = 3, - ACTIONS(852), 1, - sym_concatenating_space, - ACTIONS(1089), 1, - sym_regex_flags, - ACTIONS(848), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13184] = 3, - ACTIONS(852), 1, - sym__if_else_separator, - ACTIONS(1091), 1, - sym_regex_flags, - ACTIONS(848), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13247] = 7, - ACTIONS(1093), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_LT, - STATE(314), 1, - sym_array_ref, - STATE(494), 1, - sym_ns_qualified_name, - STATE(2231), 1, - sym_namespace, - ACTIONS(680), 20, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(682), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13318] = 3, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13381] = 2, - ACTIONS(744), 1, - sym_concatenating_space, - ACTIONS(742), 55, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13442] = 8, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - sym__func_call, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1101), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 23, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13515] = 2, - ACTIONS(838), 1, - sym__if_else_separator, - ACTIONS(836), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13575] = 3, - ACTIONS(1077), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LT, - ACTIONS(714), 53, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13637] = 2, - ACTIONS(846), 1, - sym_concatenating_space, - ACTIONS(844), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13697] = 12, - ACTIONS(916), 1, - sym__if_else_separator, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1103), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13777] = 2, - ACTIONS(796), 1, - sym__if_else_separator, - ACTIONS(794), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13837] = 2, - ACTIONS(792), 1, - sym_concatenating_space, - ACTIONS(790), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13897] = 2, - ACTIONS(818), 1, - sym__if_else_separator, - ACTIONS(816), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13957] = 12, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(1109), 1, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1105), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14037] = 12, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(1113), 1, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1111), 35, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14117] = 2, - ACTIONS(774), 1, - sym_concatenating_space, - ACTIONS(666), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14177] = 2, - ACTIONS(764), 1, - sym__if_else_separator, - ACTIONS(762), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14237] = 2, - ACTIONS(846), 1, - sym__if_else_separator, - ACTIONS(844), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14297] = 2, - ACTIONS(808), 1, - sym_concatenating_space, - ACTIONS(806), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14357] = 11, - ACTIONS(896), 1, - sym_concatenating_space, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14435] = 2, - ACTIONS(804), 1, - sym_concatenating_space, - ACTIONS(802), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14495] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LT, - ACTIONS(714), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14561] = 6, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 41, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14629] = 2, - ACTIONS(784), 1, - sym__if_else_separator, - ACTIONS(782), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14689] = 2, - ACTIONS(768), 1, - sym__if_else_separator, - ACTIONS(766), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14749] = 2, - ACTIONS(814), 1, - sym__if_else_separator, - ACTIONS(812), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14809] = 11, - ACTIONS(906), 1, - sym_concatenating_space, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(904), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14887] = 2, - ACTIONS(826), 1, - sym__if_else_separator, - ACTIONS(824), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14947] = 2, - ACTIONS(838), 1, - sym_concatenating_space, - ACTIONS(836), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15007] = 2, - ACTIONS(796), 1, - sym_concatenating_space, - ACTIONS(794), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15067] = 3, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15129] = 2, - ACTIONS(784), 1, - sym_concatenating_space, - ACTIONS(782), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15189] = 7, - ACTIONS(890), 1, - sym_concatenating_space, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15259] = 8, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - sym__func_call, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(686), 14, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15331] = 2, - ACTIONS(764), 1, - sym_concatenating_space, - ACTIONS(762), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15391] = 2, - ACTIONS(826), 1, - sym_concatenating_space, - ACTIONS(824), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15451] = 12, - ACTIONS(916), 1, - sym_concatenating_space, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1135), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15531] = 8, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1061), 1, - anon_sym_EQ, - ACTIONS(1065), 1, - sym_concatenating_space, - ACTIONS(1067), 1, - sym__func_call, - ACTIONS(1059), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1063), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 22, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15603] = 2, - ACTIONS(1077), 1, - anon_sym_LBRACK, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15663] = 2, - ACTIONS(814), 1, - sym_concatenating_space, - ACTIONS(812), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15723] = 2, - ACTIONS(788), 1, - sym_concatenating_space, - ACTIONS(786), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15783] = 2, - ACTIONS(830), 1, - sym_concatenating_space, - ACTIONS(828), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15843] = 9, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 37, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15917] = 8, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [15989] = 11, - ACTIONS(886), 1, - sym_concatenating_space, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16067] = 2, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(778), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16127] = 2, - ACTIONS(768), 1, - sym_concatenating_space, - ACTIONS(766), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16187] = 4, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 49, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16251] = 5, - ACTIONS(910), 1, - sym_concatenating_space, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(908), 47, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16317] = 5, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 47, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16383] = 2, - ACTIONS(724), 1, - sym_concatenating_space, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16443] = 7, - ACTIONS(874), 1, - sym_concatenating_space, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(862), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16513] = 11, - ACTIONS(900), 1, - sym_concatenating_space, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(898), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16591] = 2, - ACTIONS(724), 1, - sym__if_else_separator, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16651] = 7, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - sym__func_call, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1101), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 23, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16721] = 2, - ACTIONS(788), 1, - sym__if_else_separator, - ACTIONS(786), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16781] = 2, - ACTIONS(830), 1, - sym__if_else_separator, - ACTIONS(828), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16841] = 3, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16903] = 2, - ACTIONS(818), 1, - sym_concatenating_space, - ACTIONS(816), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16963] = 2, - ACTIONS(1137), 1, - sym_regex_flags, - ACTIONS(848), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17023] = 2, - ACTIONS(1139), 1, - sym_regex_flags, - ACTIONS(856), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17083] = 2, - ACTIONS(800), 1, - sym_concatenating_space, - ACTIONS(798), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17143] = 2, - ACTIONS(822), 1, - sym_concatenating_space, - ACTIONS(820), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17203] = 2, - ACTIONS(1077), 1, - anon_sym_LBRACK, - ACTIONS(714), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17263] = 1, - ACTIONS(766), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17320] = 1, - ACTIONS(782), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17377] = 11, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1141), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17454] = 1, - ACTIONS(844), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17511] = 1, - ACTIONS(722), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17568] = 11, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1111), 35, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17645] = 1, - ACTIONS(812), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17702] = 7, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(686), 14, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17771] = 7, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1061), 1, - anon_sym_EQ, - ACTIONS(1065), 1, - sym_concatenating_space, - ACTIONS(1059), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1063), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 22, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17840] = 3, - ACTIONS(1143), 1, - sym_regex_flags, - ACTIONS(848), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(852), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17901] = 1, - ACTIONS(786), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17958] = 1, - ACTIONS(816), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18015] = 1, - ACTIONS(828), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18072] = 6, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1101), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 23, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18139] = 1, - ACTIONS(824), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18196] = 11, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1105), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18273] = 22, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(69), 1, - anon_sym_SLASH, - ACTIONS(75), 1, - anon_sym_DOLLAR, - ACTIONS(77), 1, - anon_sym_AT, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(698), 1, - anon_sym_LPAREN2, - ACTIONS(710), 1, - sym__if_else_separator, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(836), 1, - aux_sym_exp_list_repeat1, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(73), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - STATE(661), 2, - sym__print_args, - sym_exp_list, - ACTIONS(71), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1506), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(694), 11, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_POUND, - [18372] = 1, - ACTIONS(836), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18429] = 3, - ACTIONS(1145), 1, - sym_regex_flags, - ACTIONS(856), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(860), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18490] = 4, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LT, - ACTIONS(714), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18553] = 1, - ACTIONS(762), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18610] = 1, - ACTIONS(794), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18667] = 8, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 14, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 26, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18737] = 12, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1161), 1, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1103), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1159), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18815] = 11, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1163), 1, - anon_sym_in, - ACTIONS(1167), 1, - anon_sym_AMP_AMP, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 23, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18891] = 15, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1163), 1, - anon_sym_in, - ACTIONS(1167), 1, - anon_sym_AMP_AMP, - ACTIONS(1169), 1, - anon_sym_PIPE, - ACTIONS(1171), 1, - anon_sym_PIPE_AMP, - ACTIONS(1173), 1, - anon_sym_QMARK, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(916), 20, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18975] = 9, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 14, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(890), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19047] = 6, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 16, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 30, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19113] = 9, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(862), 14, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(874), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19185] = 5, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1101), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 23, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19249] = 12, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 1, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1103), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1177), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19327] = 12, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1183), 1, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1103), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1181), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19405] = 13, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1163), 1, - anon_sym_in, - ACTIONS(1167), 1, - anon_sym_AMP_AMP, - ACTIONS(1173), 1, - anon_sym_QMARK, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(886), 21, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19485] = 12, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1187), 1, - sym__if_else_separator, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1103), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1185), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19563] = 12, - ACTIONS(83), 1, - sym__if_else_separator, - ACTIONS(1069), 1, - anon_sym_in, - ACTIONS(1071), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_AMP_AMP, - ACTIONS(1075), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1051), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1103), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(41), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19641] = 13, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1163), 1, - anon_sym_in, - ACTIONS(1167), 1, - anon_sym_AMP_AMP, - ACTIONS(1173), 1, - anon_sym_QMARK, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(896), 21, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19721] = 21, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(246), 1, - anon_sym_SLASH, - ACTIONS(252), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - anon_sym_AT, - ACTIONS(258), 1, - anon_sym_DQUOTE, - ACTIONS(750), 1, - anon_sym_LPAREN2, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(839), 1, - aux_sym_exp_list_repeat1, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(250), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(256), 2, - aux_sym_number_token1, - aux_sym_number_token2, - STATE(781), 2, - sym__print_args, - sym_exp_list, - ACTIONS(248), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1547), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(694), 11, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_POUND, - [19817] = 13, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1163), 1, - anon_sym_in, - ACTIONS(1167), 1, - anon_sym_AMP_AMP, - ACTIONS(1173), 1, - anon_sym_QMARK, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(898), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(900), 21, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19897] = 6, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(908), 16, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(910), 30, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19963] = 10, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1163), 1, - anon_sym_in, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20037] = 13, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1163), 1, - anon_sym_in, - ACTIONS(1167), 1, - anon_sym_AMP_AMP, - ACTIONS(1173), 1, - anon_sym_QMARK, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1157), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(904), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(906), 21, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20117] = 5, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(1153), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 30, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20181] = 4, - ACTIONS(1149), 1, - anon_sym_CARET, - ACTIONS(1151), 1, - anon_sym_STAR_STAR, - ACTIONS(778), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 30, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20243] = 6, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(684), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(686), 14, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20309] = 6, - ACTIONS(1061), 1, - anon_sym_EQ, - ACTIONS(1065), 1, - sym_concatenating_space, - ACTIONS(1059), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1063), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 22, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20375] = 11, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1141), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1159), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20450] = 11, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1141), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(41), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20525] = 11, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1141), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1185), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20600] = 11, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1141), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1181), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20675] = 11, - ACTIONS(1115), 1, - anon_sym_in, - ACTIONS(1119), 1, - anon_sym_QMARK, - ACTIONS(1129), 1, - anon_sym_AMP_AMP, - ACTIONS(1131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1121), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1127), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1141), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1123), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1117), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1177), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20750] = 22, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(642), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_SLASH, - ACTIONS(648), 1, - anon_sym_DOLLAR, - ACTIONS(650), 1, - anon_sym_AT, - ACTIONS(698), 1, - anon_sym_LPAREN2, - ACTIONS(710), 1, - sym__if_else_separator, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(843), 1, - aux_sym_exp_list_repeat1, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(646), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(661), 2, - sym__print_args, - sym_exp_list, - ACTIONS(456), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(694), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1611), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [20846] = 21, - ACTIONS(258), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(654), 1, - anon_sym_SLASH, - ACTIONS(658), 1, - anon_sym_DOLLAR, - ACTIONS(660), 1, - anon_sym_AT, - ACTIONS(750), 1, - anon_sym_LPAREN2, - STATE(851), 1, - sym_ns_qualified_name, - STATE(852), 1, - aux_sym_exp_list_repeat1, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(256), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(656), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(781), 2, - sym__print_args, - sym_exp_list, - ACTIONS(372), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(694), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1658), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [20939] = 5, - ACTIONS(1189), 1, - sym_identifier, - STATE(2228), 1, - sym_namespace, - STATE(534), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 17, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(682), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20999] = 7, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1193), 1, - anon_sym_LT, - STATE(534), 1, - sym_array_ref, - STATE(536), 1, - sym_ns_qualified_name, - STATE(2228), 1, - sym_namespace, - ACTIONS(680), 16, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(682), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21063] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(722), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21120] = 5, - ACTIONS(1197), 1, - sym_identifier, - STATE(2185), 1, - sym_namespace, - STATE(550), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 17, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(682), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21179] = 7, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_LT, - STATE(550), 1, - sym_array_ref, - STATE(551), 1, - sym_ns_qualified_name, - STATE(2185), 1, - sym_namespace, - ACTIONS(680), 16, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(682), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21242] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(714), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21299] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1203), 1, - anon_sym_LT, - ACTIONS(714), 17, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21358] = 3, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(714), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21412] = 2, - ACTIONS(742), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(744), 29, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21464] = 4, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1203), 1, - anon_sym_LT, - ACTIONS(714), 17, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21520] = 3, - ACTIONS(1205), 1, - sym_regex_flags, - ACTIONS(856), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(860), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21574] = 3, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(722), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21628] = 2, - ACTIONS(718), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(720), 29, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21680] = 3, - ACTIONS(1207), 1, - sym_regex_flags, - ACTIONS(848), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(852), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21734] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1209), 1, - anon_sym_LBRACK, - ACTIONS(714), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21790] = 2, - ACTIONS(742), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(744), 29, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21842] = 2, - ACTIONS(718), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(720), 29, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21894] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1209), 1, - anon_sym_LBRACK, - ACTIONS(722), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21950] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1209), 1, - anon_sym_LBRACK, - ACTIONS(1211), 1, - anon_sym_LT, - ACTIONS(714), 17, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22008] = 5, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 17, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22065] = 2, - ACTIONS(836), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(838), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22116] = 2, - ACTIONS(782), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(784), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22167] = 2, - ACTIONS(794), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(796), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22218] = 3, - ACTIONS(1209), 1, - anon_sym_LBRACK, - ACTIONS(714), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22271] = 4, - ACTIONS(1209), 1, - anon_sym_LBRACK, - ACTIONS(1211), 1, - anon_sym_LT, - ACTIONS(714), 17, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(716), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22326] = 3, - ACTIONS(1219), 1, - sym_regex_flags, - ACTIONS(856), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(860), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22379] = 6, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(908), 15, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(910), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22438] = 2, - ACTIONS(798), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(800), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22489] = 3, - ACTIONS(1209), 1, - anon_sym_LBRACK, - ACTIONS(722), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22542] = 15, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1227), 1, - anon_sym_PIPE, - ACTIONS(1229), 1, - anon_sym_PIPE_AMP, - ACTIONS(1231), 1, - anon_sym_QMARK, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(916), 14, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22619] = 2, - ACTIONS(786), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(788), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22670] = 2, - ACTIONS(828), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(830), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22721] = 2, - ACTIONS(790), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(792), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22772] = 2, - ACTIONS(762), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(764), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22823] = 2, - ACTIONS(766), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(768), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22874] = 9, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(890), 18, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [22939] = 13, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1231), 1, - anon_sym_QMARK, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(904), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(906), 15, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23012] = 2, - ACTIONS(806), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(808), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23063] = 11, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 17, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23132] = 2, - ACTIONS(820), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(822), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23183] = 3, - ACTIONS(1065), 1, - sym_concatenating_space, - ACTIONS(666), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23236] = 13, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1231), 1, - anon_sym_QMARK, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(898), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(900), 15, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23309] = 13, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1231), 1, - anon_sym_QMARK, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(896), 15, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23382] = 2, - ACTIONS(824), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(826), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23433] = 2, - ACTIONS(812), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(814), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23484] = 2, - ACTIONS(816), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(818), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23535] = 10, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 18, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23602] = 2, - ACTIONS(786), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(788), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23653] = 3, - ACTIONS(1241), 1, - sym_regex_flags, - ACTIONS(848), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(852), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23706] = 4, - ACTIONS(666), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(684), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(674), 14, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(686), 14, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23761] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(69), 1, - anon_sym_SLASH, - ACTIONS(75), 1, - anon_sym_DOLLAR, - ACTIONS(77), 1, - anon_sym_AT, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(948), 1, - sym__if_else_separator, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(73), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(71), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(946), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1558), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [23846] = 13, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1231), 1, - anon_sym_QMARK, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(886), 15, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23919] = 2, - ACTIONS(722), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23970] = 9, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(862), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(874), 18, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24035] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(69), 1, - anon_sym_SLASH, - ACTIONS(75), 1, - anon_sym_DOLLAR, - ACTIONS(77), 1, - anon_sym_AT, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(952), 1, - sym__if_else_separator, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(73), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(71), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(950), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1560), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [24120] = 6, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(778), 15, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24179] = 2, - ACTIONS(766), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(768), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24230] = 2, - ACTIONS(778), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24281] = 3, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 26, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24334] = 2, - ACTIONS(844), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(846), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24385] = 8, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(780), 20, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24448] = 2, - ACTIONS(802), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(804), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24499] = 2, - ACTIONS(836), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(838), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24549] = 18, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(246), 1, - anon_sym_SLASH, - ACTIONS(252), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - anon_sym_AT, - ACTIONS(258), 1, - anon_sym_DQUOTE, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(250), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(256), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(248), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(950), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1619), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [24631] = 8, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(686), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1243), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(684), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [24693] = 2, - ACTIONS(844), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(846), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24743] = 2, - ACTIONS(722), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24793] = 2, - ACTIONS(816), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(818), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24843] = 2, - ACTIONS(812), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(814), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24893] = 16, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1231), 1, - anon_sym_QMARK, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1251), 1, - anon_sym_COMMA, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1255), 1, - anon_sym_PIPE_AMP, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1249), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(1247), 12, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [24971] = 15, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1231), 1, - anon_sym_QMARK, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1255), 1, - anon_sym_PIPE_AMP, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(916), 13, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [25047] = 2, - ACTIONS(828), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(830), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [25097] = 2, - ACTIONS(824), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(826), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [25147] = 7, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1259), 1, - anon_sym_LT, - STATE(173), 1, - sym_array_ref, - STATE(623), 1, - sym_ns_qualified_name, - STATE(2256), 1, - sym_namespace, - ACTIONS(682), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(680), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [25207] = 2, - ACTIONS(762), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(764), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [25257] = 2, - ACTIONS(794), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(796), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [25307] = 18, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(246), 1, - anon_sym_SLASH, - ACTIONS(252), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - anon_sym_AT, - ACTIONS(258), 1, - anon_sym_DQUOTE, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(250), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(256), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(248), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(946), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1615), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [25389] = 2, - ACTIONS(782), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(784), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [25439] = 8, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(1265), 1, - sym_concatenating_space, - ACTIONS(1261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1263), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [25500] = 7, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(674), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1267), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1269), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [25559] = 7, - ACTIONS(682), 1, - sym_concatenating_space, - ACTIONS(1271), 1, - sym_identifier, - ACTIONS(1273), 1, - anon_sym_LT, - STATE(202), 1, - sym_array_ref, - STATE(657), 1, - sym_ns_qualified_name, - STATE(2243), 1, - sym_namespace, - ACTIONS(680), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [25618] = 15, - ACTIONS(1215), 1, - anon_sym_STAR, - ACTIONS(1223), 1, - anon_sym_in, - ACTIONS(1231), 1, - anon_sym_QMARK, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1255), 1, - anon_sym_PIPE_AMP, - ACTIONS(1213), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1217), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1221), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1233), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1277), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(1275), 12, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [25693] = 8, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1243), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(684), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [25754] = 7, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(686), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1243), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(684), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [25813] = 6, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(686), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1243), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(684), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [25869] = 7, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(1265), 1, - sym_concatenating_space, - ACTIONS(1261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1263), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [25927] = 6, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(674), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1267), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1269), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [25983] = 7, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1283), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [26041] = 19, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(642), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_SLASH, - ACTIONS(648), 1, - anon_sym_DOLLAR, - ACTIONS(650), 1, - anon_sym_AT, - ACTIONS(952), 1, - sym__if_else_separator, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(646), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(456), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(950), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1688), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [26123] = 5, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [26177] = 19, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(642), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_SLASH, - ACTIONS(648), 1, - anon_sym_DOLLAR, - ACTIONS(650), 1, - anon_sym_AT, - ACTIONS(948), 1, - sym__if_else_separator, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(646), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(456), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(946), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1687), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [26259] = 7, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1291), 1, - sym_concatenating_space, - ACTIONS(1287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1289), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [26317] = 7, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1243), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(684), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [26375] = 5, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(674), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1267), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1269), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [26428] = 3, - ACTIONS(850), 1, - sym_regex_flags, - ACTIONS(852), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(848), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [26477] = 6, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1243), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(684), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [26532] = 4, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [26583] = 3, - ACTIONS(858), 1, - sym_regex_flags, - ACTIONS(860), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(856), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [26632] = 6, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1291), 1, - sym_concatenating_space, - ACTIONS(1287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1289), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [26687] = 5, - ACTIONS(686), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1243), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(684), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [26740] = 18, - ACTIONS(258), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(654), 1, - anon_sym_SLASH, - ACTIONS(658), 1, - anon_sym_DOLLAR, - ACTIONS(660), 1, - anon_sym_AT, - STATE(851), 1, - sym_ns_qualified_name, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(256), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(656), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(372), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(946), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1698), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [26819] = 18, - ACTIONS(258), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(654), 1, - anon_sym_SLASH, - ACTIONS(658), 1, - anon_sym_DOLLAR, - ACTIONS(660), 1, - anon_sym_AT, - STATE(851), 1, - sym_ns_qualified_name, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(256), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(656), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(372), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(950), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1694), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [26898] = 6, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1283), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [26953] = 6, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(1265), 1, - sym_concatenating_space, - ACTIONS(1261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1263), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [27008] = 7, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1295), 1, - anon_sym_LT, - STATE(173), 1, - sym_array_ref, - STATE(801), 1, - sym_ns_qualified_name, - STATE(2256), 1, - sym_namespace, - ACTIONS(682), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(680), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [27065] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(1297), 1, - anon_sym_LT, - ACTIONS(714), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [27118] = 11, - ACTIONS(1299), 1, - anon_sym_in, - ACTIONS(1303), 1, - anon_sym_QMARK, - ACTIONS(1313), 1, - anon_sym_AMP_AMP, - ACTIONS(1315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(906), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1311), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(904), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [27182] = 8, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(1319), 1, - sym_concatenating_space, - ACTIONS(1261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1317), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [27240] = 3, - ACTIONS(852), 1, - sym_concatenating_space, - ACTIONS(902), 1, - sym_regex_flags, - ACTIONS(848), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [27288] = 21, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(454), 1, - anon_sym_SLASH, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(843), 1, - aux_sym_exp_list_repeat1, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(460), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(662), 2, - sym__print_args, - sym_exp_list, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1611), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [27372] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2079), 2, - sym__print_args, - sym_exp_list, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1727), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [27456] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2080), 2, - sym__print_args, - sym_exp_list, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1719), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [27540] = 7, - ACTIONS(682), 1, - sym_concatenating_space, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1349), 1, - anon_sym_LT, - STATE(202), 1, - sym_array_ref, - STATE(948), 1, - sym_ns_qualified_name, - STATE(2243), 1, - sym_namespace, - ACTIONS(680), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [27596] = 11, - ACTIONS(1299), 1, - anon_sym_in, - ACTIONS(1303), 1, - anon_sym_QMARK, - ACTIONS(1313), 1, - anon_sym_AMP_AMP, - ACTIONS(1315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(896), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1311), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [27660] = 11, - ACTIONS(1299), 1, - anon_sym_in, - ACTIONS(1303), 1, - anon_sym_QMARK, - ACTIONS(1313), 1, - anon_sym_AMP_AMP, - ACTIONS(1315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(900), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1311), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(898), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [27724] = 21, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(388), 1, - anon_sym_SLASH, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(396), 1, - anon_sym_AT, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(836), 1, - aux_sym_exp_list_repeat1, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(392), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(662), 2, - sym__print_args, - sym_exp_list, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1506), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [27808] = 21, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(194), 1, - anon_sym_SLASH, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(204), 1, - anon_sym_AT, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1351), 1, - anon_sym_LPAREN, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(830), 1, - aux_sym_exp_list_repeat1, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(200), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(778), 2, - sym__print_args, - sym_exp_list, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(480), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [27892] = 5, - ACTIONS(910), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(908), 32, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [27944] = 6, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [27998] = 4, - ACTIONS(674), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1267), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1269), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [28048] = 21, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(328), 1, - anon_sym_SLASH, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(338), 1, - anon_sym_AT, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(842), 1, - aux_sym_exp_list_repeat1, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(662), 2, - sym__print_args, - sym_exp_list, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(425), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [28132] = 5, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(1265), 1, - sym_concatenating_space, - ACTIONS(1261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1263), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [28184] = 7, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(674), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1267), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1353), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [28240] = 3, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 37, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [28288] = 5, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1283), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [28340] = 4, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 34, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [28390] = 11, - ACTIONS(1299), 1, - anon_sym_in, - ACTIONS(1303), 1, - anon_sym_QMARK, - ACTIONS(1313), 1, - anon_sym_AMP_AMP, - ACTIONS(1315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(886), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1311), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [28454] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2211), 2, - sym__print_args, - sym_exp_list, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1719), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [28538] = 12, - ACTIONS(1299), 1, - anon_sym_in, - ACTIONS(1303), 1, - anon_sym_QMARK, - ACTIONS(1313), 1, - anon_sym_AMP_AMP, - ACTIONS(1315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(914), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(916), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1311), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 18, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [28604] = 3, - ACTIONS(860), 1, - sym_concatenating_space, - ACTIONS(892), 1, - sym_regex_flags, - ACTIONS(856), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [28652] = 4, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(1297), 1, - anon_sym_LT, - ACTIONS(714), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [28702] = 21, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(370), 1, - anon_sym_SLASH, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(380), 1, - anon_sym_AT, - ACTIONS(1351), 1, - anon_sym_LPAREN, - STATE(851), 1, - sym_ns_qualified_name, - STATE(852), 1, - aux_sym_exp_list_repeat1, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(778), 2, - sym__print_args, - sym_exp_list, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1658), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [28786] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2216), 2, - sym__print_args, - sym_exp_list, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1727), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [28870] = 21, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(280), 1, - anon_sym_SLASH, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(288), 1, - anon_sym_AT, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1351), 1, - anon_sym_LPAREN, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(839), 1, - aux_sym_exp_list_repeat1, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(284), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(778), 2, - sym__print_args, - sym_exp_list, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1547), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [28954] = 2, - ACTIONS(1357), 1, - sym__if_else_separator, - ACTIONS(1355), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [29000] = 2, - ACTIONS(1361), 1, - sym__if_else_separator, - ACTIONS(1359), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [29046] = 7, - ACTIONS(890), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1311), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [29102] = 9, - ACTIONS(1299), 1, - anon_sym_in, - ACTIONS(1313), 1, - anon_sym_AMP_AMP, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1311), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 22, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [29162] = 5, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1291), 1, - sym_concatenating_space, - ACTIONS(1287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1289), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [29214] = 5, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 32, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [29266] = 8, - ACTIONS(1299), 1, - anon_sym_in, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1311), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 23, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [29324] = 5, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(1243), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(746), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(684), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [29376] = 7, - ACTIONS(874), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1305), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1309), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1311), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1307), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1301), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(862), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [29432] = 2, - ACTIONS(1365), 1, - sym__if_else_separator, - ACTIONS(1363), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [29478] = 2, - ACTIONS(1369), 1, - sym__if_else_separator, - ACTIONS(1367), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [29524] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2141), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1701), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [29607] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1089), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1772), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [29690] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(984), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1819), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [29773] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2148), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1702), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [29856] = 20, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1137), 1, - sym_comment, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1377), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1452), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [29937] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(1004), 1, - sym_comment, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1002), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [30018] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1112), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1817), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [30101] = 20, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1138), 1, - sym_comment, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1377), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1450), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [30182] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1136), 1, - sym_comment, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [30263] = 7, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1413), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [30318] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1415), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - STATE(2218), 1, - sym_args, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [30401] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(883), 1, - sym_comment, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1309), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [30482] = 7, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1441), 1, - sym_concatenating_space, - ACTIONS(1287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1439), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [30537] = 6, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(674), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1267), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1353), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [30590] = 20, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(998), 1, - sym_comment, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(507), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [30671] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - STATE(2271), 1, - sym_exp_list, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1721), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [30754] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2107), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1709), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [30837] = 7, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(1245), 1, - sym__func_call, - ACTIONS(1319), 1, - sym_concatenating_space, - ACTIONS(1261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1317), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [30892] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2133), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1716), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [30975] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2120), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1726), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [31058] = 20, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, - anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(1160), 1, - sym_comment, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(568), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [31139] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2095), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1723), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [31222] = 4, - ACTIONS(1291), 1, - sym_concatenating_space, - ACTIONS(1287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1289), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [31271] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1109), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1736), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [31354] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(872), 1, - sym_comment, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1311), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [31435] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2094), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1723), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [31518] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2076), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1722), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [31601] = 12, - ACTIONS(916), 1, - sym_concatenating_space, - ACTIONS(1467), 1, - anon_sym_in, - ACTIONS(1471), 1, - anon_sym_QMARK, - ACTIONS(1481), 1, - anon_sym_AMP_AMP, - ACTIONS(1483), 1, - anon_sym_PIPE_PIPE, - ACTIONS(922), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 18, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [31666] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(1161), 1, - sym_comment, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(641), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [31747] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1107), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1748), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [31830] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1499), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - STATE(2219), 1, - sym_args, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [31913] = 4, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1283), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [31962] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2207), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1718), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [32045] = 20, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(996), 1, - sym_comment, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(512), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [32126] = 1, - ACTIONS(1367), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [32169] = 1, - ACTIONS(1363), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [32212] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2134), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1715), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [32295] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1501), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2139), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [32378] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2116), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1713), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [32461] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1105), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1786), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [32544] = 5, - ACTIONS(910), 1, - sym_concatenating_space, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(908), 32, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [32595] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(895), 1, - sym_comment, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(381), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [32676] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(1180), 1, - sym_comment, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(653), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [32757] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2071), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1709), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [32840] = 20, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, - anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(1110), 1, - sym_comment, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(578), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [32921] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1513), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2193), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [33004] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2143), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1708), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [33087] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1103), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1796), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [33170] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - STATE(2263), 1, - sym_exp_list, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1724), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [33253] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2077), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1704), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [33336] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2160), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1703), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [33419] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(950), 1, - sym_comment, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1599), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [33500] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(1029), 1, - sym_comment, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1007), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [33581] = 20, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1011), 1, - sym_comment, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1556), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [33662] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1535), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2200), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [33745] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(894), 1, - sym_comment, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(394), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [33826] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1127), 1, - sym_comment, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1628), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [33907] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(947), 1, - sym_comment, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1597), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [33988] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2164), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1705), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34071] = 20, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1015), 1, - sym_comment, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1582), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [34152] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1537), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2187), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34235] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1539), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2070), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34318] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(949), 1, - sym_comment, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1284), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [34399] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1101), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1774), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34482] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2176), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1707), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34565] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1100), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1740), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34648] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2180), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1710), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34731] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1099), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1738), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34814] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2169), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1725), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34897] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1191), 1, - sym_comment, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1762), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [34980] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2191), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1711), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35063] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(945), 1, - sym_comment, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(262), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [35144] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1097), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1730), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35227] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2197), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1714), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35310] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(943), 1, - sym_comment, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1286), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [35391] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1096), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1766), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35474] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - STATE(2210), 1, - sym_exp_list, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1720), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35557] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1577), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2171), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35640] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(941), 1, - sym_comment, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(257), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [35721] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1579), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2161), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35804] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1102), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1808), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35887] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1581), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2153), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35970] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1583), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2087), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [36053] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2137), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [36136] = 11, - ACTIONS(906), 1, - sym_concatenating_space, - ACTIONS(1467), 1, - anon_sym_in, - ACTIONS(1471), 1, - anon_sym_QMARK, - ACTIONS(1481), 1, - anon_sym_AMP_AMP, - ACTIONS(1483), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(904), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [36199] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1211), 1, - sym_comment, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1770), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [36282] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1587), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2167), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [36365] = 11, - ACTIONS(900), 1, - sym_concatenating_space, - ACTIONS(1467), 1, - anon_sym_in, - ACTIONS(1471), 1, - anon_sym_QMARK, - ACTIONS(1481), 1, - anon_sym_AMP_AMP, - ACTIONS(1483), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(898), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [36428] = 11, - ACTIONS(896), 1, - sym_concatenating_space, - ACTIONS(1467), 1, - anon_sym_in, - ACTIONS(1471), 1, - anon_sym_QMARK, - ACTIONS(1481), 1, - anon_sym_AMP_AMP, - ACTIONS(1483), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [36491] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(1204), 1, - sym_comment, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1599), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(759), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [36572] = 11, - ACTIONS(886), 1, - sym_concatenating_space, - ACTIONS(1467), 1, - anon_sym_in, - ACTIONS(1471), 1, - anon_sym_QMARK, - ACTIONS(1481), 1, - anon_sym_AMP_AMP, - ACTIONS(1483), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [36635] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2101), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1704), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [36718] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2206), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1717), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [36801] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2083), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1709), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [36884] = 7, - ACTIONS(890), 1, - sym_concatenating_space, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [36939] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1603), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2136), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [37022] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(1201), 1, - sym_comment, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1599), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(762), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [37103] = 9, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1467), 1, - anon_sym_in, - ACTIONS(1481), 1, - anon_sym_AMP_AMP, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 22, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [37162] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2123), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1723), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [37245] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, - anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(1039), 1, - sym_comment, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(463), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [37326] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2089), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1716), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [37409] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1615), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2103), 1, - sym_args, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1699), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [37492] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2073), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1702), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [37575] = 8, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1467), 1, - anon_sym_in, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 23, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [37632] = 21, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(832), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2118), 1, - sym_exp_list, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1712), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [37715] = 7, - ACTIONS(1617), 1, - sym_identifier, - ACTIONS(1619), 1, - anon_sym_LT, - STATE(314), 1, - sym_array_ref, - STATE(1269), 1, - sym_ns_qualified_name, - STATE(2231), 1, - sym_namespace, - ACTIONS(680), 10, - anon_sym_in, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - ACTIONS(682), 25, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [37770] = 1, - ACTIONS(1359), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [37813] = 6, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [37866] = 20, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(857), 1, - sym_comment, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(279), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [37947] = 1, - ACTIONS(1355), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [37990] = 4, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 34, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [38039] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, - anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(999), 1, - sym_comment, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(455), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [38120] = 3, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 37, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [38167] = 5, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1635), 1, - anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [38218] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(908), 1, - sym_comment, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1515), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [38299] = 5, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 32, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [38350] = 21, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1093), 1, - sym_comment, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1745), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [38433] = 7, - ACTIONS(874), 1, - sym_concatenating_space, - ACTIONS(1473), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1477), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1475), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(862), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [38488] = 20, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(1186), 1, - sym_comment, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(293), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [38569] = 20, - ACTIONS(212), 1, - anon_sym_POUND, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(910), 1, - sym_comment, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1511), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [38650] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1647), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1744), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [38730] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1649), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1781), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [38810] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1651), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1765), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [38890] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1653), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1788), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [38970] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(1655), 1, - anon_sym_LT, - ACTIONS(714), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [39020] = 20, - ACTIONS(1657), 1, - sym_identifier, - ACTIONS(1660), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - anon_sym_getline, - ACTIONS(1666), 1, - anon_sym_SLASH, - ACTIONS(1672), 1, - anon_sym_BANG, - ACTIONS(1678), 1, - anon_sym_DOLLAR, - ACTIONS(1681), 1, - anon_sym_AT, - ACTIONS(1684), 1, - aux_sym_number_token1, - ACTIONS(1687), 1, - aux_sym_number_token2, - ACTIONS(1690), 1, - anon_sym_DQUOTE, - STATE(797), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1669), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1675), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1749), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39100] = 3, - ACTIONS(850), 1, - sym_regex_flags, - ACTIONS(852), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(848), 36, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [39146] = 20, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1693), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_SEMI, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1403), 1, - sym_ns_qualified_name, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1775), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39226] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1697), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1812), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39306] = 4, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(1635), 1, - anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [39354] = 3, - ACTIONS(858), 1, - sym_regex_flags, - ACTIONS(860), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(856), 36, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [39400] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1699), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1737), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39480] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1701), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1810), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39560] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1703), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1773), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39640] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1705), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1806), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39720] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1761), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39800] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1709), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1805), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39880] = 20, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1711), 1, - sym_identifier, - ACTIONS(1713), 1, - anon_sym_SEMI, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1401), 1, - sym_ns_qualified_name, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1735), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [39960] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1715), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1797), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40040] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1717), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1792), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40120] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1719), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1787), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40200] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1721), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1747), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40280] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1723), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1777), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40360] = 9, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 10, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 16, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [40418] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1731), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1746), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40498] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1733), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1760), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40578] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1735), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1800), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40658] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1737), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1816), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40738] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1739), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1785), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40818] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1741), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1729), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40898] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1743), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [40978] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1754), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41058] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1747), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1734), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41138] = 20, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_SEMI, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1405), 1, - sym_ns_qualified_name, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1798), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41218] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1732), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41298] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1755), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1799), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41378] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1757), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1818), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41458] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1759), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1739), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41538] = 20, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(194), 1, - anon_sym_SLASH, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(204), 1, - anon_sym_AT, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(797), 1, - aux_sym_exp_list_repeat1, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(200), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(490), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41618] = 4, - ACTIONS(1767), 1, - sym__if_else_separator, - ACTIONS(1763), 2, - anon_sym_GT, - anon_sym_GT_GT, - ACTIONS(1765), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1761), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [41666] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(797), 1, - aux_sym_exp_list_repeat1, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1700), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41746] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1801), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41826] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1771), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1780), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [41906] = 5, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(674), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1267), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1353), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [41956] = 20, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(388), 1, - anon_sym_SLASH, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(396), 1, - anon_sym_AT, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(797), 1, - aux_sym_exp_list_repeat1, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(392), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1529), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [42036] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1039), 1, - anon_sym_LBRACK, - ACTIONS(1775), 1, - sym__if_else_separator, - ACTIONS(1773), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [42084] = 8, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1777), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1781), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 10, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 17, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [42140] = 20, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(280), 1, - anon_sym_SLASH, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(288), 1, - anon_sym_AT, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(797), 1, - aux_sym_exp_list_repeat1, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(284), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1549), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [42220] = 6, - ACTIONS(670), 1, - anon_sym_LBRACK, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(1319), 1, - sym_concatenating_space, - ACTIONS(1261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1317), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [42272] = 10, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(684), 1, - anon_sym_COLON, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(686), 5, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_in, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [42332] = 20, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(328), 1, - anon_sym_SLASH, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(338), 1, - anon_sym_AT, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(797), 1, - aux_sym_exp_list_repeat1, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(424), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [42412] = 20, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(454), 1, - anon_sym_SLASH, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(464), 1, - anon_sym_AT, - STATE(689), 1, - sym_ns_qualified_name, - STATE(797), 1, - aux_sym_exp_list_repeat1, - STATE(840), 1, - sym_array_ref, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(460), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1612), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [42492] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1783), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1750), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [42572] = 20, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1785), 1, - sym_identifier, - ACTIONS(1787), 1, - anon_sym_SEMI, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1399), 1, - sym_ns_qualified_name, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1803), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [42652] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1789), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1811), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [42732] = 20, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1791), 1, - sym_identifier, - ACTIONS(1793), 1, - anon_sym_SEMI, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1394), 1, - sym_ns_qualified_name, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1782), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [42812] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1795), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1728), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [42892] = 6, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1413), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [42944] = 20, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1797), 1, - sym_identifier, - ACTIONS(1799), 1, - anon_sym_SEMI, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1395), 1, - sym_ns_qualified_name, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1741), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [43024] = 6, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - sym__func_call, - ACTIONS(1441), 1, - sym_concatenating_space, - ACTIONS(1287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1439), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [43076] = 20, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(370), 1, - anon_sym_SLASH, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(380), 1, - anon_sym_AT, - STATE(797), 1, - aux_sym_exp_list_repeat1, - STATE(851), 1, - sym_ns_qualified_name, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1645), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [43156] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1801), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1751), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [43236] = 20, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_RPAREN, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1753), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [43316] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1074), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [43391] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1472), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [43466] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(282), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [43541] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1508), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [43616] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(343), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [43691] = 19, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(370), 1, - anon_sym_SLASH, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(380), 1, - anon_sym_AT, - STATE(851), 1, - sym_ns_qualified_name, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1540), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [43768] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1519), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [43843] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1521), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [43918] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1522), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [43993] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, - anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(553), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44068] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1523), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44143] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1525), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44218] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1486), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44293] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1526), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44368] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1533), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44443] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(359), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44518] = 19, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1805), 1, - sym_identifier, - STATE(199), 1, - sym_ns_qualified_name, - STATE(254), 1, - sym_array_ref, - STATE(258), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(374), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1833), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [44595] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1313), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44670] = 19, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(370), 1, - anon_sym_SLASH, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(380), 1, - anon_sym_AT, - STATE(851), 1, - sym_ns_qualified_name, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1627), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [44747] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(370), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44822] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(369), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44897] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(409), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [44972] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(414), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45047] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(404), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45122] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(403), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45197] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(402), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45272] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(400), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45347] = 19, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(370), 1, - anon_sym_SLASH, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(380), 1, - anon_sym_AT, - STATE(851), 1, - sym_ns_qualified_name, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1537), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [45424] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1310), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45499] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(327), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45574] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1298), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45649] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1308), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45724] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(365), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45799] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1307), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45874] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1303), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [45949] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1302), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46024] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1301), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46099] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(346), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46174] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1372), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46249] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(384), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46324] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(376), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46399] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, - anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(452), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46474] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1319), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46549] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, - anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(447), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46624] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(256), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46699] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(275), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46774] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(195), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46849] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(272), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46924] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(271), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [46999] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(270), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47074] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(268), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47149] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(266), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47224] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(228), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47299] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1509), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47374] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, - anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(442), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47449] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1512), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47524] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1295), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47599] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(294), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47674] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1294), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47749] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1291), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47824] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1292), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47899] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1001), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [47974] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1290), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48049] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1289), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48124] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1288), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48199] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1664), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48274] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1815), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [48351] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(291), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48426] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(287), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48501] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(286), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48576] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(284), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48651] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(283), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48726] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(228), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48801] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(280), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48876] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(288), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [48951] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(259), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [49026] = 5, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1441), 1, - sym_concatenating_space, - ACTIONS(1287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1439), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [49075] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1660), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [49150] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1789), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [49227] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1779), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [49304] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1784), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [49381] = 3, - ACTIONS(1807), 2, - anon_sym_GT, - anon_sym_GT_GT, - ACTIONS(1809), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1761), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [49426] = 19, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1811), 1, - anon_sym_AT, - STATE(448), 1, - sym_ns_qualified_name, - STATE(483), 1, - sym_array_ref, - STATE(519), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(23), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(567), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(598), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [49503] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1783), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [49580] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1287), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [49655] = 19, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1813), 1, - sym_identifier, - STATE(444), 1, - sym_ns_qualified_name, - STATE(482), 1, - sym_array_ref, - STATE(518), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(576), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1827), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [49732] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(261), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [49807] = 19, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1811), 1, - anon_sym_AT, - STATE(448), 1, - sym_ns_qualified_name, - STATE(483), 1, - sym_array_ref, - STATE(519), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(23), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(567), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(597), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [49884] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1285), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [49959] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1655), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [50034] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(264), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [50109] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1815), 1, - sym_identifier, - STATE(610), 1, - sym_ns_qualified_name, - STATE(611), 1, - sym_array_ref, - STATE(626), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1418), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1823), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [50186] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1596), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [50261] = 4, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(1655), 1, - anon_sym_LT, - ACTIONS(714), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [50308] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1283), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [50383] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1598), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [50458] = 19, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1811), 1, - anon_sym_AT, - STATE(448), 1, - sym_ns_qualified_name, - STATE(483), 1, - sym_array_ref, - STATE(519), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(23), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(567), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(608), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [50535] = 19, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(280), 1, - anon_sym_SLASH, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(288), 1, - anon_sym_AT, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(284), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1540), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [50612] = 19, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(280), 1, - anon_sym_SLASH, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(288), 1, - anon_sym_AT, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(284), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1551), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [50689] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(225), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [50764] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1600), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [50839] = 19, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(280), 1, - anon_sym_SLASH, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(288), 1, - anon_sym_AT, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(284), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1537), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [50916] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(965), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [50991] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(968), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51066] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(195), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51141] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(978), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51216] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(980), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51291] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(991), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51366] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(993), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51441] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(995), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51516] = 7, - ACTIONS(874), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1819), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1825), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1821), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(862), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [51569] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, + [224] = { + [sym_identifier] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_CR_LF] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_do] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [sym_break_statement] = ACTIONS(863), + [sym_continue_statement] = ACTIONS(863), + [anon_sym_delete] = ACTIONS(863), + [anon_sym_exit] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_getline] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [sym_next_statement] = ACTIONS(863), + [sym_nextfile_statement] = ACTIONS(863), + [anon_sym_print] = ACTIONS(863), + [anon_sym_printf] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_TILDE] = ACTIONS(863), + [anon_sym_BANG_TILDE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS_PLUS] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(863), + [anon_sym_DASH_EQ] = ACTIONS(863), + [anon_sym_STAR_EQ] = ACTIONS(863), + [anon_sym_SLASH_EQ] = ACTIONS(863), + [anon_sym_PERCENT_EQ] = ACTIONS(863), + [anon_sym_CARET_EQ] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_AT] = ACTIONS(863), + [aux_sym_number_token1] = ACTIONS(863), + [aux_sym_number_token2] = ACTIONS(863), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_asort] = ACTIONS(863), + [anon_sym_asorti] = ACTIONS(863), + [anon_sym_bindtextdomain] = ACTIONS(863), + [anon_sym_compl] = ACTIONS(863), + [anon_sym_cos] = ACTIONS(863), + [anon_sym_dcgettext] = ACTIONS(863), + [anon_sym_dcngettext] = ACTIONS(863), + [anon_sym_exp] = ACTIONS(863), + [anon_sym_gensub] = ACTIONS(863), + [anon_sym_gsub] = ACTIONS(863), + [anon_sym_index] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_isarray] = ACTIONS(863), + [anon_sym_length] = ACTIONS(863), + [anon_sym_log] = ACTIONS(863), + [anon_sym_lshift] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mktime] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_patsplit] = ACTIONS(863), + [anon_sym_rand] = ACTIONS(863), + [anon_sym_rshift] = ACTIONS(863), + [anon_sym_sin] = ACTIONS(863), + [anon_sym_split] = ACTIONS(863), + [anon_sym_sprintf] = ACTIONS(863), + [anon_sym_sqrt] = ACTIONS(863), + [anon_sym_srand] = ACTIONS(863), + [anon_sym_strftime] = ACTIONS(863), + [anon_sym_strtonum] = ACTIONS(863), + [anon_sym_sub] = ACTIONS(863), + [anon_sym_substr] = ACTIONS(863), + [anon_sym_systime] = ACTIONS(863), + [anon_sym_tolower] = ACTIONS(863), + [anon_sym_toupper] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(863), + [sym_concatenating_space] = ACTIONS(865), + [sym__if_else_separator] = ACTIONS(865), + }, + [225] = { + [sym_identifier] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_CR_LF] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_do] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_in] = ACTIONS(867), + [sym_break_statement] = ACTIONS(867), + [sym_continue_statement] = ACTIONS(867), + [anon_sym_delete] = ACTIONS(867), + [anon_sym_exit] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_getline] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [sym_next_statement] = ACTIONS(867), + [sym_nextfile_statement] = ACTIONS(867), + [anon_sym_print] = ACTIONS(867), + [anon_sym_printf] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_PIPE_AMP] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_STAR_STAR] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_BANG_TILDE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(867), + [anon_sym_PIPE_PIPE] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_PLUS_EQ] = ACTIONS(867), + [anon_sym_DASH_EQ] = ACTIONS(867), + [anon_sym_STAR_EQ] = ACTIONS(867), + [anon_sym_SLASH_EQ] = ACTIONS(867), + [anon_sym_PERCENT_EQ] = ACTIONS(867), + [anon_sym_CARET_EQ] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [aux_sym_number_token1] = ACTIONS(867), + [aux_sym_number_token2] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_asort] = ACTIONS(867), + [anon_sym_asorti] = ACTIONS(867), + [anon_sym_bindtextdomain] = ACTIONS(867), + [anon_sym_compl] = ACTIONS(867), + [anon_sym_cos] = ACTIONS(867), + [anon_sym_dcgettext] = ACTIONS(867), + [anon_sym_dcngettext] = ACTIONS(867), + [anon_sym_exp] = ACTIONS(867), + [anon_sym_gensub] = ACTIONS(867), + [anon_sym_gsub] = ACTIONS(867), + [anon_sym_index] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_isarray] = ACTIONS(867), + [anon_sym_length] = ACTIONS(867), + [anon_sym_log] = ACTIONS(867), + [anon_sym_lshift] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mktime] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_patsplit] = ACTIONS(867), + [anon_sym_rand] = ACTIONS(867), + [anon_sym_rshift] = ACTIONS(867), + [anon_sym_sin] = ACTIONS(867), + [anon_sym_split] = ACTIONS(867), + [anon_sym_sprintf] = ACTIONS(867), + [anon_sym_sqrt] = ACTIONS(867), + [anon_sym_srand] = ACTIONS(867), + [anon_sym_strftime] = ACTIONS(867), + [anon_sym_strtonum] = ACTIONS(867), + [anon_sym_sub] = ACTIONS(867), + [anon_sym_substr] = ACTIONS(867), + [anon_sym_systime] = ACTIONS(867), + [anon_sym_tolower] = ACTIONS(867), + [anon_sym_toupper] = ACTIONS(867), + [anon_sym_typeof] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + [sym_concatenating_space] = ACTIONS(869), + [sym__if_else_separator] = ACTIONS(869), + }, + [226] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_PLUS_EQ] = ACTIONS(745), + [anon_sym_DASH_EQ] = ACTIONS(745), + [anon_sym_STAR_EQ] = ACTIONS(745), + [anon_sym_SLASH_EQ] = ACTIONS(745), + [anon_sym_PERCENT_EQ] = ACTIONS(745), + [anon_sym_CARET_EQ] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(747), + [sym__if_else_separator] = ACTIONS(733), + }, + [227] = { + [sym_identifier] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_CR_LF] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_in] = ACTIONS(811), + [sym_break_statement] = ACTIONS(871), + [sym_continue_statement] = ACTIONS(871), + [anon_sym_delete] = ACTIONS(871), + [anon_sym_exit] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_switch] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_getline] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(871), + [sym_nextfile_statement] = ACTIONS(871), + [anon_sym_print] = ACTIONS(871), + [anon_sym_printf] = ACTIONS(871), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_QMARK] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_BANG_TILDE] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym_EQ] = ACTIONS(871), + [anon_sym_PLUS_EQ] = ACTIONS(871), + [anon_sym_DASH_EQ] = ACTIONS(871), + [anon_sym_STAR_EQ] = ACTIONS(871), + [anon_sym_SLASH_EQ] = ACTIONS(871), + [anon_sym_PERCENT_EQ] = ACTIONS(871), + [anon_sym_CARET_EQ] = ACTIONS(871), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_AT] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(871), + [aux_sym_number_token2] = ACTIONS(871), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_asort] = ACTIONS(871), + [anon_sym_asorti] = ACTIONS(871), + [anon_sym_bindtextdomain] = ACTIONS(871), + [anon_sym_compl] = ACTIONS(871), + [anon_sym_cos] = ACTIONS(871), + [anon_sym_dcgettext] = ACTIONS(871), + [anon_sym_dcngettext] = ACTIONS(871), + [anon_sym_exp] = ACTIONS(871), + [anon_sym_gensub] = ACTIONS(871), + [anon_sym_gsub] = ACTIONS(871), + [anon_sym_index] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_isarray] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_log] = ACTIONS(871), + [anon_sym_lshift] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mktime] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_patsplit] = ACTIONS(871), + [anon_sym_rand] = ACTIONS(871), + [anon_sym_rshift] = ACTIONS(871), + [anon_sym_sin] = ACTIONS(871), + [anon_sym_split] = ACTIONS(871), + [anon_sym_sprintf] = ACTIONS(871), + [anon_sym_sqrt] = ACTIONS(871), + [anon_sym_srand] = ACTIONS(871), + [anon_sym_strftime] = ACTIONS(871), + [anon_sym_strtonum] = ACTIONS(871), + [anon_sym_sub] = ACTIONS(871), + [anon_sym_substr] = ACTIONS(871), + [anon_sym_systime] = ACTIONS(871), + [anon_sym_tolower] = ACTIONS(871), + [anon_sym_toupper] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_POUND] = ACTIONS(871), + [sym_concatenating_space] = ACTIONS(875), + [sym__if_else_separator] = ACTIONS(875), + }, + [228] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(739), + [anon_sym_PLUS_EQ] = ACTIONS(739), + [anon_sym_DASH_EQ] = ACTIONS(739), + [anon_sym_STAR_EQ] = ACTIONS(739), + [anon_sym_SLASH_EQ] = ACTIONS(739), + [anon_sym_PERCENT_EQ] = ACTIONS(739), + [anon_sym_CARET_EQ] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + [sym__if_else_separator] = ACTIONS(733), + }, + [229] = { + [sym_identifier] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(877), + [anon_sym_CR_LF] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [sym_break_statement] = ACTIONS(877), + [sym_continue_statement] = ACTIONS(877), + [anon_sym_delete] = ACTIONS(877), + [anon_sym_exit] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_switch] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_getline] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [sym_next_statement] = ACTIONS(877), + [sym_nextfile_statement] = ACTIONS(877), + [anon_sym_print] = ACTIONS(877), + [anon_sym_printf] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_GT_GT] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_PLUS_EQ] = ACTIONS(877), + [anon_sym_DASH_EQ] = ACTIONS(877), + [anon_sym_STAR_EQ] = ACTIONS(877), + [anon_sym_SLASH_EQ] = ACTIONS(877), + [anon_sym_PERCENT_EQ] = ACTIONS(877), + [anon_sym_CARET_EQ] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_AT] = ACTIONS(877), + [aux_sym_number_token1] = ACTIONS(877), + [aux_sym_number_token2] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_asort] = ACTIONS(877), + [anon_sym_asorti] = ACTIONS(877), + [anon_sym_bindtextdomain] = ACTIONS(877), + [anon_sym_compl] = ACTIONS(877), + [anon_sym_cos] = ACTIONS(877), + [anon_sym_dcgettext] = ACTIONS(877), + [anon_sym_dcngettext] = ACTIONS(877), + [anon_sym_exp] = ACTIONS(877), + [anon_sym_gensub] = ACTIONS(877), + [anon_sym_gsub] = ACTIONS(877), + [anon_sym_index] = ACTIONS(877), + [anon_sym_int] = ACTIONS(877), + [anon_sym_isarray] = ACTIONS(877), + [anon_sym_length] = ACTIONS(877), + [anon_sym_log] = ACTIONS(877), + [anon_sym_lshift] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mktime] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_patsplit] = ACTIONS(877), + [anon_sym_rand] = ACTIONS(877), + [anon_sym_rshift] = ACTIONS(877), + [anon_sym_sin] = ACTIONS(877), + [anon_sym_split] = ACTIONS(877), + [anon_sym_sprintf] = ACTIONS(877), + [anon_sym_sqrt] = ACTIONS(877), + [anon_sym_srand] = ACTIONS(877), + [anon_sym_strftime] = ACTIONS(877), + [anon_sym_strtonum] = ACTIONS(877), + [anon_sym_sub] = ACTIONS(877), + [anon_sym_substr] = ACTIONS(877), + [anon_sym_systime] = ACTIONS(877), + [anon_sym_tolower] = ACTIONS(877), + [anon_sym_toupper] = ACTIONS(877), + [anon_sym_typeof] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [sym_concatenating_space] = ACTIONS(879), + [sym__if_else_separator] = ACTIONS(879), + }, + [230] = { + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(749), + [anon_sym_DASH_EQ] = ACTIONS(749), + [anon_sym_STAR_EQ] = ACTIONS(749), + [anon_sym_SLASH_EQ] = ACTIONS(749), + [anon_sym_PERCENT_EQ] = ACTIONS(749), + [anon_sym_CARET_EQ] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), + }, + [231] = { + [sym_identifier] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(881), + [anon_sym_CR_LF] = ACTIONS(881), + [anon_sym_if] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_while] = ACTIONS(881), + [anon_sym_do] = ACTIONS(881), + [anon_sym_for] = ACTIONS(881), + [anon_sym_in] = ACTIONS(881), + [sym_break_statement] = ACTIONS(881), + [sym_continue_statement] = ACTIONS(881), + [anon_sym_delete] = ACTIONS(881), + [anon_sym_exit] = ACTIONS(881), + [anon_sym_return] = ACTIONS(881), + [anon_sym_switch] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_getline] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [sym_next_statement] = ACTIONS(881), + [sym_nextfile_statement] = ACTIONS(881), + [anon_sym_print] = ACTIONS(881), + [anon_sym_printf] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_GT_GT] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_PIPE_AMP] = ACTIONS(881), + [anon_sym_QMARK] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(881), + [anon_sym_STAR_STAR] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(881), + [anon_sym_PERCENT] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_AMP_AMP] = ACTIONS(881), + [anon_sym_PIPE_PIPE] = ACTIONS(881), + [anon_sym_BANG] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(881), + [anon_sym_DASH_DASH] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(881), + [anon_sym_PLUS_EQ] = ACTIONS(881), + [anon_sym_DASH_EQ] = ACTIONS(881), + [anon_sym_STAR_EQ] = ACTIONS(881), + [anon_sym_SLASH_EQ] = ACTIONS(881), + [anon_sym_PERCENT_EQ] = ACTIONS(881), + [anon_sym_CARET_EQ] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(881), + [aux_sym_number_token1] = ACTIONS(881), + [aux_sym_number_token2] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_asort] = ACTIONS(881), + [anon_sym_asorti] = ACTIONS(881), + [anon_sym_bindtextdomain] = ACTIONS(881), + [anon_sym_compl] = ACTIONS(881), + [anon_sym_cos] = ACTIONS(881), + [anon_sym_dcgettext] = ACTIONS(881), + [anon_sym_dcngettext] = ACTIONS(881), + [anon_sym_exp] = ACTIONS(881), + [anon_sym_gensub] = ACTIONS(881), + [anon_sym_gsub] = ACTIONS(881), + [anon_sym_index] = ACTIONS(881), + [anon_sym_int] = ACTIONS(881), + [anon_sym_isarray] = ACTIONS(881), + [anon_sym_length] = ACTIONS(881), + [anon_sym_log] = ACTIONS(881), + [anon_sym_lshift] = ACTIONS(881), + [anon_sym_match] = ACTIONS(881), + [anon_sym_mktime] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_patsplit] = ACTIONS(881), + [anon_sym_rand] = ACTIONS(881), + [anon_sym_rshift] = ACTIONS(881), + [anon_sym_sin] = ACTIONS(881), + [anon_sym_split] = ACTIONS(881), + [anon_sym_sprintf] = ACTIONS(881), + [anon_sym_sqrt] = ACTIONS(881), + [anon_sym_srand] = ACTIONS(881), + [anon_sym_strftime] = ACTIONS(881), + [anon_sym_strtonum] = ACTIONS(881), + [anon_sym_sub] = ACTIONS(881), + [anon_sym_substr] = ACTIONS(881), + [anon_sym_systime] = ACTIONS(881), + [anon_sym_tolower] = ACTIONS(881), + [anon_sym_toupper] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(881), + [sym_concatenating_space] = ACTIONS(883), + [sym__if_else_separator] = ACTIONS(883), + }, + [232] = { + [sym_identifier] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(885), + [anon_sym_CR_LF] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [anon_sym_do] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_in] = ACTIONS(885), + [sym_break_statement] = ACTIONS(885), + [sym_continue_statement] = ACTIONS(885), + [anon_sym_delete] = ACTIONS(885), + [anon_sym_exit] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_getline] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [sym_next_statement] = ACTIONS(885), + [sym_nextfile_statement] = ACTIONS(885), + [anon_sym_print] = ACTIONS(885), + [anon_sym_printf] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_PIPE_AMP] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_STAR_STAR] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_BANG_TILDE] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(885), + [anon_sym_PIPE_PIPE] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_PLUS_EQ] = ACTIONS(885), + [anon_sym_DASH_EQ] = ACTIONS(885), + [anon_sym_STAR_EQ] = ACTIONS(885), + [anon_sym_SLASH_EQ] = ACTIONS(885), + [anon_sym_PERCENT_EQ] = ACTIONS(885), + [anon_sym_CARET_EQ] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(885), + [aux_sym_number_token1] = ACTIONS(885), + [aux_sym_number_token2] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_asort] = ACTIONS(885), + [anon_sym_asorti] = ACTIONS(885), + [anon_sym_bindtextdomain] = ACTIONS(885), + [anon_sym_compl] = ACTIONS(885), + [anon_sym_cos] = ACTIONS(885), + [anon_sym_dcgettext] = ACTIONS(885), + [anon_sym_dcngettext] = ACTIONS(885), + [anon_sym_exp] = ACTIONS(885), + [anon_sym_gensub] = ACTIONS(885), + [anon_sym_gsub] = ACTIONS(885), + [anon_sym_index] = ACTIONS(885), + [anon_sym_int] = ACTIONS(885), + [anon_sym_isarray] = ACTIONS(885), + [anon_sym_length] = ACTIONS(885), + [anon_sym_log] = ACTIONS(885), + [anon_sym_lshift] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mktime] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_patsplit] = ACTIONS(885), + [anon_sym_rand] = ACTIONS(885), + [anon_sym_rshift] = ACTIONS(885), + [anon_sym_sin] = ACTIONS(885), + [anon_sym_split] = ACTIONS(885), + [anon_sym_sprintf] = ACTIONS(885), + [anon_sym_sqrt] = ACTIONS(885), + [anon_sym_srand] = ACTIONS(885), + [anon_sym_strftime] = ACTIONS(885), + [anon_sym_strtonum] = ACTIONS(885), + [anon_sym_sub] = ACTIONS(885), + [anon_sym_substr] = ACTIONS(885), + [anon_sym_systime] = ACTIONS(885), + [anon_sym_tolower] = ACTIONS(885), + [anon_sym_toupper] = ACTIONS(885), + [anon_sym_typeof] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(885), + [sym_concatenating_space] = ACTIONS(887), + [sym__if_else_separator] = ACTIONS(887), + }, + [233] = { + [sym_identifier] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(889), + [anon_sym_CR_LF] = ACTIONS(889), + [anon_sym_if] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_while] = ACTIONS(889), + [anon_sym_do] = ACTIONS(889), + [anon_sym_for] = ACTIONS(889), + [anon_sym_in] = ACTIONS(889), + [sym_break_statement] = ACTIONS(889), + [sym_continue_statement] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_exit] = ACTIONS(889), + [anon_sym_return] = ACTIONS(889), + [anon_sym_switch] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_getline] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(889), + [sym_next_statement] = ACTIONS(889), + [sym_nextfile_statement] = ACTIONS(889), + [anon_sym_print] = ACTIONS(889), + [anon_sym_printf] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_GT_GT] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_STAR_STAR] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(889), + [anon_sym_BANG_TILDE] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_DASH_DASH] = ACTIONS(889), + [anon_sym_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(889), + [aux_sym_number_token1] = ACTIONS(889), + [aux_sym_number_token2] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_asort] = ACTIONS(889), + [anon_sym_asorti] = ACTIONS(889), + [anon_sym_bindtextdomain] = ACTIONS(889), + [anon_sym_compl] = ACTIONS(889), + [anon_sym_cos] = ACTIONS(889), + [anon_sym_dcgettext] = ACTIONS(889), + [anon_sym_dcngettext] = ACTIONS(889), + [anon_sym_exp] = ACTIONS(889), + [anon_sym_gensub] = ACTIONS(889), + [anon_sym_gsub] = ACTIONS(889), + [anon_sym_index] = ACTIONS(889), + [anon_sym_int] = ACTIONS(889), + [anon_sym_isarray] = ACTIONS(889), + [anon_sym_length] = ACTIONS(889), + [anon_sym_log] = ACTIONS(889), + [anon_sym_lshift] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_mktime] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_patsplit] = ACTIONS(889), + [anon_sym_rand] = ACTIONS(889), + [anon_sym_rshift] = ACTIONS(889), + [anon_sym_sin] = ACTIONS(889), + [anon_sym_split] = ACTIONS(889), + [anon_sym_sprintf] = ACTIONS(889), + [anon_sym_sqrt] = ACTIONS(889), + [anon_sym_srand] = ACTIONS(889), + [anon_sym_strftime] = ACTIONS(889), + [anon_sym_strtonum] = ACTIONS(889), + [anon_sym_sub] = ACTIONS(889), + [anon_sym_substr] = ACTIONS(889), + [anon_sym_systime] = ACTIONS(889), + [anon_sym_tolower] = ACTIONS(889), + [anon_sym_toupper] = ACTIONS(889), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(889), + [sym_concatenating_space] = ACTIONS(891), + [sym__if_else_separator] = ACTIONS(891), + }, + [234] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_DASH_DASH] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(713), + [anon_sym_DASH_EQ] = ACTIONS(713), + [anon_sym_STAR_EQ] = ACTIONS(713), + [anon_sym_SLASH_EQ] = ACTIONS(713), + [anon_sym_PERCENT_EQ] = ACTIONS(713), + [anon_sym_CARET_EQ] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + }, + [235] = { + [sym_identifier] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(893), + [anon_sym_CR_LF] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(811), + [sym_break_statement] = ACTIONS(893), + [sym_continue_statement] = ACTIONS(893), + [anon_sym_delete] = ACTIONS(893), + [anon_sym_exit] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_switch] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_getline] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(893), + [sym_nextfile_statement] = ACTIONS(893), + [anon_sym_print] = ACTIONS(893), + [anon_sym_printf] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_QMARK] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_BANG_TILDE] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(893), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_AT] = ACTIONS(893), + [aux_sym_number_token1] = ACTIONS(893), + [aux_sym_number_token2] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_asort] = ACTIONS(893), + [anon_sym_asorti] = ACTIONS(893), + [anon_sym_bindtextdomain] = ACTIONS(893), + [anon_sym_compl] = ACTIONS(893), + [anon_sym_cos] = ACTIONS(893), + [anon_sym_dcgettext] = ACTIONS(893), + [anon_sym_dcngettext] = ACTIONS(893), + [anon_sym_exp] = ACTIONS(893), + [anon_sym_gensub] = ACTIONS(893), + [anon_sym_gsub] = ACTIONS(893), + [anon_sym_index] = ACTIONS(893), + [anon_sym_int] = ACTIONS(893), + [anon_sym_isarray] = ACTIONS(893), + [anon_sym_length] = ACTIONS(893), + [anon_sym_log] = ACTIONS(893), + [anon_sym_lshift] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_mktime] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_patsplit] = ACTIONS(893), + [anon_sym_rand] = ACTIONS(893), + [anon_sym_rshift] = ACTIONS(893), + [anon_sym_sin] = ACTIONS(893), + [anon_sym_split] = ACTIONS(893), + [anon_sym_sprintf] = ACTIONS(893), + [anon_sym_sqrt] = ACTIONS(893), + [anon_sym_srand] = ACTIONS(893), + [anon_sym_strftime] = ACTIONS(893), + [anon_sym_strtonum] = ACTIONS(893), + [anon_sym_sub] = ACTIONS(893), + [anon_sym_substr] = ACTIONS(893), + [anon_sym_systime] = ACTIONS(893), + [anon_sym_tolower] = ACTIONS(893), + [anon_sym_toupper] = ACTIONS(893), + [anon_sym_typeof] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(893), + [sym_concatenating_space] = ACTIONS(895), + [sym__if_else_separator] = ACTIONS(895), + }, + [236] = { + [sym_identifier] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_CR_LF] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_in] = ACTIONS(811), + [sym_break_statement] = ACTIONS(897), + [sym_continue_statement] = ACTIONS(897), + [anon_sym_delete] = ACTIONS(897), + [anon_sym_exit] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_switch] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_getline] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(897), + [sym_nextfile_statement] = ACTIONS(897), + [anon_sym_print] = ACTIONS(897), + [anon_sym_printf] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_BANG_TILDE] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_PLUS_EQ] = ACTIONS(897), + [anon_sym_DASH_EQ] = ACTIONS(897), + [anon_sym_STAR_EQ] = ACTIONS(897), + [anon_sym_SLASH_EQ] = ACTIONS(897), + [anon_sym_PERCENT_EQ] = ACTIONS(897), + [anon_sym_CARET_EQ] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [aux_sym_number_token1] = ACTIONS(897), + [aux_sym_number_token2] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_asort] = ACTIONS(897), + [anon_sym_asorti] = ACTIONS(897), + [anon_sym_bindtextdomain] = ACTIONS(897), + [anon_sym_compl] = ACTIONS(897), + [anon_sym_cos] = ACTIONS(897), + [anon_sym_dcgettext] = ACTIONS(897), + [anon_sym_dcngettext] = ACTIONS(897), + [anon_sym_exp] = ACTIONS(897), + [anon_sym_gensub] = ACTIONS(897), + [anon_sym_gsub] = ACTIONS(897), + [anon_sym_index] = ACTIONS(897), + [anon_sym_int] = ACTIONS(897), + [anon_sym_isarray] = ACTIONS(897), + [anon_sym_length] = ACTIONS(897), + [anon_sym_log] = ACTIONS(897), + [anon_sym_lshift] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_mktime] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_patsplit] = ACTIONS(897), + [anon_sym_rand] = ACTIONS(897), + [anon_sym_rshift] = ACTIONS(897), + [anon_sym_sin] = ACTIONS(897), + [anon_sym_split] = ACTIONS(897), + [anon_sym_sprintf] = ACTIONS(897), + [anon_sym_sqrt] = ACTIONS(897), + [anon_sym_srand] = ACTIONS(897), + [anon_sym_strftime] = ACTIONS(897), + [anon_sym_strtonum] = ACTIONS(897), + [anon_sym_sub] = ACTIONS(897), + [anon_sym_substr] = ACTIONS(897), + [anon_sym_systime] = ACTIONS(897), + [anon_sym_tolower] = ACTIONS(897), + [anon_sym_toupper] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(897), + [sym_concatenating_space] = ACTIONS(899), + [sym__if_else_separator] = ACTIONS(899), + }, + [237] = { + [sym_identifier] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_CR_LF] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(811), + [sym_break_statement] = ACTIONS(901), + [sym_continue_statement] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_exit] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_getline] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(901), + [sym_nextfile_statement] = ACTIONS(901), + [anon_sym_print] = ACTIONS(901), + [anon_sym_printf] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PIPE_AMP] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_BANG_TILDE] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_PLUS_EQ] = ACTIONS(901), + [anon_sym_DASH_EQ] = ACTIONS(901), + [anon_sym_STAR_EQ] = ACTIONS(901), + [anon_sym_SLASH_EQ] = ACTIONS(901), + [anon_sym_PERCENT_EQ] = ACTIONS(901), + [anon_sym_CARET_EQ] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(901), + [aux_sym_number_token1] = ACTIONS(901), + [aux_sym_number_token2] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_asort] = ACTIONS(901), + [anon_sym_asorti] = ACTIONS(901), + [anon_sym_bindtextdomain] = ACTIONS(901), + [anon_sym_compl] = ACTIONS(901), + [anon_sym_cos] = ACTIONS(901), + [anon_sym_dcgettext] = ACTIONS(901), + [anon_sym_dcngettext] = ACTIONS(901), + [anon_sym_exp] = ACTIONS(901), + [anon_sym_gensub] = ACTIONS(901), + [anon_sym_gsub] = ACTIONS(901), + [anon_sym_index] = ACTIONS(901), + [anon_sym_int] = ACTIONS(901), + [anon_sym_isarray] = ACTIONS(901), + [anon_sym_length] = ACTIONS(901), + [anon_sym_log] = ACTIONS(901), + [anon_sym_lshift] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mktime] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_patsplit] = ACTIONS(901), + [anon_sym_rand] = ACTIONS(901), + [anon_sym_rshift] = ACTIONS(901), + [anon_sym_sin] = ACTIONS(901), + [anon_sym_split] = ACTIONS(901), + [anon_sym_sprintf] = ACTIONS(901), + [anon_sym_sqrt] = ACTIONS(901), + [anon_sym_srand] = ACTIONS(901), + [anon_sym_strftime] = ACTIONS(901), + [anon_sym_strtonum] = ACTIONS(901), + [anon_sym_sub] = ACTIONS(901), + [anon_sym_substr] = ACTIONS(901), + [anon_sym_systime] = ACTIONS(901), + [anon_sym_tolower] = ACTIONS(901), + [anon_sym_toupper] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(901), + [sym_concatenating_space] = ACTIONS(903), + [sym__if_else_separator] = ACTIONS(903), + }, + [238] = { + [sym_identifier] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_CR_LF] = ACTIONS(789), + [anon_sym_if] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_while] = ACTIONS(789), + [anon_sym_do] = ACTIONS(789), + [anon_sym_for] = ACTIONS(789), + [anon_sym_in] = ACTIONS(789), + [sym_break_statement] = ACTIONS(789), + [sym_continue_statement] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_exit] = ACTIONS(789), + [anon_sym_return] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_getline] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [sym_next_statement] = ACTIONS(789), + [sym_nextfile_statement] = ACTIONS(789), + [anon_sym_print] = ACTIONS(789), + [anon_sym_printf] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_PIPE_AMP] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_PERCENT] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_BANG_TILDE] = ACTIONS(789), + [anon_sym_AMP_AMP] = ACTIONS(789), + [anon_sym_PIPE_PIPE] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(789), + [anon_sym_DASH_DASH] = ACTIONS(789), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_PLUS_EQ] = ACTIONS(789), + [anon_sym_DASH_EQ] = ACTIONS(789), + [anon_sym_STAR_EQ] = ACTIONS(789), + [anon_sym_SLASH_EQ] = ACTIONS(789), + [anon_sym_PERCENT_EQ] = ACTIONS(789), + [anon_sym_CARET_EQ] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(789), + [sym_regex_flags] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(789), + [aux_sym_number_token1] = ACTIONS(789), + [aux_sym_number_token2] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_asort] = ACTIONS(789), + [anon_sym_asorti] = ACTIONS(789), + [anon_sym_bindtextdomain] = ACTIONS(789), + [anon_sym_compl] = ACTIONS(789), + [anon_sym_cos] = ACTIONS(789), + [anon_sym_dcgettext] = ACTIONS(789), + [anon_sym_dcngettext] = ACTIONS(789), + [anon_sym_exp] = ACTIONS(789), + [anon_sym_gensub] = ACTIONS(789), + [anon_sym_gsub] = ACTIONS(789), + [anon_sym_index] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_isarray] = ACTIONS(789), + [anon_sym_length] = ACTIONS(789), + [anon_sym_log] = ACTIONS(789), + [anon_sym_lshift] = ACTIONS(789), + [anon_sym_match] = ACTIONS(789), + [anon_sym_mktime] = ACTIONS(789), + [anon_sym_or] = ACTIONS(789), + [anon_sym_patsplit] = ACTIONS(789), + [anon_sym_rand] = ACTIONS(789), + [anon_sym_rshift] = ACTIONS(789), + [anon_sym_sin] = ACTIONS(789), + [anon_sym_split] = ACTIONS(789), + [anon_sym_sprintf] = ACTIONS(789), + [anon_sym_sqrt] = ACTIONS(789), + [anon_sym_srand] = ACTIONS(789), + [anon_sym_strftime] = ACTIONS(789), + [anon_sym_strtonum] = ACTIONS(789), + [anon_sym_sub] = ACTIONS(789), + [anon_sym_substr] = ACTIONS(789), + [anon_sym_systime] = ACTIONS(789), + [anon_sym_tolower] = ACTIONS(789), + [anon_sym_toupper] = ACTIONS(789), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(789), + [sym_concatenating_space] = ACTIONS(793), + }, + [239] = { + [sym_identifier] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_CR_LF] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [sym_break_statement] = ACTIONS(907), + [sym_continue_statement] = ACTIONS(907), + [anon_sym_delete] = ACTIONS(907), + [anon_sym_exit] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_switch] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_getline] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(907), + [sym_nextfile_statement] = ACTIONS(907), + [anon_sym_print] = ACTIONS(907), + [anon_sym_printf] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_BANG_TILDE] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), + [anon_sym_STAR_EQ] = ACTIONS(907), + [anon_sym_SLASH_EQ] = ACTIONS(907), + [anon_sym_PERCENT_EQ] = ACTIONS(907), + [anon_sym_CARET_EQ] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [aux_sym_number_token1] = ACTIONS(907), + [aux_sym_number_token2] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_asort] = ACTIONS(907), + [anon_sym_asorti] = ACTIONS(907), + [anon_sym_bindtextdomain] = ACTIONS(907), + [anon_sym_compl] = ACTIONS(907), + [anon_sym_cos] = ACTIONS(907), + [anon_sym_dcgettext] = ACTIONS(907), + [anon_sym_dcngettext] = ACTIONS(907), + [anon_sym_exp] = ACTIONS(907), + [anon_sym_gensub] = ACTIONS(907), + [anon_sym_gsub] = ACTIONS(907), + [anon_sym_index] = ACTIONS(907), + [anon_sym_int] = ACTIONS(907), + [anon_sym_isarray] = ACTIONS(907), + [anon_sym_length] = ACTIONS(907), + [anon_sym_log] = ACTIONS(907), + [anon_sym_lshift] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mktime] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_patsplit] = ACTIONS(907), + [anon_sym_rand] = ACTIONS(907), + [anon_sym_rshift] = ACTIONS(907), + [anon_sym_sin] = ACTIONS(907), + [anon_sym_split] = ACTIONS(907), + [anon_sym_sprintf] = ACTIONS(907), + [anon_sym_sqrt] = ACTIONS(907), + [anon_sym_srand] = ACTIONS(907), + [anon_sym_strftime] = ACTIONS(907), + [anon_sym_strtonum] = ACTIONS(907), + [anon_sym_sub] = ACTIONS(907), + [anon_sym_substr] = ACTIONS(907), + [anon_sym_systime] = ACTIONS(907), + [anon_sym_tolower] = ACTIONS(907), + [anon_sym_toupper] = ACTIONS(907), + [anon_sym_typeof] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [sym_concatenating_space] = ACTIONS(909), + [sym__if_else_separator] = ACTIONS(909), + }, + [240] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_PLUS_EQ] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(781), + [anon_sym_STAR_EQ] = ACTIONS(781), + [anon_sym_SLASH_EQ] = ACTIONS(781), + [anon_sym_PERCENT_EQ] = ACTIONS(781), + [anon_sym_CARET_EQ] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + }, + [241] = { + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + }, + [242] = { + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), + }, + [243] = { + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), + }, + [244] = { + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_CR_LF] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [sym_break_statement] = ACTIONS(911), + [sym_continue_statement] = ACTIONS(911), + [anon_sym_delete] = ACTIONS(911), + [anon_sym_exit] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_getline] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [sym_next_statement] = ACTIONS(911), + [sym_nextfile_statement] = ACTIONS(911), + [anon_sym_print] = ACTIONS(911), + [anon_sym_printf] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(911), + [anon_sym_PIPE_PIPE] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_EQ] = ACTIONS(911), + [anon_sym_PLUS_EQ] = ACTIONS(911), + [anon_sym_DASH_EQ] = ACTIONS(911), + [anon_sym_STAR_EQ] = ACTIONS(911), + [anon_sym_SLASH_EQ] = ACTIONS(911), + [anon_sym_PERCENT_EQ] = ACTIONS(911), + [anon_sym_CARET_EQ] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_asort] = ACTIONS(911), + [anon_sym_asorti] = ACTIONS(911), + [anon_sym_bindtextdomain] = ACTIONS(911), + [anon_sym_compl] = ACTIONS(911), + [anon_sym_cos] = ACTIONS(911), + [anon_sym_dcgettext] = ACTIONS(911), + [anon_sym_dcngettext] = ACTIONS(911), + [anon_sym_exp] = ACTIONS(911), + [anon_sym_gensub] = ACTIONS(911), + [anon_sym_gsub] = ACTIONS(911), + [anon_sym_index] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_isarray] = ACTIONS(911), + [anon_sym_length] = ACTIONS(911), + [anon_sym_log] = ACTIONS(911), + [anon_sym_lshift] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mktime] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_patsplit] = ACTIONS(911), + [anon_sym_rand] = ACTIONS(911), + [anon_sym_rshift] = ACTIONS(911), + [anon_sym_sin] = ACTIONS(911), + [anon_sym_split] = ACTIONS(911), + [anon_sym_sprintf] = ACTIONS(911), + [anon_sym_sqrt] = ACTIONS(911), + [anon_sym_srand] = ACTIONS(911), + [anon_sym_strftime] = ACTIONS(911), + [anon_sym_strtonum] = ACTIONS(911), + [anon_sym_sub] = ACTIONS(911), + [anon_sym_substr] = ACTIONS(911), + [anon_sym_systime] = ACTIONS(911), + [anon_sym_tolower] = ACTIONS(911), + [anon_sym_toupper] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(911), + [sym_concatenating_space] = ACTIONS(913), + [sym__if_else_separator] = ACTIONS(913), + }, + [245] = { + [sym_identifier] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_CR_LF] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_in] = ACTIONS(915), + [sym_break_statement] = ACTIONS(915), + [sym_continue_statement] = ACTIONS(915), + [anon_sym_delete] = ACTIONS(915), + [anon_sym_exit] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_getline] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [sym_next_statement] = ACTIONS(915), + [sym_nextfile_statement] = ACTIONS(915), + [anon_sym_print] = ACTIONS(915), + [anon_sym_printf] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_STAR_STAR] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_BANG_TILDE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(915), + [anon_sym_DASH_EQ] = ACTIONS(915), + [anon_sym_STAR_EQ] = ACTIONS(915), + [anon_sym_SLASH_EQ] = ACTIONS(915), + [anon_sym_PERCENT_EQ] = ACTIONS(915), + [anon_sym_CARET_EQ] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), + [aux_sym_number_token1] = ACTIONS(915), + [aux_sym_number_token2] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_asort] = ACTIONS(915), + [anon_sym_asorti] = ACTIONS(915), + [anon_sym_bindtextdomain] = ACTIONS(915), + [anon_sym_compl] = ACTIONS(915), + [anon_sym_cos] = ACTIONS(915), + [anon_sym_dcgettext] = ACTIONS(915), + [anon_sym_dcngettext] = ACTIONS(915), + [anon_sym_exp] = ACTIONS(915), + [anon_sym_gensub] = ACTIONS(915), + [anon_sym_gsub] = ACTIONS(915), + [anon_sym_index] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_isarray] = ACTIONS(915), + [anon_sym_length] = ACTIONS(915), + [anon_sym_log] = ACTIONS(915), + [anon_sym_lshift] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mktime] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_patsplit] = ACTIONS(915), + [anon_sym_rand] = ACTIONS(915), + [anon_sym_rshift] = ACTIONS(915), + [anon_sym_sin] = ACTIONS(915), + [anon_sym_split] = ACTIONS(915), + [anon_sym_sprintf] = ACTIONS(915), + [anon_sym_sqrt] = ACTIONS(915), + [anon_sym_srand] = ACTIONS(915), + [anon_sym_strftime] = ACTIONS(915), + [anon_sym_strtonum] = ACTIONS(915), + [anon_sym_sub] = ACTIONS(915), + [anon_sym_substr] = ACTIONS(915), + [anon_sym_systime] = ACTIONS(915), + [anon_sym_tolower] = ACTIONS(915), + [anon_sym_toupper] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(915), + [sym_concatenating_space] = ACTIONS(917), + [sym__if_else_separator] = ACTIONS(917), + }, + [246] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(811), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_BANG_TILDE] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [247] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(811), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_BANG_TILDE] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [248] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(813), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [249] = { + [sym_identifier] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(923), + [anon_sym_CR_LF] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_in] = ACTIONS(923), + [sym_break_statement] = ACTIONS(923), + [sym_continue_statement] = ACTIONS(923), + [anon_sym_delete] = ACTIONS(923), + [anon_sym_exit] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_getline] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [sym_next_statement] = ACTIONS(923), + [sym_nextfile_statement] = ACTIONS(923), + [anon_sym_print] = ACTIONS(923), + [anon_sym_printf] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_PLUS_EQ] = ACTIONS(923), + [anon_sym_DASH_EQ] = ACTIONS(923), + [anon_sym_STAR_EQ] = ACTIONS(923), + [anon_sym_SLASH_EQ] = ACTIONS(923), + [anon_sym_PERCENT_EQ] = ACTIONS(923), + [anon_sym_CARET_EQ] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [aux_sym_number_token1] = ACTIONS(923), + [aux_sym_number_token2] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_asort] = ACTIONS(923), + [anon_sym_asorti] = ACTIONS(923), + [anon_sym_bindtextdomain] = ACTIONS(923), + [anon_sym_compl] = ACTIONS(923), + [anon_sym_cos] = ACTIONS(923), + [anon_sym_dcgettext] = ACTIONS(923), + [anon_sym_dcngettext] = ACTIONS(923), + [anon_sym_exp] = ACTIONS(923), + [anon_sym_gensub] = ACTIONS(923), + [anon_sym_gsub] = ACTIONS(923), + [anon_sym_index] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_isarray] = ACTIONS(923), + [anon_sym_length] = ACTIONS(923), + [anon_sym_log] = ACTIONS(923), + [anon_sym_lshift] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mktime] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_patsplit] = ACTIONS(923), + [anon_sym_rand] = ACTIONS(923), + [anon_sym_rshift] = ACTIONS(923), + [anon_sym_sin] = ACTIONS(923), + [anon_sym_split] = ACTIONS(923), + [anon_sym_sprintf] = ACTIONS(923), + [anon_sym_sqrt] = ACTIONS(923), + [anon_sym_srand] = ACTIONS(923), + [anon_sym_strftime] = ACTIONS(923), + [anon_sym_strtonum] = ACTIONS(923), + [anon_sym_sub] = ACTIONS(923), + [anon_sym_substr] = ACTIONS(923), + [anon_sym_systime] = ACTIONS(923), + [anon_sym_tolower] = ACTIONS(923), + [anon_sym_toupper] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [sym_concatenating_space] = ACTIONS(925), + [sym__if_else_separator] = ACTIONS(925), + }, + [250] = { + [sym_identifier] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_CR_LF] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [sym_break_statement] = ACTIONS(927), + [sym_continue_statement] = ACTIONS(927), + [anon_sym_delete] = ACTIONS(927), + [anon_sym_exit] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_getline] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [sym_next_statement] = ACTIONS(927), + [sym_nextfile_statement] = ACTIONS(927), + [anon_sym_print] = ACTIONS(927), + [anon_sym_printf] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_PERCENT_EQ] = ACTIONS(927), + [anon_sym_CARET_EQ] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(927), + [aux_sym_number_token1] = ACTIONS(927), + [aux_sym_number_token2] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_asort] = ACTIONS(927), + [anon_sym_asorti] = ACTIONS(927), + [anon_sym_bindtextdomain] = ACTIONS(927), + [anon_sym_compl] = ACTIONS(927), + [anon_sym_cos] = ACTIONS(927), + [anon_sym_dcgettext] = ACTIONS(927), + [anon_sym_dcngettext] = ACTIONS(927), + [anon_sym_exp] = ACTIONS(927), + [anon_sym_gensub] = ACTIONS(927), + [anon_sym_gsub] = ACTIONS(927), + [anon_sym_index] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_isarray] = ACTIONS(927), + [anon_sym_length] = ACTIONS(927), + [anon_sym_log] = ACTIONS(927), + [anon_sym_lshift] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mktime] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_patsplit] = ACTIONS(927), + [anon_sym_rand] = ACTIONS(927), + [anon_sym_rshift] = ACTIONS(927), + [anon_sym_sin] = ACTIONS(927), + [anon_sym_split] = ACTIONS(927), + [anon_sym_sprintf] = ACTIONS(927), + [anon_sym_sqrt] = ACTIONS(927), + [anon_sym_srand] = ACTIONS(927), + [anon_sym_strftime] = ACTIONS(927), + [anon_sym_strtonum] = ACTIONS(927), + [anon_sym_sub] = ACTIONS(927), + [anon_sym_substr] = ACTIONS(927), + [anon_sym_systime] = ACTIONS(927), + [anon_sym_tolower] = ACTIONS(927), + [anon_sym_toupper] = ACTIONS(927), + [anon_sym_typeof] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(927), + [sym_concatenating_space] = ACTIONS(929), + [sym__if_else_separator] = ACTIONS(929), + }, + [251] = { + [sym_identifier] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_CR_LF] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [sym_break_statement] = ACTIONS(801), + [sym_continue_statement] = ACTIONS(801), + [anon_sym_delete] = ACTIONS(801), + [anon_sym_exit] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_switch] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_getline] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [sym_next_statement] = ACTIONS(801), + [sym_nextfile_statement] = ACTIONS(801), + [anon_sym_print] = ACTIONS(801), + [anon_sym_printf] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_PLUS_EQ] = ACTIONS(801), + [anon_sym_DASH_EQ] = ACTIONS(801), + [anon_sym_STAR_EQ] = ACTIONS(801), + [anon_sym_SLASH_EQ] = ACTIONS(801), + [anon_sym_PERCENT_EQ] = ACTIONS(801), + [anon_sym_CARET_EQ] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [aux_sym_number_token1] = ACTIONS(801), + [aux_sym_number_token2] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_asort] = ACTIONS(801), + [anon_sym_asorti] = ACTIONS(801), + [anon_sym_bindtextdomain] = ACTIONS(801), + [anon_sym_compl] = ACTIONS(801), + [anon_sym_cos] = ACTIONS(801), + [anon_sym_dcgettext] = ACTIONS(801), + [anon_sym_dcngettext] = ACTIONS(801), + [anon_sym_exp] = ACTIONS(801), + [anon_sym_gensub] = ACTIONS(801), + [anon_sym_gsub] = ACTIONS(801), + [anon_sym_index] = ACTIONS(801), + [anon_sym_int] = ACTIONS(801), + [anon_sym_isarray] = ACTIONS(801), + [anon_sym_length] = ACTIONS(801), + [anon_sym_log] = ACTIONS(801), + [anon_sym_lshift] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_mktime] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_patsplit] = ACTIONS(801), + [anon_sym_rand] = ACTIONS(801), + [anon_sym_rshift] = ACTIONS(801), + [anon_sym_sin] = ACTIONS(801), + [anon_sym_split] = ACTIONS(801), + [anon_sym_sprintf] = ACTIONS(801), + [anon_sym_sqrt] = ACTIONS(801), + [anon_sym_srand] = ACTIONS(801), + [anon_sym_strftime] = ACTIONS(801), + [anon_sym_strtonum] = ACTIONS(801), + [anon_sym_sub] = ACTIONS(801), + [anon_sym_substr] = ACTIONS(801), + [anon_sym_systime] = ACTIONS(801), + [anon_sym_tolower] = ACTIONS(801), + [anon_sym_toupper] = ACTIONS(801), + [anon_sym_typeof] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [sym_concatenating_space] = ACTIONS(803), + }, + [252] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [253] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_PLUS_EQ] = ACTIONS(785), + [anon_sym_DASH_EQ] = ACTIONS(785), + [anon_sym_STAR_EQ] = ACTIONS(785), + [anon_sym_SLASH_EQ] = ACTIONS(785), + [anon_sym_PERCENT_EQ] = ACTIONS(785), + [anon_sym_CARET_EQ] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(787), + }, + [254] = { + [sym_identifier] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_CR_LF] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in] = ACTIONS(931), + [sym_break_statement] = ACTIONS(931), + [sym_continue_statement] = ACTIONS(931), + [anon_sym_delete] = ACTIONS(931), + [anon_sym_exit] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_getline] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [sym_next_statement] = ACTIONS(931), + [sym_nextfile_statement] = ACTIONS(931), + [anon_sym_print] = ACTIONS(931), + [anon_sym_printf] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [aux_sym_number_token1] = ACTIONS(931), + [aux_sym_number_token2] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_asort] = ACTIONS(931), + [anon_sym_asorti] = ACTIONS(931), + [anon_sym_bindtextdomain] = ACTIONS(931), + [anon_sym_compl] = ACTIONS(931), + [anon_sym_cos] = ACTIONS(931), + [anon_sym_dcgettext] = ACTIONS(931), + [anon_sym_dcngettext] = ACTIONS(931), + [anon_sym_exp] = ACTIONS(931), + [anon_sym_gensub] = ACTIONS(931), + [anon_sym_gsub] = ACTIONS(931), + [anon_sym_index] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_isarray] = ACTIONS(931), + [anon_sym_length] = ACTIONS(931), + [anon_sym_log] = ACTIONS(931), + [anon_sym_lshift] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mktime] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_patsplit] = ACTIONS(931), + [anon_sym_rand] = ACTIONS(931), + [anon_sym_rshift] = ACTIONS(931), + [anon_sym_sin] = ACTIONS(931), + [anon_sym_split] = ACTIONS(931), + [anon_sym_sprintf] = ACTIONS(931), + [anon_sym_sqrt] = ACTIONS(931), + [anon_sym_srand] = ACTIONS(931), + [anon_sym_strftime] = ACTIONS(931), + [anon_sym_strtonum] = ACTIONS(931), + [anon_sym_sub] = ACTIONS(931), + [anon_sym_substr] = ACTIONS(931), + [anon_sym_systime] = ACTIONS(931), + [anon_sym_tolower] = ACTIONS(931), + [anon_sym_toupper] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [sym_concatenating_space] = ACTIONS(933), + [sym__if_else_separator] = ACTIONS(933), + }, + [255] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [256] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_STAR_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [257] = { + [sym_identifier] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_CR_LF] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [sym_break_statement] = ACTIONS(935), + [sym_continue_statement] = ACTIONS(935), + [anon_sym_delete] = ACTIONS(935), + [anon_sym_exit] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_switch] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_getline] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [sym_next_statement] = ACTIONS(935), + [sym_nextfile_statement] = ACTIONS(935), + [anon_sym_print] = ACTIONS(935), + [anon_sym_printf] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PIPE_AMP] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), + [anon_sym_STAR_EQ] = ACTIONS(935), + [anon_sym_SLASH_EQ] = ACTIONS(935), + [anon_sym_PERCENT_EQ] = ACTIONS(935), + [anon_sym_CARET_EQ] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [aux_sym_number_token1] = ACTIONS(935), + [aux_sym_number_token2] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_asort] = ACTIONS(935), + [anon_sym_asorti] = ACTIONS(935), + [anon_sym_bindtextdomain] = ACTIONS(935), + [anon_sym_compl] = ACTIONS(935), + [anon_sym_cos] = ACTIONS(935), + [anon_sym_dcgettext] = ACTIONS(935), + [anon_sym_dcngettext] = ACTIONS(935), + [anon_sym_exp] = ACTIONS(935), + [anon_sym_gensub] = ACTIONS(935), + [anon_sym_gsub] = ACTIONS(935), + [anon_sym_index] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_isarray] = ACTIONS(935), + [anon_sym_length] = ACTIONS(935), + [anon_sym_log] = ACTIONS(935), + [anon_sym_lshift] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mktime] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_patsplit] = ACTIONS(935), + [anon_sym_rand] = ACTIONS(935), + [anon_sym_rshift] = ACTIONS(935), + [anon_sym_sin] = ACTIONS(935), + [anon_sym_split] = ACTIONS(935), + [anon_sym_sprintf] = ACTIONS(935), + [anon_sym_sqrt] = ACTIONS(935), + [anon_sym_srand] = ACTIONS(935), + [anon_sym_strftime] = ACTIONS(935), + [anon_sym_strtonum] = ACTIONS(935), + [anon_sym_sub] = ACTIONS(935), + [anon_sym_substr] = ACTIONS(935), + [anon_sym_systime] = ACTIONS(935), + [anon_sym_tolower] = ACTIONS(935), + [anon_sym_toupper] = ACTIONS(935), + [anon_sym_typeof] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [sym_concatenating_space] = ACTIONS(937), + [sym__if_else_separator] = ACTIONS(937), + }, + [258] = { + [sym_identifier] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(939), + [anon_sym_CR_LF] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [sym_break_statement] = ACTIONS(939), + [sym_continue_statement] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_exit] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_getline] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [sym_next_statement] = ACTIONS(939), + [sym_nextfile_statement] = ACTIONS(939), + [anon_sym_print] = ACTIONS(939), + [anon_sym_printf] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_PLUS_EQ] = ACTIONS(939), + [anon_sym_DASH_EQ] = ACTIONS(939), + [anon_sym_STAR_EQ] = ACTIONS(939), + [anon_sym_SLASH_EQ] = ACTIONS(939), + [anon_sym_PERCENT_EQ] = ACTIONS(939), + [anon_sym_CARET_EQ] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [aux_sym_number_token1] = ACTIONS(939), + [aux_sym_number_token2] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_asort] = ACTIONS(939), + [anon_sym_asorti] = ACTIONS(939), + [anon_sym_bindtextdomain] = ACTIONS(939), + [anon_sym_compl] = ACTIONS(939), + [anon_sym_cos] = ACTIONS(939), + [anon_sym_dcgettext] = ACTIONS(939), + [anon_sym_dcngettext] = ACTIONS(939), + [anon_sym_exp] = ACTIONS(939), + [anon_sym_gensub] = ACTIONS(939), + [anon_sym_gsub] = ACTIONS(939), + [anon_sym_index] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_isarray] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_log] = ACTIONS(939), + [anon_sym_lshift] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mktime] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_patsplit] = ACTIONS(939), + [anon_sym_rand] = ACTIONS(939), + [anon_sym_rshift] = ACTIONS(939), + [anon_sym_sin] = ACTIONS(939), + [anon_sym_split] = ACTIONS(939), + [anon_sym_sprintf] = ACTIONS(939), + [anon_sym_sqrt] = ACTIONS(939), + [anon_sym_srand] = ACTIONS(939), + [anon_sym_strftime] = ACTIONS(939), + [anon_sym_strtonum] = ACTIONS(939), + [anon_sym_sub] = ACTIONS(939), + [anon_sym_substr] = ACTIONS(939), + [anon_sym_systime] = ACTIONS(939), + [anon_sym_tolower] = ACTIONS(939), + [anon_sym_toupper] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(939), + [sym_concatenating_space] = ACTIONS(941), + [sym__if_else_separator] = ACTIONS(941), + }, + [259] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [260] = { + [sym_identifier] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(893), + [anon_sym_CR_LF] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(943), + [sym_break_statement] = ACTIONS(893), + [sym_continue_statement] = ACTIONS(893), + [anon_sym_delete] = ACTIONS(893), + [anon_sym_exit] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_switch] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_getline] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(893), + [sym_nextfile_statement] = ACTIONS(893), + [anon_sym_print] = ACTIONS(893), + [anon_sym_printf] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(893), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_AT] = ACTIONS(893), + [aux_sym_number_token1] = ACTIONS(893), + [aux_sym_number_token2] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_asort] = ACTIONS(893), + [anon_sym_asorti] = ACTIONS(893), + [anon_sym_bindtextdomain] = ACTIONS(893), + [anon_sym_compl] = ACTIONS(893), + [anon_sym_cos] = ACTIONS(893), + [anon_sym_dcgettext] = ACTIONS(893), + [anon_sym_dcngettext] = ACTIONS(893), + [anon_sym_exp] = ACTIONS(893), + [anon_sym_gensub] = ACTIONS(893), + [anon_sym_gsub] = ACTIONS(893), + [anon_sym_index] = ACTIONS(893), + [anon_sym_int] = ACTIONS(893), + [anon_sym_isarray] = ACTIONS(893), + [anon_sym_length] = ACTIONS(893), + [anon_sym_log] = ACTIONS(893), + [anon_sym_lshift] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_mktime] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_patsplit] = ACTIONS(893), + [anon_sym_rand] = ACTIONS(893), + [anon_sym_rshift] = ACTIONS(893), + [anon_sym_sin] = ACTIONS(893), + [anon_sym_split] = ACTIONS(893), + [anon_sym_sprintf] = ACTIONS(893), + [anon_sym_sqrt] = ACTIONS(893), + [anon_sym_srand] = ACTIONS(893), + [anon_sym_strftime] = ACTIONS(893), + [anon_sym_strtonum] = ACTIONS(893), + [anon_sym_sub] = ACTIONS(893), + [anon_sym_substr] = ACTIONS(893), + [anon_sym_systime] = ACTIONS(893), + [anon_sym_tolower] = ACTIONS(893), + [anon_sym_toupper] = ACTIONS(893), + [anon_sym_typeof] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(893), + [sym_concatenating_space] = ACTIONS(895), + }, + [261] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_DASH_DASH] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(713), + [anon_sym_DASH_EQ] = ACTIONS(713), + [anon_sym_STAR_EQ] = ACTIONS(713), + [anon_sym_SLASH_EQ] = ACTIONS(713), + [anon_sym_PERCENT_EQ] = ACTIONS(713), + [anon_sym_CARET_EQ] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + }, + [262] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(943), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [263] = { + [sym_identifier] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_CR_LF] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_in] = ACTIONS(943), + [sym_break_statement] = ACTIONS(871), + [sym_continue_statement] = ACTIONS(871), + [anon_sym_delete] = ACTIONS(871), + [anon_sym_exit] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_switch] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_getline] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(871), + [sym_nextfile_statement] = ACTIONS(871), + [anon_sym_print] = ACTIONS(871), + [anon_sym_printf] = ACTIONS(871), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym_EQ] = ACTIONS(871), + [anon_sym_PLUS_EQ] = ACTIONS(871), + [anon_sym_DASH_EQ] = ACTIONS(871), + [anon_sym_STAR_EQ] = ACTIONS(871), + [anon_sym_SLASH_EQ] = ACTIONS(871), + [anon_sym_PERCENT_EQ] = ACTIONS(871), + [anon_sym_CARET_EQ] = ACTIONS(871), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_AT] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(871), + [aux_sym_number_token2] = ACTIONS(871), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_asort] = ACTIONS(871), + [anon_sym_asorti] = ACTIONS(871), + [anon_sym_bindtextdomain] = ACTIONS(871), + [anon_sym_compl] = ACTIONS(871), + [anon_sym_cos] = ACTIONS(871), + [anon_sym_dcgettext] = ACTIONS(871), + [anon_sym_dcngettext] = ACTIONS(871), + [anon_sym_exp] = ACTIONS(871), + [anon_sym_gensub] = ACTIONS(871), + [anon_sym_gsub] = ACTIONS(871), + [anon_sym_index] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_isarray] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_log] = ACTIONS(871), + [anon_sym_lshift] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mktime] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_patsplit] = ACTIONS(871), + [anon_sym_rand] = ACTIONS(871), + [anon_sym_rshift] = ACTIONS(871), + [anon_sym_sin] = ACTIONS(871), + [anon_sym_split] = ACTIONS(871), + [anon_sym_sprintf] = ACTIONS(871), + [anon_sym_sqrt] = ACTIONS(871), + [anon_sym_srand] = ACTIONS(871), + [anon_sym_strftime] = ACTIONS(871), + [anon_sym_strtonum] = ACTIONS(871), + [anon_sym_sub] = ACTIONS(871), + [anon_sym_substr] = ACTIONS(871), + [anon_sym_systime] = ACTIONS(871), + [anon_sym_tolower] = ACTIONS(871), + [anon_sym_toupper] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_POUND] = ACTIONS(871), + [sym_concatenating_space] = ACTIONS(875), + }, + [264] = { + [sym_identifier] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_CR_LF] = ACTIONS(809), + [anon_sym_if] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(809), + [anon_sym_for] = ACTIONS(809), + [anon_sym_in] = ACTIONS(943), + [sym_break_statement] = ACTIONS(809), + [sym_continue_statement] = ACTIONS(809), + [anon_sym_delete] = ACTIONS(809), + [anon_sym_exit] = ACTIONS(809), + [anon_sym_return] = ACTIONS(809), + [anon_sym_switch] = ACTIONS(809), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_getline] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(809), + [sym_nextfile_statement] = ACTIONS(809), + [anon_sym_print] = ACTIONS(809), + [anon_sym_printf] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(809), + [anon_sym_STAR_EQ] = ACTIONS(809), + [anon_sym_SLASH_EQ] = ACTIONS(809), + [anon_sym_PERCENT_EQ] = ACTIONS(809), + [anon_sym_CARET_EQ] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_AT] = ACTIONS(809), + [aux_sym_number_token1] = ACTIONS(809), + [aux_sym_number_token2] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), + [anon_sym_and] = ACTIONS(809), + [anon_sym_asort] = ACTIONS(809), + [anon_sym_asorti] = ACTIONS(809), + [anon_sym_bindtextdomain] = ACTIONS(809), + [anon_sym_compl] = ACTIONS(809), + [anon_sym_cos] = ACTIONS(809), + [anon_sym_dcgettext] = ACTIONS(809), + [anon_sym_dcngettext] = ACTIONS(809), + [anon_sym_exp] = ACTIONS(809), + [anon_sym_gensub] = ACTIONS(809), + [anon_sym_gsub] = ACTIONS(809), + [anon_sym_index] = ACTIONS(809), + [anon_sym_int] = ACTIONS(809), + [anon_sym_isarray] = ACTIONS(809), + [anon_sym_length] = ACTIONS(809), + [anon_sym_log] = ACTIONS(809), + [anon_sym_lshift] = ACTIONS(809), + [anon_sym_match] = ACTIONS(809), + [anon_sym_mktime] = ACTIONS(809), + [anon_sym_or] = ACTIONS(809), + [anon_sym_patsplit] = ACTIONS(809), + [anon_sym_rand] = ACTIONS(809), + [anon_sym_rshift] = ACTIONS(809), + [anon_sym_sin] = ACTIONS(809), + [anon_sym_split] = ACTIONS(809), + [anon_sym_sprintf] = ACTIONS(809), + [anon_sym_sqrt] = ACTIONS(809), + [anon_sym_srand] = ACTIONS(809), + [anon_sym_strftime] = ACTIONS(809), + [anon_sym_strtonum] = ACTIONS(809), + [anon_sym_sub] = ACTIONS(809), + [anon_sym_substr] = ACTIONS(809), + [anon_sym_systime] = ACTIONS(809), + [anon_sym_tolower] = ACTIONS(809), + [anon_sym_toupper] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(809), + [anon_sym_xor] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(809), + [sym_concatenating_space] = ACTIONS(829), + }, + [265] = { + [sym_identifier] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [sym_break_statement] = ACTIONS(859), + [sym_continue_statement] = ACTIONS(859), + [anon_sym_delete] = ACTIONS(859), + [anon_sym_exit] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_switch] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_getline] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [sym_next_statement] = ACTIONS(859), + [sym_nextfile_statement] = ACTIONS(859), + [anon_sym_print] = ACTIONS(859), + [anon_sym_printf] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_BANG_TILDE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_PERCENT_EQ] = ACTIONS(859), + [anon_sym_CARET_EQ] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(859), + [aux_sym_number_token1] = ACTIONS(859), + [aux_sym_number_token2] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_asort] = ACTIONS(859), + [anon_sym_asorti] = ACTIONS(859), + [anon_sym_bindtextdomain] = ACTIONS(859), + [anon_sym_compl] = ACTIONS(859), + [anon_sym_cos] = ACTIONS(859), + [anon_sym_dcgettext] = ACTIONS(859), + [anon_sym_dcngettext] = ACTIONS(859), + [anon_sym_exp] = ACTIONS(859), + [anon_sym_gensub] = ACTIONS(859), + [anon_sym_gsub] = ACTIONS(859), + [anon_sym_index] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_isarray] = ACTIONS(859), + [anon_sym_length] = ACTIONS(859), + [anon_sym_log] = ACTIONS(859), + [anon_sym_lshift] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mktime] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_patsplit] = ACTIONS(859), + [anon_sym_rand] = ACTIONS(859), + [anon_sym_rshift] = ACTIONS(859), + [anon_sym_sin] = ACTIONS(859), + [anon_sym_split] = ACTIONS(859), + [anon_sym_sprintf] = ACTIONS(859), + [anon_sym_sqrt] = ACTIONS(859), + [anon_sym_srand] = ACTIONS(859), + [anon_sym_strftime] = ACTIONS(859), + [anon_sym_strtonum] = ACTIONS(859), + [anon_sym_sub] = ACTIONS(859), + [anon_sym_substr] = ACTIONS(859), + [anon_sym_systime] = ACTIONS(859), + [anon_sym_tolower] = ACTIONS(859), + [anon_sym_toupper] = ACTIONS(859), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [sym_concatenating_space] = ACTIONS(861), + }, + [266] = { + [sym_identifier] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_CR_LF] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_do] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [sym_break_statement] = ACTIONS(863), + [sym_continue_statement] = ACTIONS(863), + [anon_sym_delete] = ACTIONS(863), + [anon_sym_exit] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_getline] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [sym_next_statement] = ACTIONS(863), + [sym_nextfile_statement] = ACTIONS(863), + [anon_sym_print] = ACTIONS(863), + [anon_sym_printf] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_TILDE] = ACTIONS(863), + [anon_sym_BANG_TILDE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS_PLUS] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(863), + [anon_sym_DASH_EQ] = ACTIONS(863), + [anon_sym_STAR_EQ] = ACTIONS(863), + [anon_sym_SLASH_EQ] = ACTIONS(863), + [anon_sym_PERCENT_EQ] = ACTIONS(863), + [anon_sym_CARET_EQ] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_AT] = ACTIONS(863), + [aux_sym_number_token1] = ACTIONS(863), + [aux_sym_number_token2] = ACTIONS(863), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_asort] = ACTIONS(863), + [anon_sym_asorti] = ACTIONS(863), + [anon_sym_bindtextdomain] = ACTIONS(863), + [anon_sym_compl] = ACTIONS(863), + [anon_sym_cos] = ACTIONS(863), + [anon_sym_dcgettext] = ACTIONS(863), + [anon_sym_dcngettext] = ACTIONS(863), + [anon_sym_exp] = ACTIONS(863), + [anon_sym_gensub] = ACTIONS(863), + [anon_sym_gsub] = ACTIONS(863), + [anon_sym_index] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_isarray] = ACTIONS(863), + [anon_sym_length] = ACTIONS(863), + [anon_sym_log] = ACTIONS(863), + [anon_sym_lshift] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mktime] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_patsplit] = ACTIONS(863), + [anon_sym_rand] = ACTIONS(863), + [anon_sym_rshift] = ACTIONS(863), + [anon_sym_sin] = ACTIONS(863), + [anon_sym_split] = ACTIONS(863), + [anon_sym_sprintf] = ACTIONS(863), + [anon_sym_sqrt] = ACTIONS(863), + [anon_sym_srand] = ACTIONS(863), + [anon_sym_strftime] = ACTIONS(863), + [anon_sym_strtonum] = ACTIONS(863), + [anon_sym_sub] = ACTIONS(863), + [anon_sym_substr] = ACTIONS(863), + [anon_sym_systime] = ACTIONS(863), + [anon_sym_tolower] = ACTIONS(863), + [anon_sym_toupper] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(863), + [sym_concatenating_space] = ACTIONS(865), + }, + [267] = { + [sym_identifier] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_CR_LF] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_do] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_in] = ACTIONS(867), + [sym_break_statement] = ACTIONS(867), + [sym_continue_statement] = ACTIONS(867), + [anon_sym_delete] = ACTIONS(867), + [anon_sym_exit] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_getline] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [sym_next_statement] = ACTIONS(867), + [sym_nextfile_statement] = ACTIONS(867), + [anon_sym_print] = ACTIONS(867), + [anon_sym_printf] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_PIPE_AMP] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_STAR_STAR] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_BANG_TILDE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(867), + [anon_sym_PIPE_PIPE] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_PLUS_EQ] = ACTIONS(867), + [anon_sym_DASH_EQ] = ACTIONS(867), + [anon_sym_STAR_EQ] = ACTIONS(867), + [anon_sym_SLASH_EQ] = ACTIONS(867), + [anon_sym_PERCENT_EQ] = ACTIONS(867), + [anon_sym_CARET_EQ] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [aux_sym_number_token1] = ACTIONS(867), + [aux_sym_number_token2] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_asort] = ACTIONS(867), + [anon_sym_asorti] = ACTIONS(867), + [anon_sym_bindtextdomain] = ACTIONS(867), + [anon_sym_compl] = ACTIONS(867), + [anon_sym_cos] = ACTIONS(867), + [anon_sym_dcgettext] = ACTIONS(867), + [anon_sym_dcngettext] = ACTIONS(867), + [anon_sym_exp] = ACTIONS(867), + [anon_sym_gensub] = ACTIONS(867), + [anon_sym_gsub] = ACTIONS(867), + [anon_sym_index] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_isarray] = ACTIONS(867), + [anon_sym_length] = ACTIONS(867), + [anon_sym_log] = ACTIONS(867), + [anon_sym_lshift] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mktime] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_patsplit] = ACTIONS(867), + [anon_sym_rand] = ACTIONS(867), + [anon_sym_rshift] = ACTIONS(867), + [anon_sym_sin] = ACTIONS(867), + [anon_sym_split] = ACTIONS(867), + [anon_sym_sprintf] = ACTIONS(867), + [anon_sym_sqrt] = ACTIONS(867), + [anon_sym_srand] = ACTIONS(867), + [anon_sym_strftime] = ACTIONS(867), + [anon_sym_strtonum] = ACTIONS(867), + [anon_sym_sub] = ACTIONS(867), + [anon_sym_substr] = ACTIONS(867), + [anon_sym_systime] = ACTIONS(867), + [anon_sym_tolower] = ACTIONS(867), + [anon_sym_toupper] = ACTIONS(867), + [anon_sym_typeof] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + [sym_concatenating_space] = ACTIONS(869), + }, + [268] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_PLUS_EQ] = ACTIONS(785), + [anon_sym_DASH_EQ] = ACTIONS(785), + [anon_sym_STAR_EQ] = ACTIONS(785), + [anon_sym_SLASH_EQ] = ACTIONS(785), + [anon_sym_PERCENT_EQ] = ACTIONS(785), + [anon_sym_CARET_EQ] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(787), + }, + [269] = { + [sym_identifier] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(923), + [anon_sym_CR_LF] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_in] = ACTIONS(923), + [sym_break_statement] = ACTIONS(923), + [sym_continue_statement] = ACTIONS(923), + [anon_sym_delete] = ACTIONS(923), + [anon_sym_exit] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_getline] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [sym_next_statement] = ACTIONS(923), + [sym_nextfile_statement] = ACTIONS(923), + [anon_sym_print] = ACTIONS(923), + [anon_sym_printf] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_PLUS_EQ] = ACTIONS(923), + [anon_sym_DASH_EQ] = ACTIONS(923), + [anon_sym_STAR_EQ] = ACTIONS(923), + [anon_sym_SLASH_EQ] = ACTIONS(923), + [anon_sym_PERCENT_EQ] = ACTIONS(923), + [anon_sym_CARET_EQ] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [aux_sym_number_token1] = ACTIONS(923), + [aux_sym_number_token2] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_asort] = ACTIONS(923), + [anon_sym_asorti] = ACTIONS(923), + [anon_sym_bindtextdomain] = ACTIONS(923), + [anon_sym_compl] = ACTIONS(923), + [anon_sym_cos] = ACTIONS(923), + [anon_sym_dcgettext] = ACTIONS(923), + [anon_sym_dcngettext] = ACTIONS(923), + [anon_sym_exp] = ACTIONS(923), + [anon_sym_gensub] = ACTIONS(923), + [anon_sym_gsub] = ACTIONS(923), + [anon_sym_index] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_isarray] = ACTIONS(923), + [anon_sym_length] = ACTIONS(923), + [anon_sym_log] = ACTIONS(923), + [anon_sym_lshift] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mktime] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_patsplit] = ACTIONS(923), + [anon_sym_rand] = ACTIONS(923), + [anon_sym_rshift] = ACTIONS(923), + [anon_sym_sin] = ACTIONS(923), + [anon_sym_split] = ACTIONS(923), + [anon_sym_sprintf] = ACTIONS(923), + [anon_sym_sqrt] = ACTIONS(923), + [anon_sym_srand] = ACTIONS(923), + [anon_sym_strftime] = ACTIONS(923), + [anon_sym_strtonum] = ACTIONS(923), + [anon_sym_sub] = ACTIONS(923), + [anon_sym_substr] = ACTIONS(923), + [anon_sym_systime] = ACTIONS(923), + [anon_sym_tolower] = ACTIONS(923), + [anon_sym_toupper] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [sym_concatenating_space] = ACTIONS(925), + }, + [270] = { + [sym_identifier] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(885), + [anon_sym_CR_LF] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [anon_sym_do] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_in] = ACTIONS(885), + [sym_break_statement] = ACTIONS(885), + [sym_continue_statement] = ACTIONS(885), + [anon_sym_delete] = ACTIONS(885), + [anon_sym_exit] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_getline] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [sym_next_statement] = ACTIONS(885), + [sym_nextfile_statement] = ACTIONS(885), + [anon_sym_print] = ACTIONS(885), + [anon_sym_printf] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_PIPE_AMP] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_STAR_STAR] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_BANG_TILDE] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(885), + [anon_sym_PIPE_PIPE] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_PLUS_EQ] = ACTIONS(885), + [anon_sym_DASH_EQ] = ACTIONS(885), + [anon_sym_STAR_EQ] = ACTIONS(885), + [anon_sym_SLASH_EQ] = ACTIONS(885), + [anon_sym_PERCENT_EQ] = ACTIONS(885), + [anon_sym_CARET_EQ] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(885), + [aux_sym_number_token1] = ACTIONS(885), + [aux_sym_number_token2] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_asort] = ACTIONS(885), + [anon_sym_asorti] = ACTIONS(885), + [anon_sym_bindtextdomain] = ACTIONS(885), + [anon_sym_compl] = ACTIONS(885), + [anon_sym_cos] = ACTIONS(885), + [anon_sym_dcgettext] = ACTIONS(885), + [anon_sym_dcngettext] = ACTIONS(885), + [anon_sym_exp] = ACTIONS(885), + [anon_sym_gensub] = ACTIONS(885), + [anon_sym_gsub] = ACTIONS(885), + [anon_sym_index] = ACTIONS(885), + [anon_sym_int] = ACTIONS(885), + [anon_sym_isarray] = ACTIONS(885), + [anon_sym_length] = ACTIONS(885), + [anon_sym_log] = ACTIONS(885), + [anon_sym_lshift] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mktime] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_patsplit] = ACTIONS(885), + [anon_sym_rand] = ACTIONS(885), + [anon_sym_rshift] = ACTIONS(885), + [anon_sym_sin] = ACTIONS(885), + [anon_sym_split] = ACTIONS(885), + [anon_sym_sprintf] = ACTIONS(885), + [anon_sym_sqrt] = ACTIONS(885), + [anon_sym_srand] = ACTIONS(885), + [anon_sym_strftime] = ACTIONS(885), + [anon_sym_strtonum] = ACTIONS(885), + [anon_sym_sub] = ACTIONS(885), + [anon_sym_substr] = ACTIONS(885), + [anon_sym_systime] = ACTIONS(885), + [anon_sym_tolower] = ACTIONS(885), + [anon_sym_toupper] = ACTIONS(885), + [anon_sym_typeof] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(885), + [sym_concatenating_space] = ACTIONS(887), + }, + [271] = { + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_CR_LF] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [sym_break_statement] = ACTIONS(911), + [sym_continue_statement] = ACTIONS(911), + [anon_sym_delete] = ACTIONS(911), + [anon_sym_exit] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_getline] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [sym_next_statement] = ACTIONS(911), + [sym_nextfile_statement] = ACTIONS(911), + [anon_sym_print] = ACTIONS(911), + [anon_sym_printf] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(911), + [anon_sym_PIPE_PIPE] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_EQ] = ACTIONS(911), + [anon_sym_PLUS_EQ] = ACTIONS(911), + [anon_sym_DASH_EQ] = ACTIONS(911), + [anon_sym_STAR_EQ] = ACTIONS(911), + [anon_sym_SLASH_EQ] = ACTIONS(911), + [anon_sym_PERCENT_EQ] = ACTIONS(911), + [anon_sym_CARET_EQ] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_asort] = ACTIONS(911), + [anon_sym_asorti] = ACTIONS(911), + [anon_sym_bindtextdomain] = ACTIONS(911), + [anon_sym_compl] = ACTIONS(911), + [anon_sym_cos] = ACTIONS(911), + [anon_sym_dcgettext] = ACTIONS(911), + [anon_sym_dcngettext] = ACTIONS(911), + [anon_sym_exp] = ACTIONS(911), + [anon_sym_gensub] = ACTIONS(911), + [anon_sym_gsub] = ACTIONS(911), + [anon_sym_index] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_isarray] = ACTIONS(911), + [anon_sym_length] = ACTIONS(911), + [anon_sym_log] = ACTIONS(911), + [anon_sym_lshift] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mktime] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_patsplit] = ACTIONS(911), + [anon_sym_rand] = ACTIONS(911), + [anon_sym_rshift] = ACTIONS(911), + [anon_sym_sin] = ACTIONS(911), + [anon_sym_split] = ACTIONS(911), + [anon_sym_sprintf] = ACTIONS(911), + [anon_sym_sqrt] = ACTIONS(911), + [anon_sym_srand] = ACTIONS(911), + [anon_sym_strftime] = ACTIONS(911), + [anon_sym_strtonum] = ACTIONS(911), + [anon_sym_sub] = ACTIONS(911), + [anon_sym_substr] = ACTIONS(911), + [anon_sym_systime] = ACTIONS(911), + [anon_sym_tolower] = ACTIONS(911), + [anon_sym_toupper] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(911), + [sym_concatenating_space] = ACTIONS(913), + }, + [272] = { + [sym_identifier] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_CR_LF] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_in] = ACTIONS(915), + [sym_break_statement] = ACTIONS(915), + [sym_continue_statement] = ACTIONS(915), + [anon_sym_delete] = ACTIONS(915), + [anon_sym_exit] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_getline] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [sym_next_statement] = ACTIONS(915), + [sym_nextfile_statement] = ACTIONS(915), + [anon_sym_print] = ACTIONS(915), + [anon_sym_printf] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_STAR_STAR] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_BANG_TILDE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(915), + [anon_sym_DASH_EQ] = ACTIONS(915), + [anon_sym_STAR_EQ] = ACTIONS(915), + [anon_sym_SLASH_EQ] = ACTIONS(915), + [anon_sym_PERCENT_EQ] = ACTIONS(915), + [anon_sym_CARET_EQ] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), + [aux_sym_number_token1] = ACTIONS(915), + [aux_sym_number_token2] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_asort] = ACTIONS(915), + [anon_sym_asorti] = ACTIONS(915), + [anon_sym_bindtextdomain] = ACTIONS(915), + [anon_sym_compl] = ACTIONS(915), + [anon_sym_cos] = ACTIONS(915), + [anon_sym_dcgettext] = ACTIONS(915), + [anon_sym_dcngettext] = ACTIONS(915), + [anon_sym_exp] = ACTIONS(915), + [anon_sym_gensub] = ACTIONS(915), + [anon_sym_gsub] = ACTIONS(915), + [anon_sym_index] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_isarray] = ACTIONS(915), + [anon_sym_length] = ACTIONS(915), + [anon_sym_log] = ACTIONS(915), + [anon_sym_lshift] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mktime] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_patsplit] = ACTIONS(915), + [anon_sym_rand] = ACTIONS(915), + [anon_sym_rshift] = ACTIONS(915), + [anon_sym_sin] = ACTIONS(915), + [anon_sym_split] = ACTIONS(915), + [anon_sym_sprintf] = ACTIONS(915), + [anon_sym_sqrt] = ACTIONS(915), + [anon_sym_srand] = ACTIONS(915), + [anon_sym_strftime] = ACTIONS(915), + [anon_sym_strtonum] = ACTIONS(915), + [anon_sym_sub] = ACTIONS(915), + [anon_sym_substr] = ACTIONS(915), + [anon_sym_systime] = ACTIONS(915), + [anon_sym_tolower] = ACTIONS(915), + [anon_sym_toupper] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(915), + [sym_concatenating_space] = ACTIONS(917), + }, + [273] = { + [sym_identifier] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(881), + [anon_sym_CR_LF] = ACTIONS(881), + [anon_sym_if] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_while] = ACTIONS(881), + [anon_sym_do] = ACTIONS(881), + [anon_sym_for] = ACTIONS(881), + [anon_sym_in] = ACTIONS(881), + [sym_break_statement] = ACTIONS(881), + [sym_continue_statement] = ACTIONS(881), + [anon_sym_delete] = ACTIONS(881), + [anon_sym_exit] = ACTIONS(881), + [anon_sym_return] = ACTIONS(881), + [anon_sym_switch] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_getline] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [sym_next_statement] = ACTIONS(881), + [sym_nextfile_statement] = ACTIONS(881), + [anon_sym_print] = ACTIONS(881), + [anon_sym_printf] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_GT_GT] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_PIPE_AMP] = ACTIONS(881), + [anon_sym_QMARK] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(881), + [anon_sym_STAR_STAR] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(881), + [anon_sym_PERCENT] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_AMP_AMP] = ACTIONS(881), + [anon_sym_PIPE_PIPE] = ACTIONS(881), + [anon_sym_BANG] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(881), + [anon_sym_DASH_DASH] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(881), + [anon_sym_PLUS_EQ] = ACTIONS(881), + [anon_sym_DASH_EQ] = ACTIONS(881), + [anon_sym_STAR_EQ] = ACTIONS(881), + [anon_sym_SLASH_EQ] = ACTIONS(881), + [anon_sym_PERCENT_EQ] = ACTIONS(881), + [anon_sym_CARET_EQ] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(881), + [aux_sym_number_token1] = ACTIONS(881), + [aux_sym_number_token2] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_asort] = ACTIONS(881), + [anon_sym_asorti] = ACTIONS(881), + [anon_sym_bindtextdomain] = ACTIONS(881), + [anon_sym_compl] = ACTIONS(881), + [anon_sym_cos] = ACTIONS(881), + [anon_sym_dcgettext] = ACTIONS(881), + [anon_sym_dcngettext] = ACTIONS(881), + [anon_sym_exp] = ACTIONS(881), + [anon_sym_gensub] = ACTIONS(881), + [anon_sym_gsub] = ACTIONS(881), + [anon_sym_index] = ACTIONS(881), + [anon_sym_int] = ACTIONS(881), + [anon_sym_isarray] = ACTIONS(881), + [anon_sym_length] = ACTIONS(881), + [anon_sym_log] = ACTIONS(881), + [anon_sym_lshift] = ACTIONS(881), + [anon_sym_match] = ACTIONS(881), + [anon_sym_mktime] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_patsplit] = ACTIONS(881), + [anon_sym_rand] = ACTIONS(881), + [anon_sym_rshift] = ACTIONS(881), + [anon_sym_sin] = ACTIONS(881), + [anon_sym_split] = ACTIONS(881), + [anon_sym_sprintf] = ACTIONS(881), + [anon_sym_sqrt] = ACTIONS(881), + [anon_sym_srand] = ACTIONS(881), + [anon_sym_strftime] = ACTIONS(881), + [anon_sym_strtonum] = ACTIONS(881), + [anon_sym_sub] = ACTIONS(881), + [anon_sym_substr] = ACTIONS(881), + [anon_sym_systime] = ACTIONS(881), + [anon_sym_tolower] = ACTIONS(881), + [anon_sym_toupper] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(881), + [sym_concatenating_space] = ACTIONS(883), + }, + [274] = { + [sym_identifier] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_CR_LF] = ACTIONS(831), + [anon_sym_if] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_while] = ACTIONS(831), + [anon_sym_do] = ACTIONS(831), + [anon_sym_for] = ACTIONS(831), + [anon_sym_in] = ACTIONS(831), + [sym_break_statement] = ACTIONS(831), + [sym_continue_statement] = ACTIONS(831), + [anon_sym_delete] = ACTIONS(831), + [anon_sym_exit] = ACTIONS(831), + [anon_sym_return] = ACTIONS(831), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_getline] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(831), + [sym_next_statement] = ACTIONS(831), + [sym_nextfile_statement] = ACTIONS(831), + [anon_sym_print] = ACTIONS(831), + [anon_sym_printf] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_GT_GT] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_PIPE_AMP] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym_STAR_STAR] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LT_EQ] = ACTIONS(831), + [anon_sym_GT_EQ] = ACTIONS(831), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_BANG_EQ] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_BANG_TILDE] = ACTIONS(831), + [anon_sym_AMP_AMP] = ACTIONS(831), + [anon_sym_PIPE_PIPE] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_PLUS_PLUS] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_PERCENT_EQ] = ACTIONS(831), + [anon_sym_CARET_EQ] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [aux_sym_number_token1] = ACTIONS(831), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_and] = ACTIONS(831), + [anon_sym_asort] = ACTIONS(831), + [anon_sym_asorti] = ACTIONS(831), + [anon_sym_bindtextdomain] = ACTIONS(831), + [anon_sym_compl] = ACTIONS(831), + [anon_sym_cos] = ACTIONS(831), + [anon_sym_dcgettext] = ACTIONS(831), + [anon_sym_dcngettext] = ACTIONS(831), + [anon_sym_exp] = ACTIONS(831), + [anon_sym_gensub] = ACTIONS(831), + [anon_sym_gsub] = ACTIONS(831), + [anon_sym_index] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_isarray] = ACTIONS(831), + [anon_sym_length] = ACTIONS(831), + [anon_sym_log] = ACTIONS(831), + [anon_sym_lshift] = ACTIONS(831), + [anon_sym_match] = ACTIONS(831), + [anon_sym_mktime] = ACTIONS(831), + [anon_sym_or] = ACTIONS(831), + [anon_sym_patsplit] = ACTIONS(831), + [anon_sym_rand] = ACTIONS(831), + [anon_sym_rshift] = ACTIONS(831), + [anon_sym_sin] = ACTIONS(831), + [anon_sym_split] = ACTIONS(831), + [anon_sym_sprintf] = ACTIONS(831), + [anon_sym_sqrt] = ACTIONS(831), + [anon_sym_srand] = ACTIONS(831), + [anon_sym_strftime] = ACTIONS(831), + [anon_sym_strtonum] = ACTIONS(831), + [anon_sym_sub] = ACTIONS(831), + [anon_sym_substr] = ACTIONS(831), + [anon_sym_systime] = ACTIONS(831), + [anon_sym_tolower] = ACTIONS(831), + [anon_sym_toupper] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + [sym_concatenating_space] = ACTIONS(833), + }, + [275] = { + [sym_identifier] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_CR_LF] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [sym_break_statement] = ACTIONS(907), + [sym_continue_statement] = ACTIONS(907), + [anon_sym_delete] = ACTIONS(907), + [anon_sym_exit] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_switch] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_getline] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(907), + [sym_nextfile_statement] = ACTIONS(907), + [anon_sym_print] = ACTIONS(907), + [anon_sym_printf] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), + [anon_sym_STAR_EQ] = ACTIONS(907), + [anon_sym_SLASH_EQ] = ACTIONS(907), + [anon_sym_PERCENT_EQ] = ACTIONS(907), + [anon_sym_CARET_EQ] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [aux_sym_number_token1] = ACTIONS(907), + [aux_sym_number_token2] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_asort] = ACTIONS(907), + [anon_sym_asorti] = ACTIONS(907), + [anon_sym_bindtextdomain] = ACTIONS(907), + [anon_sym_compl] = ACTIONS(907), + [anon_sym_cos] = ACTIONS(907), + [anon_sym_dcgettext] = ACTIONS(907), + [anon_sym_dcngettext] = ACTIONS(907), + [anon_sym_exp] = ACTIONS(907), + [anon_sym_gensub] = ACTIONS(907), + [anon_sym_gsub] = ACTIONS(907), + [anon_sym_index] = ACTIONS(907), + [anon_sym_int] = ACTIONS(907), + [anon_sym_isarray] = ACTIONS(907), + [anon_sym_length] = ACTIONS(907), + [anon_sym_log] = ACTIONS(907), + [anon_sym_lshift] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mktime] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_patsplit] = ACTIONS(907), + [anon_sym_rand] = ACTIONS(907), + [anon_sym_rshift] = ACTIONS(907), + [anon_sym_sin] = ACTIONS(907), + [anon_sym_split] = ACTIONS(907), + [anon_sym_sprintf] = ACTIONS(907), + [anon_sym_sqrt] = ACTIONS(907), + [anon_sym_srand] = ACTIONS(907), + [anon_sym_strftime] = ACTIONS(907), + [anon_sym_strtonum] = ACTIONS(907), + [anon_sym_sub] = ACTIONS(907), + [anon_sym_substr] = ACTIONS(907), + [anon_sym_systime] = ACTIONS(907), + [anon_sym_tolower] = ACTIONS(907), + [anon_sym_toupper] = ACTIONS(907), + [anon_sym_typeof] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [sym_concatenating_space] = ACTIONS(909), + }, + [276] = { + [sym_identifier] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_CR_LF] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [sym_break_statement] = ACTIONS(927), + [sym_continue_statement] = ACTIONS(927), + [anon_sym_delete] = ACTIONS(927), + [anon_sym_exit] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_getline] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [sym_next_statement] = ACTIONS(927), + [sym_nextfile_statement] = ACTIONS(927), + [anon_sym_print] = ACTIONS(927), + [anon_sym_printf] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_PERCENT_EQ] = ACTIONS(927), + [anon_sym_CARET_EQ] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(927), + [aux_sym_number_token1] = ACTIONS(927), + [aux_sym_number_token2] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_asort] = ACTIONS(927), + [anon_sym_asorti] = ACTIONS(927), + [anon_sym_bindtextdomain] = ACTIONS(927), + [anon_sym_compl] = ACTIONS(927), + [anon_sym_cos] = ACTIONS(927), + [anon_sym_dcgettext] = ACTIONS(927), + [anon_sym_dcngettext] = ACTIONS(927), + [anon_sym_exp] = ACTIONS(927), + [anon_sym_gensub] = ACTIONS(927), + [anon_sym_gsub] = ACTIONS(927), + [anon_sym_index] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_isarray] = ACTIONS(927), + [anon_sym_length] = ACTIONS(927), + [anon_sym_log] = ACTIONS(927), + [anon_sym_lshift] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mktime] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_patsplit] = ACTIONS(927), + [anon_sym_rand] = ACTIONS(927), + [anon_sym_rshift] = ACTIONS(927), + [anon_sym_sin] = ACTIONS(927), + [anon_sym_split] = ACTIONS(927), + [anon_sym_sprintf] = ACTIONS(927), + [anon_sym_sqrt] = ACTIONS(927), + [anon_sym_srand] = ACTIONS(927), + [anon_sym_strftime] = ACTIONS(927), + [anon_sym_strtonum] = ACTIONS(927), + [anon_sym_sub] = ACTIONS(927), + [anon_sym_substr] = ACTIONS(927), + [anon_sym_systime] = ACTIONS(927), + [anon_sym_tolower] = ACTIONS(927), + [anon_sym_toupper] = ACTIONS(927), + [anon_sym_typeof] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(927), + [sym_concatenating_space] = ACTIONS(929), + }, + [277] = { + [sym_identifier] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_CR_LF] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [sym_break_statement] = ACTIONS(935), + [sym_continue_statement] = ACTIONS(935), + [anon_sym_delete] = ACTIONS(935), + [anon_sym_exit] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_switch] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_getline] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [sym_next_statement] = ACTIONS(935), + [sym_nextfile_statement] = ACTIONS(935), + [anon_sym_print] = ACTIONS(935), + [anon_sym_printf] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PIPE_AMP] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), + [anon_sym_STAR_EQ] = ACTIONS(935), + [anon_sym_SLASH_EQ] = ACTIONS(935), + [anon_sym_PERCENT_EQ] = ACTIONS(935), + [anon_sym_CARET_EQ] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [aux_sym_number_token1] = ACTIONS(935), + [aux_sym_number_token2] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_asort] = ACTIONS(935), + [anon_sym_asorti] = ACTIONS(935), + [anon_sym_bindtextdomain] = ACTIONS(935), + [anon_sym_compl] = ACTIONS(935), + [anon_sym_cos] = ACTIONS(935), + [anon_sym_dcgettext] = ACTIONS(935), + [anon_sym_dcngettext] = ACTIONS(935), + [anon_sym_exp] = ACTIONS(935), + [anon_sym_gensub] = ACTIONS(935), + [anon_sym_gsub] = ACTIONS(935), + [anon_sym_index] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_isarray] = ACTIONS(935), + [anon_sym_length] = ACTIONS(935), + [anon_sym_log] = ACTIONS(935), + [anon_sym_lshift] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mktime] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_patsplit] = ACTIONS(935), + [anon_sym_rand] = ACTIONS(935), + [anon_sym_rshift] = ACTIONS(935), + [anon_sym_sin] = ACTIONS(935), + [anon_sym_split] = ACTIONS(935), + [anon_sym_sprintf] = ACTIONS(935), + [anon_sym_sqrt] = ACTIONS(935), + [anon_sym_srand] = ACTIONS(935), + [anon_sym_strftime] = ACTIONS(935), + [anon_sym_strtonum] = ACTIONS(935), + [anon_sym_sub] = ACTIONS(935), + [anon_sym_substr] = ACTIONS(935), + [anon_sym_systime] = ACTIONS(935), + [anon_sym_tolower] = ACTIONS(935), + [anon_sym_toupper] = ACTIONS(935), + [anon_sym_typeof] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [sym_concatenating_space] = ACTIONS(937), + }, + [278] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_PLUS_EQ] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(781), + [anon_sym_STAR_EQ] = ACTIONS(781), + [anon_sym_SLASH_EQ] = ACTIONS(781), + [anon_sym_PERCENT_EQ] = ACTIONS(781), + [anon_sym_CARET_EQ] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(733), + }, + [279] = { + [sym_identifier] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_CR_LF] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in] = ACTIONS(931), + [sym_break_statement] = ACTIONS(931), + [sym_continue_statement] = ACTIONS(931), + [anon_sym_delete] = ACTIONS(931), + [anon_sym_exit] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_getline] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [sym_next_statement] = ACTIONS(931), + [sym_nextfile_statement] = ACTIONS(931), + [anon_sym_print] = ACTIONS(931), + [anon_sym_printf] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [aux_sym_number_token1] = ACTIONS(931), + [aux_sym_number_token2] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_asort] = ACTIONS(931), + [anon_sym_asorti] = ACTIONS(931), + [anon_sym_bindtextdomain] = ACTIONS(931), + [anon_sym_compl] = ACTIONS(931), + [anon_sym_cos] = ACTIONS(931), + [anon_sym_dcgettext] = ACTIONS(931), + [anon_sym_dcngettext] = ACTIONS(931), + [anon_sym_exp] = ACTIONS(931), + [anon_sym_gensub] = ACTIONS(931), + [anon_sym_gsub] = ACTIONS(931), + [anon_sym_index] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_isarray] = ACTIONS(931), + [anon_sym_length] = ACTIONS(931), + [anon_sym_log] = ACTIONS(931), + [anon_sym_lshift] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mktime] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_patsplit] = ACTIONS(931), + [anon_sym_rand] = ACTIONS(931), + [anon_sym_rshift] = ACTIONS(931), + [anon_sym_sin] = ACTIONS(931), + [anon_sym_split] = ACTIONS(931), + [anon_sym_sprintf] = ACTIONS(931), + [anon_sym_sqrt] = ACTIONS(931), + [anon_sym_srand] = ACTIONS(931), + [anon_sym_strftime] = ACTIONS(931), + [anon_sym_strtonum] = ACTIONS(931), + [anon_sym_sub] = ACTIONS(931), + [anon_sym_substr] = ACTIONS(931), + [anon_sym_systime] = ACTIONS(931), + [anon_sym_tolower] = ACTIONS(931), + [anon_sym_toupper] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [sym_concatenating_space] = ACTIONS(933), + }, + [280] = { + [sym_identifier] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(939), + [anon_sym_CR_LF] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [sym_break_statement] = ACTIONS(939), + [sym_continue_statement] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_exit] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_getline] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [sym_next_statement] = ACTIONS(939), + [sym_nextfile_statement] = ACTIONS(939), + [anon_sym_print] = ACTIONS(939), + [anon_sym_printf] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_PLUS_EQ] = ACTIONS(939), + [anon_sym_DASH_EQ] = ACTIONS(939), + [anon_sym_STAR_EQ] = ACTIONS(939), + [anon_sym_SLASH_EQ] = ACTIONS(939), + [anon_sym_PERCENT_EQ] = ACTIONS(939), + [anon_sym_CARET_EQ] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [aux_sym_number_token1] = ACTIONS(939), + [aux_sym_number_token2] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_asort] = ACTIONS(939), + [anon_sym_asorti] = ACTIONS(939), + [anon_sym_bindtextdomain] = ACTIONS(939), + [anon_sym_compl] = ACTIONS(939), + [anon_sym_cos] = ACTIONS(939), + [anon_sym_dcgettext] = ACTIONS(939), + [anon_sym_dcngettext] = ACTIONS(939), + [anon_sym_exp] = ACTIONS(939), + [anon_sym_gensub] = ACTIONS(939), + [anon_sym_gsub] = ACTIONS(939), + [anon_sym_index] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_isarray] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_log] = ACTIONS(939), + [anon_sym_lshift] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mktime] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_patsplit] = ACTIONS(939), + [anon_sym_rand] = ACTIONS(939), + [anon_sym_rshift] = ACTIONS(939), + [anon_sym_sin] = ACTIONS(939), + [anon_sym_split] = ACTIONS(939), + [anon_sym_sprintf] = ACTIONS(939), + [anon_sym_sqrt] = ACTIONS(939), + [anon_sym_srand] = ACTIONS(939), + [anon_sym_strftime] = ACTIONS(939), + [anon_sym_strtonum] = ACTIONS(939), + [anon_sym_sub] = ACTIONS(939), + [anon_sym_substr] = ACTIONS(939), + [anon_sym_systime] = ACTIONS(939), + [anon_sym_tolower] = ACTIONS(939), + [anon_sym_toupper] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(939), + [sym_concatenating_space] = ACTIONS(941), + }, + [281] = { + [sym_identifier] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_CR_LF] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(943), + [sym_break_statement] = ACTIONS(901), + [sym_continue_statement] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_exit] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_getline] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(901), + [sym_nextfile_statement] = ACTIONS(901), + [anon_sym_print] = ACTIONS(901), + [anon_sym_printf] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PIPE_AMP] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_PLUS_EQ] = ACTIONS(901), + [anon_sym_DASH_EQ] = ACTIONS(901), + [anon_sym_STAR_EQ] = ACTIONS(901), + [anon_sym_SLASH_EQ] = ACTIONS(901), + [anon_sym_PERCENT_EQ] = ACTIONS(901), + [anon_sym_CARET_EQ] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(901), + [aux_sym_number_token1] = ACTIONS(901), + [aux_sym_number_token2] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_asort] = ACTIONS(901), + [anon_sym_asorti] = ACTIONS(901), + [anon_sym_bindtextdomain] = ACTIONS(901), + [anon_sym_compl] = ACTIONS(901), + [anon_sym_cos] = ACTIONS(901), + [anon_sym_dcgettext] = ACTIONS(901), + [anon_sym_dcngettext] = ACTIONS(901), + [anon_sym_exp] = ACTIONS(901), + [anon_sym_gensub] = ACTIONS(901), + [anon_sym_gsub] = ACTIONS(901), + [anon_sym_index] = ACTIONS(901), + [anon_sym_int] = ACTIONS(901), + [anon_sym_isarray] = ACTIONS(901), + [anon_sym_length] = ACTIONS(901), + [anon_sym_log] = ACTIONS(901), + [anon_sym_lshift] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mktime] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_patsplit] = ACTIONS(901), + [anon_sym_rand] = ACTIONS(901), + [anon_sym_rshift] = ACTIONS(901), + [anon_sym_sin] = ACTIONS(901), + [anon_sym_split] = ACTIONS(901), + [anon_sym_sprintf] = ACTIONS(901), + [anon_sym_sqrt] = ACTIONS(901), + [anon_sym_srand] = ACTIONS(901), + [anon_sym_strftime] = ACTIONS(901), + [anon_sym_strtonum] = ACTIONS(901), + [anon_sym_sub] = ACTIONS(901), + [anon_sym_substr] = ACTIONS(901), + [anon_sym_systime] = ACTIONS(901), + [anon_sym_tolower] = ACTIONS(901), + [anon_sym_toupper] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(901), + [sym_concatenating_space] = ACTIONS(903), + }, + [282] = { + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(749), + [anon_sym_DASH_EQ] = ACTIONS(749), + [anon_sym_STAR_EQ] = ACTIONS(749), + [anon_sym_SLASH_EQ] = ACTIONS(749), + [anon_sym_PERCENT_EQ] = ACTIONS(749), + [anon_sym_CARET_EQ] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + }, + [283] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), + [anon_sym_STAR_EQ] = ACTIONS(765), + [anon_sym_SLASH_EQ] = ACTIONS(765), + [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_CARET_EQ] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + }, + [284] = { + [sym_identifier] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_CR_LF] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_in] = ACTIONS(943), + [sym_break_statement] = ACTIONS(897), + [sym_continue_statement] = ACTIONS(897), + [anon_sym_delete] = ACTIONS(897), + [anon_sym_exit] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_switch] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_getline] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(897), + [sym_nextfile_statement] = ACTIONS(897), + [anon_sym_print] = ACTIONS(897), + [anon_sym_printf] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_PLUS_EQ] = ACTIONS(897), + [anon_sym_DASH_EQ] = ACTIONS(897), + [anon_sym_STAR_EQ] = ACTIONS(897), + [anon_sym_SLASH_EQ] = ACTIONS(897), + [anon_sym_PERCENT_EQ] = ACTIONS(897), + [anon_sym_CARET_EQ] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [aux_sym_number_token1] = ACTIONS(897), + [aux_sym_number_token2] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_asort] = ACTIONS(897), + [anon_sym_asorti] = ACTIONS(897), + [anon_sym_bindtextdomain] = ACTIONS(897), + [anon_sym_compl] = ACTIONS(897), + [anon_sym_cos] = ACTIONS(897), + [anon_sym_dcgettext] = ACTIONS(897), + [anon_sym_dcngettext] = ACTIONS(897), + [anon_sym_exp] = ACTIONS(897), + [anon_sym_gensub] = ACTIONS(897), + [anon_sym_gsub] = ACTIONS(897), + [anon_sym_index] = ACTIONS(897), + [anon_sym_int] = ACTIONS(897), + [anon_sym_isarray] = ACTIONS(897), + [anon_sym_length] = ACTIONS(897), + [anon_sym_log] = ACTIONS(897), + [anon_sym_lshift] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_mktime] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_patsplit] = ACTIONS(897), + [anon_sym_rand] = ACTIONS(897), + [anon_sym_rshift] = ACTIONS(897), + [anon_sym_sin] = ACTIONS(897), + [anon_sym_split] = ACTIONS(897), + [anon_sym_sprintf] = ACTIONS(897), + [anon_sym_sqrt] = ACTIONS(897), + [anon_sym_srand] = ACTIONS(897), + [anon_sym_strftime] = ACTIONS(897), + [anon_sym_strtonum] = ACTIONS(897), + [anon_sym_sub] = ACTIONS(897), + [anon_sym_substr] = ACTIONS(897), + [anon_sym_systime] = ACTIONS(897), + [anon_sym_tolower] = ACTIONS(897), + [anon_sym_toupper] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(897), + [sym_concatenating_space] = ACTIONS(899), + }, + [285] = { + [sym_identifier] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_CR_LF] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(835), + [anon_sym_for] = ACTIONS(835), + [anon_sym_in] = ACTIONS(835), + [sym_break_statement] = ACTIONS(835), + [sym_continue_statement] = ACTIONS(835), + [anon_sym_delete] = ACTIONS(835), + [anon_sym_exit] = ACTIONS(835), + [anon_sym_return] = ACTIONS(835), + [anon_sym_switch] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_getline] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [sym_next_statement] = ACTIONS(835), + [sym_nextfile_statement] = ACTIONS(835), + [anon_sym_print] = ACTIONS(835), + [anon_sym_printf] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PIPE_AMP] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(835), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(835), + [anon_sym_BANG_TILDE] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(835), + [anon_sym_DASH_DASH] = ACTIONS(835), + [anon_sym_EQ] = ACTIONS(835), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(835), + [aux_sym_number_token1] = ACTIONS(835), + [aux_sym_number_token2] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(835), + [anon_sym_and] = ACTIONS(835), + [anon_sym_asort] = ACTIONS(835), + [anon_sym_asorti] = ACTIONS(835), + [anon_sym_bindtextdomain] = ACTIONS(835), + [anon_sym_compl] = ACTIONS(835), + [anon_sym_cos] = ACTIONS(835), + [anon_sym_dcgettext] = ACTIONS(835), + [anon_sym_dcngettext] = ACTIONS(835), + [anon_sym_exp] = ACTIONS(835), + [anon_sym_gensub] = ACTIONS(835), + [anon_sym_gsub] = ACTIONS(835), + [anon_sym_index] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_isarray] = ACTIONS(835), + [anon_sym_length] = ACTIONS(835), + [anon_sym_log] = ACTIONS(835), + [anon_sym_lshift] = ACTIONS(835), + [anon_sym_match] = ACTIONS(835), + [anon_sym_mktime] = ACTIONS(835), + [anon_sym_or] = ACTIONS(835), + [anon_sym_patsplit] = ACTIONS(835), + [anon_sym_rand] = ACTIONS(835), + [anon_sym_rshift] = ACTIONS(835), + [anon_sym_sin] = ACTIONS(835), + [anon_sym_split] = ACTIONS(835), + [anon_sym_sprintf] = ACTIONS(835), + [anon_sym_sqrt] = ACTIONS(835), + [anon_sym_srand] = ACTIONS(835), + [anon_sym_strftime] = ACTIONS(835), + [anon_sym_strtonum] = ACTIONS(835), + [anon_sym_sub] = ACTIONS(835), + [anon_sym_substr] = ACTIONS(835), + [anon_sym_systime] = ACTIONS(835), + [anon_sym_tolower] = ACTIONS(835), + [anon_sym_toupper] = ACTIONS(835), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(835), + [anon_sym_POUND] = ACTIONS(835), + [sym_concatenating_space] = ACTIONS(837), + }, + [286] = { + [sym_identifier] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(877), + [anon_sym_CR_LF] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [sym_break_statement] = ACTIONS(877), + [sym_continue_statement] = ACTIONS(877), + [anon_sym_delete] = ACTIONS(877), + [anon_sym_exit] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_switch] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_getline] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [sym_next_statement] = ACTIONS(877), + [sym_nextfile_statement] = ACTIONS(877), + [anon_sym_print] = ACTIONS(877), + [anon_sym_printf] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_GT_GT] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_PLUS_EQ] = ACTIONS(877), + [anon_sym_DASH_EQ] = ACTIONS(877), + [anon_sym_STAR_EQ] = ACTIONS(877), + [anon_sym_SLASH_EQ] = ACTIONS(877), + [anon_sym_PERCENT_EQ] = ACTIONS(877), + [anon_sym_CARET_EQ] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_AT] = ACTIONS(877), + [aux_sym_number_token1] = ACTIONS(877), + [aux_sym_number_token2] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_asort] = ACTIONS(877), + [anon_sym_asorti] = ACTIONS(877), + [anon_sym_bindtextdomain] = ACTIONS(877), + [anon_sym_compl] = ACTIONS(877), + [anon_sym_cos] = ACTIONS(877), + [anon_sym_dcgettext] = ACTIONS(877), + [anon_sym_dcngettext] = ACTIONS(877), + [anon_sym_exp] = ACTIONS(877), + [anon_sym_gensub] = ACTIONS(877), + [anon_sym_gsub] = ACTIONS(877), + [anon_sym_index] = ACTIONS(877), + [anon_sym_int] = ACTIONS(877), + [anon_sym_isarray] = ACTIONS(877), + [anon_sym_length] = ACTIONS(877), + [anon_sym_log] = ACTIONS(877), + [anon_sym_lshift] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mktime] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_patsplit] = ACTIONS(877), + [anon_sym_rand] = ACTIONS(877), + [anon_sym_rshift] = ACTIONS(877), + [anon_sym_sin] = ACTIONS(877), + [anon_sym_split] = ACTIONS(877), + [anon_sym_sprintf] = ACTIONS(877), + [anon_sym_sqrt] = ACTIONS(877), + [anon_sym_srand] = ACTIONS(877), + [anon_sym_strftime] = ACTIONS(877), + [anon_sym_strtonum] = ACTIONS(877), + [anon_sym_sub] = ACTIONS(877), + [anon_sym_substr] = ACTIONS(877), + [anon_sym_systime] = ACTIONS(877), + [anon_sym_tolower] = ACTIONS(877), + [anon_sym_toupper] = ACTIONS(877), + [anon_sym_typeof] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [sym_concatenating_space] = ACTIONS(879), + }, + [287] = { + [sym_identifier] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [anon_sym_CR_LF] = ACTIONS(851), + [anon_sym_if] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(851), + [anon_sym_for] = ACTIONS(851), + [anon_sym_in] = ACTIONS(851), + [sym_break_statement] = ACTIONS(851), + [sym_continue_statement] = ACTIONS(851), + [anon_sym_delete] = ACTIONS(851), + [anon_sym_exit] = ACTIONS(851), + [anon_sym_return] = ACTIONS(851), + [anon_sym_switch] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_getline] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [sym_next_statement] = ACTIONS(851), + [sym_nextfile_statement] = ACTIONS(851), + [anon_sym_print] = ACTIONS(851), + [anon_sym_printf] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_PIPE_AMP] = ACTIONS(851), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_STAR_STAR] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_BANG_TILDE] = ACTIONS(851), + [anon_sym_AMP_AMP] = ACTIONS(851), + [anon_sym_PIPE_PIPE] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_PLUS_EQ] = ACTIONS(851), + [anon_sym_DASH_EQ] = ACTIONS(851), + [anon_sym_STAR_EQ] = ACTIONS(851), + [anon_sym_SLASH_EQ] = ACTIONS(851), + [anon_sym_PERCENT_EQ] = ACTIONS(851), + [anon_sym_CARET_EQ] = ACTIONS(851), + [anon_sym_DOLLAR] = ACTIONS(851), + [anon_sym_AT] = ACTIONS(851), + [aux_sym_number_token1] = ACTIONS(851), + [aux_sym_number_token2] = ACTIONS(851), + [anon_sym_DQUOTE] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_asort] = ACTIONS(851), + [anon_sym_asorti] = ACTIONS(851), + [anon_sym_bindtextdomain] = ACTIONS(851), + [anon_sym_compl] = ACTIONS(851), + [anon_sym_cos] = ACTIONS(851), + [anon_sym_dcgettext] = ACTIONS(851), + [anon_sym_dcngettext] = ACTIONS(851), + [anon_sym_exp] = ACTIONS(851), + [anon_sym_gensub] = ACTIONS(851), + [anon_sym_gsub] = ACTIONS(851), + [anon_sym_index] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_isarray] = ACTIONS(851), + [anon_sym_length] = ACTIONS(851), + [anon_sym_log] = ACTIONS(851), + [anon_sym_lshift] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_mktime] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_patsplit] = ACTIONS(851), + [anon_sym_rand] = ACTIONS(851), + [anon_sym_rshift] = ACTIONS(851), + [anon_sym_sin] = ACTIONS(851), + [anon_sym_split] = ACTIONS(851), + [anon_sym_sprintf] = ACTIONS(851), + [anon_sym_sqrt] = ACTIONS(851), + [anon_sym_srand] = ACTIONS(851), + [anon_sym_strftime] = ACTIONS(851), + [anon_sym_strtonum] = ACTIONS(851), + [anon_sym_sub] = ACTIONS(851), + [anon_sym_substr] = ACTIONS(851), + [anon_sym_systime] = ACTIONS(851), + [anon_sym_tolower] = ACTIONS(851), + [anon_sym_toupper] = ACTIONS(851), + [anon_sym_typeof] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(851), + [sym_concatenating_space] = ACTIONS(853), + }, + [288] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(943), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [289] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [290] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [291] = { + [sym_identifier] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(847), + [anon_sym_CR_LF] = ACTIONS(847), + [anon_sym_if] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_while] = ACTIONS(847), + [anon_sym_do] = ACTIONS(847), + [anon_sym_for] = ACTIONS(847), + [anon_sym_in] = ACTIONS(847), + [sym_break_statement] = ACTIONS(847), + [sym_continue_statement] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_exit] = ACTIONS(847), + [anon_sym_return] = ACTIONS(847), + [anon_sym_switch] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_getline] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(847), + [sym_next_statement] = ACTIONS(847), + [sym_nextfile_statement] = ACTIONS(847), + [anon_sym_print] = ACTIONS(847), + [anon_sym_printf] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_PIPE_AMP] = ACTIONS(847), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_CARET] = ACTIONS(847), + [anon_sym_STAR_STAR] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(847), + [anon_sym_PERCENT] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_BANG_TILDE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(847), + [anon_sym_AT] = ACTIONS(847), + [aux_sym_number_token1] = ACTIONS(847), + [aux_sym_number_token2] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_and] = ACTIONS(847), + [anon_sym_asort] = ACTIONS(847), + [anon_sym_asorti] = ACTIONS(847), + [anon_sym_bindtextdomain] = ACTIONS(847), + [anon_sym_compl] = ACTIONS(847), + [anon_sym_cos] = ACTIONS(847), + [anon_sym_dcgettext] = ACTIONS(847), + [anon_sym_dcngettext] = ACTIONS(847), + [anon_sym_exp] = ACTIONS(847), + [anon_sym_gensub] = ACTIONS(847), + [anon_sym_gsub] = ACTIONS(847), + [anon_sym_index] = ACTIONS(847), + [anon_sym_int] = ACTIONS(847), + [anon_sym_isarray] = ACTIONS(847), + [anon_sym_length] = ACTIONS(847), + [anon_sym_log] = ACTIONS(847), + [anon_sym_lshift] = ACTIONS(847), + [anon_sym_match] = ACTIONS(847), + [anon_sym_mktime] = ACTIONS(847), + [anon_sym_or] = ACTIONS(847), + [anon_sym_patsplit] = ACTIONS(847), + [anon_sym_rand] = ACTIONS(847), + [anon_sym_rshift] = ACTIONS(847), + [anon_sym_sin] = ACTIONS(847), + [anon_sym_split] = ACTIONS(847), + [anon_sym_sprintf] = ACTIONS(847), + [anon_sym_sqrt] = ACTIONS(847), + [anon_sym_srand] = ACTIONS(847), + [anon_sym_strftime] = ACTIONS(847), + [anon_sym_strtonum] = ACTIONS(847), + [anon_sym_sub] = ACTIONS(847), + [anon_sym_substr] = ACTIONS(847), + [anon_sym_systime] = ACTIONS(847), + [anon_sym_tolower] = ACTIONS(847), + [anon_sym_toupper] = ACTIONS(847), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_xor] = ACTIONS(847), + [anon_sym_POUND] = ACTIONS(847), + [sym_concatenating_space] = ACTIONS(849), + }, + [292] = { + [sym_identifier] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LF] = ACTIONS(843), + [anon_sym_CR_LF] = ACTIONS(843), + [anon_sym_if] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(843), + [anon_sym_for] = ACTIONS(843), + [anon_sym_in] = ACTIONS(843), + [sym_break_statement] = ACTIONS(843), + [sym_continue_statement] = ACTIONS(843), + [anon_sym_delete] = ACTIONS(843), + [anon_sym_exit] = ACTIONS(843), + [anon_sym_return] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_getline] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(843), + [sym_next_statement] = ACTIONS(843), + [sym_nextfile_statement] = ACTIONS(843), + [anon_sym_print] = ACTIONS(843), + [anon_sym_printf] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_GT_GT] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_PIPE_AMP] = ACTIONS(843), + [anon_sym_QMARK] = ACTIONS(843), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym_STAR_STAR] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_LT_EQ] = ACTIONS(843), + [anon_sym_GT_EQ] = ACTIONS(843), + [anon_sym_EQ_EQ] = ACTIONS(843), + [anon_sym_BANG_EQ] = ACTIONS(843), + [anon_sym_TILDE] = ACTIONS(843), + [anon_sym_BANG_TILDE] = ACTIONS(843), + [anon_sym_AMP_AMP] = ACTIONS(843), + [anon_sym_PIPE_PIPE] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_PLUS_PLUS] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(843), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_PLUS_EQ] = ACTIONS(843), + [anon_sym_DASH_EQ] = ACTIONS(843), + [anon_sym_STAR_EQ] = ACTIONS(843), + [anon_sym_SLASH_EQ] = ACTIONS(843), + [anon_sym_PERCENT_EQ] = ACTIONS(843), + [anon_sym_CARET_EQ] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_AT] = ACTIONS(843), + [aux_sym_number_token1] = ACTIONS(843), + [aux_sym_number_token2] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_and] = ACTIONS(843), + [anon_sym_asort] = ACTIONS(843), + [anon_sym_asorti] = ACTIONS(843), + [anon_sym_bindtextdomain] = ACTIONS(843), + [anon_sym_compl] = ACTIONS(843), + [anon_sym_cos] = ACTIONS(843), + [anon_sym_dcgettext] = ACTIONS(843), + [anon_sym_dcngettext] = ACTIONS(843), + [anon_sym_exp] = ACTIONS(843), + [anon_sym_gensub] = ACTIONS(843), + [anon_sym_gsub] = ACTIONS(843), + [anon_sym_index] = ACTIONS(843), + [anon_sym_int] = ACTIONS(843), + [anon_sym_isarray] = ACTIONS(843), + [anon_sym_length] = ACTIONS(843), + [anon_sym_log] = ACTIONS(843), + [anon_sym_lshift] = ACTIONS(843), + [anon_sym_match] = ACTIONS(843), + [anon_sym_mktime] = ACTIONS(843), + [anon_sym_or] = ACTIONS(843), + [anon_sym_patsplit] = ACTIONS(843), + [anon_sym_rand] = ACTIONS(843), + [anon_sym_rshift] = ACTIONS(843), + [anon_sym_sin] = ACTIONS(843), + [anon_sym_split] = ACTIONS(843), + [anon_sym_sprintf] = ACTIONS(843), + [anon_sym_sqrt] = ACTIONS(843), + [anon_sym_srand] = ACTIONS(843), + [anon_sym_strftime] = ACTIONS(843), + [anon_sym_strtonum] = ACTIONS(843), + [anon_sym_sub] = ACTIONS(843), + [anon_sym_substr] = ACTIONS(843), + [anon_sym_systime] = ACTIONS(843), + [anon_sym_tolower] = ACTIONS(843), + [anon_sym_toupper] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(843), + [anon_sym_xor] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(843), + [sym_concatenating_space] = ACTIONS(845), + }, + [293] = { + [sym_identifier] = ACTIONS(839), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(839), + [anon_sym_LF] = ACTIONS(839), + [anon_sym_CR_LF] = ACTIONS(839), + [anon_sym_if] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_while] = ACTIONS(839), + [anon_sym_do] = ACTIONS(839), + [anon_sym_for] = ACTIONS(839), + [anon_sym_in] = ACTIONS(839), + [sym_break_statement] = ACTIONS(839), + [sym_continue_statement] = ACTIONS(839), + [anon_sym_delete] = ACTIONS(839), + [anon_sym_exit] = ACTIONS(839), + [anon_sym_return] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_getline] = ACTIONS(839), + [anon_sym_LT] = ACTIONS(839), + [sym_next_statement] = ACTIONS(839), + [sym_nextfile_statement] = ACTIONS(839), + [anon_sym_print] = ACTIONS(839), + [anon_sym_printf] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [anon_sym_GT_GT] = ACTIONS(839), + [anon_sym_PIPE] = ACTIONS(839), + [anon_sym_PIPE_AMP] = ACTIONS(839), + [anon_sym_QMARK] = ACTIONS(839), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(839), + [anon_sym_GT_EQ] = ACTIONS(839), + [anon_sym_EQ_EQ] = ACTIONS(839), + [anon_sym_BANG_EQ] = ACTIONS(839), + [anon_sym_TILDE] = ACTIONS(839), + [anon_sym_BANG_TILDE] = ACTIONS(839), + [anon_sym_AMP_AMP] = ACTIONS(839), + [anon_sym_PIPE_PIPE] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(839), + [anon_sym_PLUS_PLUS] = ACTIONS(839), + [anon_sym_DASH_DASH] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_PLUS_EQ] = ACTIONS(839), + [anon_sym_DASH_EQ] = ACTIONS(839), + [anon_sym_STAR_EQ] = ACTIONS(839), + [anon_sym_SLASH_EQ] = ACTIONS(839), + [anon_sym_PERCENT_EQ] = ACTIONS(839), + [anon_sym_CARET_EQ] = ACTIONS(839), + [anon_sym_DOLLAR] = ACTIONS(839), + [anon_sym_AT] = ACTIONS(839), + [aux_sym_number_token1] = ACTIONS(839), + [aux_sym_number_token2] = ACTIONS(839), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_and] = ACTIONS(839), + [anon_sym_asort] = ACTIONS(839), + [anon_sym_asorti] = ACTIONS(839), + [anon_sym_bindtextdomain] = ACTIONS(839), + [anon_sym_compl] = ACTIONS(839), + [anon_sym_cos] = ACTIONS(839), + [anon_sym_dcgettext] = ACTIONS(839), + [anon_sym_dcngettext] = ACTIONS(839), + [anon_sym_exp] = ACTIONS(839), + [anon_sym_gensub] = ACTIONS(839), + [anon_sym_gsub] = ACTIONS(839), + [anon_sym_index] = ACTIONS(839), + [anon_sym_int] = ACTIONS(839), + [anon_sym_isarray] = ACTIONS(839), + [anon_sym_length] = ACTIONS(839), + [anon_sym_log] = ACTIONS(839), + [anon_sym_lshift] = ACTIONS(839), + [anon_sym_match] = ACTIONS(839), + [anon_sym_mktime] = ACTIONS(839), + [anon_sym_or] = ACTIONS(839), + [anon_sym_patsplit] = ACTIONS(839), + [anon_sym_rand] = ACTIONS(839), + [anon_sym_rshift] = ACTIONS(839), + [anon_sym_sin] = ACTIONS(839), + [anon_sym_split] = ACTIONS(839), + [anon_sym_sprintf] = ACTIONS(839), + [anon_sym_sqrt] = ACTIONS(839), + [anon_sym_srand] = ACTIONS(839), + [anon_sym_strftime] = ACTIONS(839), + [anon_sym_strtonum] = ACTIONS(839), + [anon_sym_sub] = ACTIONS(839), + [anon_sym_substr] = ACTIONS(839), + [anon_sym_systime] = ACTIONS(839), + [anon_sym_tolower] = ACTIONS(839), + [anon_sym_toupper] = ACTIONS(839), + [anon_sym_typeof] = ACTIONS(839), + [anon_sym_xor] = ACTIONS(839), + [anon_sym_POUND] = ACTIONS(839), + [sym_concatenating_space] = ACTIONS(841), + }, + [294] = { + [sym_identifier] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(889), + [anon_sym_CR_LF] = ACTIONS(889), + [anon_sym_if] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_while] = ACTIONS(889), + [anon_sym_do] = ACTIONS(889), + [anon_sym_for] = ACTIONS(889), + [anon_sym_in] = ACTIONS(889), + [sym_break_statement] = ACTIONS(889), + [sym_continue_statement] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_exit] = ACTIONS(889), + [anon_sym_return] = ACTIONS(889), + [anon_sym_switch] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_getline] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(889), + [sym_next_statement] = ACTIONS(889), + [sym_nextfile_statement] = ACTIONS(889), + [anon_sym_print] = ACTIONS(889), + [anon_sym_printf] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_GT_GT] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_STAR_STAR] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(889), + [anon_sym_BANG_TILDE] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_DASH_DASH] = ACTIONS(889), + [anon_sym_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(889), + [aux_sym_number_token1] = ACTIONS(889), + [aux_sym_number_token2] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_asort] = ACTIONS(889), + [anon_sym_asorti] = ACTIONS(889), + [anon_sym_bindtextdomain] = ACTIONS(889), + [anon_sym_compl] = ACTIONS(889), + [anon_sym_cos] = ACTIONS(889), + [anon_sym_dcgettext] = ACTIONS(889), + [anon_sym_dcngettext] = ACTIONS(889), + [anon_sym_exp] = ACTIONS(889), + [anon_sym_gensub] = ACTIONS(889), + [anon_sym_gsub] = ACTIONS(889), + [anon_sym_index] = ACTIONS(889), + [anon_sym_int] = ACTIONS(889), + [anon_sym_isarray] = ACTIONS(889), + [anon_sym_length] = ACTIONS(889), + [anon_sym_log] = ACTIONS(889), + [anon_sym_lshift] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_mktime] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_patsplit] = ACTIONS(889), + [anon_sym_rand] = ACTIONS(889), + [anon_sym_rshift] = ACTIONS(889), + [anon_sym_sin] = ACTIONS(889), + [anon_sym_split] = ACTIONS(889), + [anon_sym_sprintf] = ACTIONS(889), + [anon_sym_sqrt] = ACTIONS(889), + [anon_sym_srand] = ACTIONS(889), + [anon_sym_strftime] = ACTIONS(889), + [anon_sym_strtonum] = ACTIONS(889), + [anon_sym_sub] = ACTIONS(889), + [anon_sym_substr] = ACTIONS(889), + [anon_sym_systime] = ACTIONS(889), + [anon_sym_tolower] = ACTIONS(889), + [anon_sym_toupper] = ACTIONS(889), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(889), + [sym_concatenating_space] = ACTIONS(891), + }, + [295] = { + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + }, + [296] = { + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_CARET_EQ] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + }, + [297] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [298] = { + [sym_identifier] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [sym_break_statement] = ACTIONS(855), + [sym_continue_statement] = ACTIONS(855), + [anon_sym_delete] = ACTIONS(855), + [anon_sym_exit] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_getline] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(945), + [sym_next_statement] = ACTIONS(855), + [sym_nextfile_statement] = ACTIONS(855), + [anon_sym_print] = ACTIONS(855), + [anon_sym_printf] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_PIPE_AMP] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(855), + [anon_sym_DASH_EQ] = ACTIONS(855), + [anon_sym_STAR_EQ] = ACTIONS(855), + [anon_sym_SLASH_EQ] = ACTIONS(855), + [anon_sym_PERCENT_EQ] = ACTIONS(855), + [anon_sym_CARET_EQ] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(855), + [aux_sym_number_token1] = ACTIONS(855), + [aux_sym_number_token2] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_asort] = ACTIONS(855), + [anon_sym_asorti] = ACTIONS(855), + [anon_sym_bindtextdomain] = ACTIONS(855), + [anon_sym_compl] = ACTIONS(855), + [anon_sym_cos] = ACTIONS(855), + [anon_sym_dcgettext] = ACTIONS(855), + [anon_sym_dcngettext] = ACTIONS(855), + [anon_sym_exp] = ACTIONS(855), + [anon_sym_gensub] = ACTIONS(855), + [anon_sym_gsub] = ACTIONS(855), + [anon_sym_index] = ACTIONS(855), + [anon_sym_int] = ACTIONS(855), + [anon_sym_isarray] = ACTIONS(855), + [anon_sym_length] = ACTIONS(855), + [anon_sym_log] = ACTIONS(855), + [anon_sym_lshift] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_mktime] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_patsplit] = ACTIONS(855), + [anon_sym_rand] = ACTIONS(855), + [anon_sym_rshift] = ACTIONS(855), + [anon_sym_sin] = ACTIONS(855), + [anon_sym_split] = ACTIONS(855), + [anon_sym_sprintf] = ACTIONS(855), + [anon_sym_sqrt] = ACTIONS(855), + [anon_sym_srand] = ACTIONS(855), + [anon_sym_strftime] = ACTIONS(855), + [anon_sym_strtonum] = ACTIONS(855), + [anon_sym_sub] = ACTIONS(855), + [anon_sym_substr] = ACTIONS(855), + [anon_sym_systime] = ACTIONS(855), + [anon_sym_tolower] = ACTIONS(855), + [anon_sym_toupper] = ACTIONS(855), + [anon_sym_typeof] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [sym_concatenating_space] = ACTIONS(857), + }, + [299] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [300] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_STAR_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [301] = { + [sym__getline_exp] = STATE(529), + [sym_getline_input] = STATE(529), + [sym_getline_file] = STATE(529), + [sym__exp] = STATE(529), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(529), + [sym_assignment_exp] = STATE(529), + [sym_piped_io_exp] = STATE(529), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(529), + [sym_regex_constant] = STATE(529), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(529), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(963), + [anon_sym_CR_LF] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_while] = ACTIONS(963), + [anon_sym_do] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [sym_break_statement] = ACTIONS(963), + [sym_continue_statement] = ACTIONS(963), + [anon_sym_delete] = ACTIONS(963), + [anon_sym_exit] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_switch] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(963), + [sym_nextfile_statement] = ACTIONS(963), + [anon_sym_print] = ACTIONS(963), + [anon_sym_printf] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(691), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(375), + [anon_sym_DQUOTE] = ACTIONS(693), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(963), + [sym__if_else_separator] = ACTIONS(965), + }, + [302] = { + [sym_rule] = STATE(303), + [sym_pattern] = STATE(1289), + [sym_range_pattern] = STATE(1297), + [sym__special_pattern] = STATE(1297), + [sym_directive] = STATE(303), + [sym__getline_exp] = STATE(618), + [sym_getline_input] = STATE(618), + [sym_getline_file] = STATE(618), + [sym_block] = STATE(1295), + [sym__exp] = STATE(618), + [sym_ternary_exp] = STATE(580), + [sym_binary_exp] = STATE(580), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(580), + [sym_update_exp] = STATE(618), + [sym_assignment_exp] = STATE(618), + [sym_piped_io_exp] = STATE(618), + [sym_string_concat] = STATE(580), + [sym_field_ref] = STATE(498), + [sym_array_ref] = STATE(490), + [sym_regex] = STATE(618), + [sym_regex_constant] = STATE(618), + [sym_grouping] = STATE(580), + [sym__primitive] = STATE(580), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(403), + [sym_number] = STATE(580), + [sym_string] = STATE(580), + [sym_func_def] = STATE(303), + [sym_func_call] = STATE(580), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(618), + [sym_comment] = STATE(303), + [aux_sym_program_repeat1] = STATE(303), + [ts_builtin_sym_end] = ACTIONS(967), + [sym_identifier] = ACTIONS(5), + [anon_sym_BEGIN] = ACTIONS(7), + [anon_sym_END] = ACTIONS(7), + [anon_sym_BEGINFILE] = ACTIONS(7), + [anon_sym_ENDFILE] = ACTIONS(7), + [anon_sym_ATinclude] = ACTIONS(9), + [anon_sym_ATload] = ACTIONS(9), + [anon_sym_ATnamespace] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_getline] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(23), + [anon_sym_DASH_DASH] = ACTIONS(23), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_function] = ACTIONS(35), + [anon_sym_func] = ACTIONS(35), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + [anon_sym_POUND] = ACTIONS(39), + }, + [303] = { + [sym_rule] = STATE(303), + [sym_pattern] = STATE(1289), + [sym_range_pattern] = STATE(1297), + [sym__special_pattern] = STATE(1297), + [sym_directive] = STATE(303), + [sym__getline_exp] = STATE(618), + [sym_getline_input] = STATE(618), + [sym_getline_file] = STATE(618), + [sym_block] = STATE(1295), + [sym__exp] = STATE(618), + [sym_ternary_exp] = STATE(580), + [sym_binary_exp] = STATE(580), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(580), + [sym_update_exp] = STATE(618), + [sym_assignment_exp] = STATE(618), + [sym_piped_io_exp] = STATE(618), + [sym_string_concat] = STATE(580), + [sym_field_ref] = STATE(498), + [sym_array_ref] = STATE(490), + [sym_regex] = STATE(618), + [sym_regex_constant] = STATE(618), + [sym_grouping] = STATE(580), + [sym__primitive] = STATE(580), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(403), + [sym_number] = STATE(580), + [sym_string] = STATE(580), + [sym_func_def] = STATE(303), + [sym_func_call] = STATE(580), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(618), + [sym_comment] = STATE(303), + [aux_sym_program_repeat1] = STATE(303), + [ts_builtin_sym_end] = ACTIONS(969), + [sym_identifier] = ACTIONS(971), + [anon_sym_BEGIN] = ACTIONS(974), + [anon_sym_END] = ACTIONS(974), + [anon_sym_BEGINFILE] = ACTIONS(974), + [anon_sym_ENDFILE] = ACTIONS(974), + [anon_sym_ATinclude] = ACTIONS(977), + [anon_sym_ATload] = ACTIONS(977), + [anon_sym_ATnamespace] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_getline] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1004), + [aux_sym_number_token1] = ACTIONS(1007), + [aux_sym_number_token2] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1013), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_func] = ACTIONS(1016), + [anon_sym_and] = ACTIONS(1019), + [anon_sym_asort] = ACTIONS(1019), + [anon_sym_asorti] = ACTIONS(1019), + [anon_sym_bindtextdomain] = ACTIONS(1019), + [anon_sym_compl] = ACTIONS(1019), + [anon_sym_cos] = ACTIONS(1019), + [anon_sym_dcgettext] = ACTIONS(1019), + [anon_sym_dcngettext] = ACTIONS(1019), + [anon_sym_exp] = ACTIONS(1019), + [anon_sym_gensub] = ACTIONS(1019), + [anon_sym_gsub] = ACTIONS(1019), + [anon_sym_index] = ACTIONS(1019), + [anon_sym_int] = ACTIONS(1019), + [anon_sym_isarray] = ACTIONS(1019), + [anon_sym_length] = ACTIONS(1019), + [anon_sym_log] = ACTIONS(1019), + [anon_sym_lshift] = ACTIONS(1019), + [anon_sym_match] = ACTIONS(1019), + [anon_sym_mktime] = ACTIONS(1019), + [anon_sym_or] = ACTIONS(1019), + [anon_sym_patsplit] = ACTIONS(1019), + [anon_sym_rand] = ACTIONS(1019), + [anon_sym_rshift] = ACTIONS(1019), + [anon_sym_sin] = ACTIONS(1019), + [anon_sym_split] = ACTIONS(1019), + [anon_sym_sprintf] = ACTIONS(1019), + [anon_sym_sqrt] = ACTIONS(1019), + [anon_sym_srand] = ACTIONS(1019), + [anon_sym_strftime] = ACTIONS(1019), + [anon_sym_strtonum] = ACTIONS(1019), + [anon_sym_sub] = ACTIONS(1019), + [anon_sym_substr] = ACTIONS(1019), + [anon_sym_systime] = ACTIONS(1019), + [anon_sym_tolower] = ACTIONS(1019), + [anon_sym_toupper] = ACTIONS(1019), + [anon_sym_typeof] = ACTIONS(1019), + [anon_sym_xor] = ACTIONS(1019), + [anon_sym_POUND] = ACTIONS(1022), + }, + [304] = { + [sym__getline_exp] = STATE(521), + [sym_getline_input] = STATE(521), + [sym_getline_file] = STATE(521), + [sym__exp] = STATE(521), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(521), + [sym_assignment_exp] = STATE(521), + [sym_piped_io_exp] = STATE(521), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(521), + [sym_regex_constant] = STATE(521), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(521), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1025), + [anon_sym_CR_LF] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1025), + [sym_break_statement] = ACTIONS(1025), + [sym_continue_statement] = ACTIONS(1025), + [anon_sym_delete] = ACTIONS(1025), + [anon_sym_exit] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1025), + [anon_sym_switch] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_getline] = ACTIONS(357), + [sym_next_statement] = ACTIONS(1025), + [sym_nextfile_statement] = ACTIONS(1025), + [anon_sym_print] = ACTIONS(1025), + [anon_sym_printf] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(691), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(375), + [anon_sym_DQUOTE] = ACTIONS(693), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(1025), + [sym__if_else_separator] = ACTIONS(1027), + }, + [305] = { + [sym_array_ref] = STATE(319), + [sym_namespace] = STATE(2521), + [sym_ns_qualified_name] = STATE(319), + [sym_identifier] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym_concatenating_space] = ACTIONS(729), + [sym__if_else_separator] = ACTIONS(729), + }, + [306] = { + [sym__getline_exp] = STATE(544), + [sym_getline_input] = STATE(544), + [sym_getline_file] = STATE(544), + [sym__exp] = STATE(544), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(544), + [sym_assignment_exp] = STATE(544), + [sym_piped_io_exp] = STATE(544), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(544), + [sym_regex_constant] = STATE(544), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(544), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(963), + [anon_sym_CR_LF] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(697), + [anon_sym_while] = ACTIONS(963), + [anon_sym_do] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [sym_break_statement] = ACTIONS(963), + [sym_continue_statement] = ACTIONS(963), + [anon_sym_delete] = ACTIONS(963), + [anon_sym_exit] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_switch] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(963), + [sym_nextfile_statement] = ACTIONS(963), + [anon_sym_print] = ACTIONS(963), + [anon_sym_printf] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(707), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(133), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(963), + }, + [307] = { + [sym__getline_exp] = STATE(545), + [sym_getline_input] = STATE(545), + [sym_getline_file] = STATE(545), + [sym__exp] = STATE(545), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(545), + [sym_assignment_exp] = STATE(545), + [sym_piped_io_exp] = STATE(545), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(545), + [sym_regex_constant] = STATE(545), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(545), + [sym_identifier] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1025), + [anon_sym_CR_LF] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(697), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1025), + [sym_break_statement] = ACTIONS(1025), + [sym_continue_statement] = ACTIONS(1025), + [anon_sym_delete] = ACTIONS(1025), + [anon_sym_exit] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1025), + [anon_sym_switch] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_getline] = ACTIONS(115), + [sym_next_statement] = ACTIONS(1025), + [sym_nextfile_statement] = ACTIONS(1025), + [anon_sym_print] = ACTIONS(1025), + [anon_sym_printf] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(707), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(133), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(1025), + }, + [308] = { + [sym_array_ref] = STATE(319), + [sym_namespace] = STATE(2521), + [sym_ns_qualified_name] = STATE(330), + [sym_identifier] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(1033), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym_concatenating_space] = ACTIONS(729), + [sym__if_else_separator] = ACTIONS(729), + }, + [309] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1035), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + [sym__if_else_separator] = ACTIONS(759), + }, + [310] = { + [sym_identifier] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_CR_LF] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [sym_break_statement] = ACTIONS(801), + [sym_continue_statement] = ACTIONS(801), + [anon_sym_delete] = ACTIONS(801), + [anon_sym_exit] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_switch] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_case] = ACTIONS(801), + [anon_sym_default] = ACTIONS(801), + [anon_sym_getline] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [sym_next_statement] = ACTIONS(801), + [sym_nextfile_statement] = ACTIONS(801), + [anon_sym_print] = ACTIONS(801), + [anon_sym_printf] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [aux_sym_number_token1] = ACTIONS(801), + [aux_sym_number_token2] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_asort] = ACTIONS(801), + [anon_sym_asorti] = ACTIONS(801), + [anon_sym_bindtextdomain] = ACTIONS(801), + [anon_sym_compl] = ACTIONS(801), + [anon_sym_cos] = ACTIONS(801), + [anon_sym_dcgettext] = ACTIONS(801), + [anon_sym_dcngettext] = ACTIONS(801), + [anon_sym_exp] = ACTIONS(801), + [anon_sym_gensub] = ACTIONS(801), + [anon_sym_gsub] = ACTIONS(801), + [anon_sym_index] = ACTIONS(801), + [anon_sym_int] = ACTIONS(801), + [anon_sym_isarray] = ACTIONS(801), + [anon_sym_length] = ACTIONS(801), + [anon_sym_log] = ACTIONS(801), + [anon_sym_lshift] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_mktime] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_patsplit] = ACTIONS(801), + [anon_sym_rand] = ACTIONS(801), + [anon_sym_rshift] = ACTIONS(801), + [anon_sym_sin] = ACTIONS(801), + [anon_sym_split] = ACTIONS(801), + [anon_sym_sprintf] = ACTIONS(801), + [anon_sym_sqrt] = ACTIONS(801), + [anon_sym_srand] = ACTIONS(801), + [anon_sym_strftime] = ACTIONS(801), + [anon_sym_strtonum] = ACTIONS(801), + [anon_sym_sub] = ACTIONS(801), + [anon_sym_substr] = ACTIONS(801), + [anon_sym_systime] = ACTIONS(801), + [anon_sym_tolower] = ACTIONS(801), + [anon_sym_toupper] = ACTIONS(801), + [anon_sym_typeof] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [sym__if_else_separator] = ACTIONS(803), + }, + [311] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + [sym__if_else_separator] = ACTIONS(759), + }, + [312] = { + [sym_array_ref] = STATE(369), + [sym_namespace] = STATE(2504), + [sym_ns_qualified_name] = STATE(369), + [sym_identifier] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym_concatenating_space] = ACTIONS(729), + }, + [313] = { + [sym_array_ref] = STATE(369), + [sym_namespace] = STATE(2504), + [sym_ns_qualified_name] = STATE(368), + [sym_identifier] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(1043), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym_concatenating_space] = ACTIONS(729), + }, + [314] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + [sym__if_else_separator] = ACTIONS(767), + }, + [315] = { + [sym_array_ref] = STATE(359), + [sym_namespace] = STATE(2519), + [sym_ns_qualified_name] = STATE(361), + [sym_identifier] = ACTIONS(1045), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(1047), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym__if_else_separator] = ACTIONS(729), + }, + [316] = { + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(769), + [anon_sym_CR_LF] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym_break_statement] = ACTIONS(769), + [sym_continue_statement] = ACTIONS(769), + [anon_sym_delete] = ACTIONS(769), + [anon_sym_exit] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_case] = ACTIONS(769), + [anon_sym_default] = ACTIONS(769), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [sym_next_statement] = ACTIONS(769), + [sym_nextfile_statement] = ACTIONS(769), + [anon_sym_print] = ACTIONS(769), + [anon_sym_printf] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + [sym__if_else_separator] = ACTIONS(771), + }, + [317] = { + [sym_array_ref] = STATE(359), + [sym_namespace] = STATE(2519), + [sym_ns_qualified_name] = STATE(359), + [sym_identifier] = ACTIONS(1049), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + [sym__if_else_separator] = ACTIONS(729), + }, + [318] = { + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(769), + [anon_sym_CR_LF] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym_break_statement] = ACTIONS(769), + [sym_continue_statement] = ACTIONS(769), + [anon_sym_delete] = ACTIONS(769), + [anon_sym_exit] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [sym_next_statement] = ACTIONS(769), + [sym_nextfile_statement] = ACTIONS(769), + [anon_sym_print] = ACTIONS(769), + [anon_sym_printf] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + [sym_concatenating_space] = ACTIONS(771), + [sym__if_else_separator] = ACTIONS(771), + }, + [319] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + [sym__if_else_separator] = ACTIONS(759), + }, + [320] = { + [sym_identifier] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_CR_LF] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [sym_break_statement] = ACTIONS(801), + [sym_continue_statement] = ACTIONS(801), + [anon_sym_delete] = ACTIONS(801), + [anon_sym_exit] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_switch] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_case] = ACTIONS(801), + [anon_sym_default] = ACTIONS(801), + [anon_sym_getline] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [sym_next_statement] = ACTIONS(801), + [sym_nextfile_statement] = ACTIONS(801), + [anon_sym_print] = ACTIONS(801), + [anon_sym_printf] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [aux_sym_number_token1] = ACTIONS(801), + [aux_sym_number_token2] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_asort] = ACTIONS(801), + [anon_sym_asorti] = ACTIONS(801), + [anon_sym_bindtextdomain] = ACTIONS(801), + [anon_sym_compl] = ACTIONS(801), + [anon_sym_cos] = ACTIONS(801), + [anon_sym_dcgettext] = ACTIONS(801), + [anon_sym_dcngettext] = ACTIONS(801), + [anon_sym_exp] = ACTIONS(801), + [anon_sym_gensub] = ACTIONS(801), + [anon_sym_gsub] = ACTIONS(801), + [anon_sym_index] = ACTIONS(801), + [anon_sym_int] = ACTIONS(801), + [anon_sym_isarray] = ACTIONS(801), + [anon_sym_length] = ACTIONS(801), + [anon_sym_log] = ACTIONS(801), + [anon_sym_lshift] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_mktime] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_patsplit] = ACTIONS(801), + [anon_sym_rand] = ACTIONS(801), + [anon_sym_rshift] = ACTIONS(801), + [anon_sym_sin] = ACTIONS(801), + [anon_sym_split] = ACTIONS(801), + [anon_sym_sprintf] = ACTIONS(801), + [anon_sym_sqrt] = ACTIONS(801), + [anon_sym_srand] = ACTIONS(801), + [anon_sym_strftime] = ACTIONS(801), + [anon_sym_strtonum] = ACTIONS(801), + [anon_sym_sub] = ACTIONS(801), + [anon_sym_substr] = ACTIONS(801), + [anon_sym_systime] = ACTIONS(801), + [anon_sym_tolower] = ACTIONS(801), + [anon_sym_toupper] = ACTIONS(801), + [anon_sym_typeof] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + }, + [321] = { + [sym_identifier] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(795), + [anon_sym_LF] = ACTIONS(795), + [anon_sym_CR_LF] = ACTIONS(795), + [anon_sym_if] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(795), + [anon_sym_for] = ACTIONS(795), + [anon_sym_in] = ACTIONS(795), + [sym_break_statement] = ACTIONS(795), + [sym_continue_statement] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_exit] = ACTIONS(795), + [anon_sym_return] = ACTIONS(795), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_getline] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [sym_next_statement] = ACTIONS(795), + [sym_nextfile_statement] = ACTIONS(795), + [anon_sym_print] = ACTIONS(795), + [anon_sym_printf] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_GT_GT] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_STAR_STAR] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_PERCENT] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(795), + [anon_sym_BANG_EQ] = ACTIONS(795), + [anon_sym_TILDE] = ACTIONS(795), + [anon_sym_BANG_TILDE] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(795), + [anon_sym_PIPE_PIPE] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_DOLLAR] = ACTIONS(795), + [sym_regex_flags] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(795), + [aux_sym_number_token1] = ACTIONS(795), + [aux_sym_number_token2] = ACTIONS(795), + [anon_sym_DQUOTE] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_asort] = ACTIONS(795), + [anon_sym_asorti] = ACTIONS(795), + [anon_sym_bindtextdomain] = ACTIONS(795), + [anon_sym_compl] = ACTIONS(795), + [anon_sym_cos] = ACTIONS(795), + [anon_sym_dcgettext] = ACTIONS(795), + [anon_sym_dcngettext] = ACTIONS(795), + [anon_sym_exp] = ACTIONS(795), + [anon_sym_gensub] = ACTIONS(795), + [anon_sym_gsub] = ACTIONS(795), + [anon_sym_index] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_isarray] = ACTIONS(795), + [anon_sym_length] = ACTIONS(795), + [anon_sym_log] = ACTIONS(795), + [anon_sym_lshift] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_mktime] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_patsplit] = ACTIONS(795), + [anon_sym_rand] = ACTIONS(795), + [anon_sym_rshift] = ACTIONS(795), + [anon_sym_sin] = ACTIONS(795), + [anon_sym_split] = ACTIONS(795), + [anon_sym_sprintf] = ACTIONS(795), + [anon_sym_sqrt] = ACTIONS(795), + [anon_sym_srand] = ACTIONS(795), + [anon_sym_strftime] = ACTIONS(795), + [anon_sym_strtonum] = ACTIONS(795), + [anon_sym_sub] = ACTIONS(795), + [anon_sym_substr] = ACTIONS(795), + [anon_sym_systime] = ACTIONS(795), + [anon_sym_tolower] = ACTIONS(795), + [anon_sym_toupper] = ACTIONS(795), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(795), + [sym_concatenating_space] = ACTIONS(799), + [sym__if_else_separator] = ACTIONS(799), + }, + [322] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym__if_else_separator] = ACTIONS(759), + }, + [323] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + [sym__if_else_separator] = ACTIONS(767), + }, + [324] = { + [sym_identifier] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_CR_LF] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [sym_break_statement] = ACTIONS(801), + [sym_continue_statement] = ACTIONS(801), + [anon_sym_delete] = ACTIONS(801), + [anon_sym_exit] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_switch] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_getline] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [sym_next_statement] = ACTIONS(801), + [sym_nextfile_statement] = ACTIONS(801), + [anon_sym_print] = ACTIONS(801), + [anon_sym_printf] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [aux_sym_number_token1] = ACTIONS(801), + [aux_sym_number_token2] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_asort] = ACTIONS(801), + [anon_sym_asorti] = ACTIONS(801), + [anon_sym_bindtextdomain] = ACTIONS(801), + [anon_sym_compl] = ACTIONS(801), + [anon_sym_cos] = ACTIONS(801), + [anon_sym_dcgettext] = ACTIONS(801), + [anon_sym_dcngettext] = ACTIONS(801), + [anon_sym_exp] = ACTIONS(801), + [anon_sym_gensub] = ACTIONS(801), + [anon_sym_gsub] = ACTIONS(801), + [anon_sym_index] = ACTIONS(801), + [anon_sym_int] = ACTIONS(801), + [anon_sym_isarray] = ACTIONS(801), + [anon_sym_length] = ACTIONS(801), + [anon_sym_log] = ACTIONS(801), + [anon_sym_lshift] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_mktime] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_patsplit] = ACTIONS(801), + [anon_sym_rand] = ACTIONS(801), + [anon_sym_rshift] = ACTIONS(801), + [anon_sym_sin] = ACTIONS(801), + [anon_sym_split] = ACTIONS(801), + [anon_sym_sprintf] = ACTIONS(801), + [anon_sym_sqrt] = ACTIONS(801), + [anon_sym_srand] = ACTIONS(801), + [anon_sym_strftime] = ACTIONS(801), + [anon_sym_strtonum] = ACTIONS(801), + [anon_sym_sub] = ACTIONS(801), + [anon_sym_substr] = ACTIONS(801), + [anon_sym_systime] = ACTIONS(801), + [anon_sym_tolower] = ACTIONS(801), + [anon_sym_toupper] = ACTIONS(801), + [anon_sym_typeof] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [sym_concatenating_space] = ACTIONS(803), + [sym__if_else_separator] = ACTIONS(803), + }, + [325] = { + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(769), + [anon_sym_CR_LF] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym_break_statement] = ACTIONS(769), + [sym_continue_statement] = ACTIONS(769), + [anon_sym_delete] = ACTIONS(769), + [anon_sym_exit] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_case] = ACTIONS(769), + [anon_sym_default] = ACTIONS(769), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [sym_next_statement] = ACTIONS(769), + [sym_nextfile_statement] = ACTIONS(769), + [anon_sym_print] = ACTIONS(769), + [anon_sym_printf] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + }, + [326] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + }, + [327] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1057), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym__if_else_separator] = ACTIONS(759), + }, + [328] = { + [sym_array_ref] = STATE(413), + [sym_namespace] = STATE(2486), + [sym_ns_qualified_name] = STATE(413), + [sym_identifier] = ACTIONS(1059), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + }, + [329] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + }, + [330] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1035), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + [sym__if_else_separator] = ACTIONS(759), + }, + [331] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1061), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + }, + [332] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym__if_else_separator] = ACTIONS(767), + }, + [333] = { + [sym_array_ref] = STATE(413), + [sym_namespace] = STATE(2486), + [sym_ns_qualified_name] = STATE(418), + [sym_identifier] = ACTIONS(1063), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_CR_LF] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [sym_break_statement] = ACTIONS(725), + [sym_continue_statement] = ACTIONS(725), + [anon_sym_delete] = ACTIONS(725), + [anon_sym_exit] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(1065), + [sym_next_statement] = ACTIONS(725), + [sym_nextfile_statement] = ACTIONS(725), + [anon_sym_print] = ACTIONS(725), + [anon_sym_printf] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(725), + }, + [334] = { + [sym_identifier] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_CR_LF] = ACTIONS(789), + [anon_sym_if] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_while] = ACTIONS(789), + [anon_sym_do] = ACTIONS(789), + [anon_sym_for] = ACTIONS(789), + [anon_sym_in] = ACTIONS(789), + [sym_break_statement] = ACTIONS(789), + [sym_continue_statement] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_exit] = ACTIONS(789), + [anon_sym_return] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_getline] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [sym_next_statement] = ACTIONS(789), + [sym_nextfile_statement] = ACTIONS(789), + [anon_sym_print] = ACTIONS(789), + [anon_sym_printf] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_PIPE_AMP] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_PERCENT] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_BANG_TILDE] = ACTIONS(789), + [anon_sym_AMP_AMP] = ACTIONS(789), + [anon_sym_PIPE_PIPE] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(789), + [anon_sym_DASH_DASH] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(789), + [sym_regex_flags] = ACTIONS(1067), + [anon_sym_AT] = ACTIONS(789), + [aux_sym_number_token1] = ACTIONS(789), + [aux_sym_number_token2] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_asort] = ACTIONS(789), + [anon_sym_asorti] = ACTIONS(789), + [anon_sym_bindtextdomain] = ACTIONS(789), + [anon_sym_compl] = ACTIONS(789), + [anon_sym_cos] = ACTIONS(789), + [anon_sym_dcgettext] = ACTIONS(789), + [anon_sym_dcngettext] = ACTIONS(789), + [anon_sym_exp] = ACTIONS(789), + [anon_sym_gensub] = ACTIONS(789), + [anon_sym_gsub] = ACTIONS(789), + [anon_sym_index] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_isarray] = ACTIONS(789), + [anon_sym_length] = ACTIONS(789), + [anon_sym_log] = ACTIONS(789), + [anon_sym_lshift] = ACTIONS(789), + [anon_sym_match] = ACTIONS(789), + [anon_sym_mktime] = ACTIONS(789), + [anon_sym_or] = ACTIONS(789), + [anon_sym_patsplit] = ACTIONS(789), + [anon_sym_rand] = ACTIONS(789), + [anon_sym_rshift] = ACTIONS(789), + [anon_sym_sin] = ACTIONS(789), + [anon_sym_split] = ACTIONS(789), + [anon_sym_sprintf] = ACTIONS(789), + [anon_sym_sqrt] = ACTIONS(789), + [anon_sym_srand] = ACTIONS(789), + [anon_sym_strftime] = ACTIONS(789), + [anon_sym_strtonum] = ACTIONS(789), + [anon_sym_sub] = ACTIONS(789), + [anon_sym_substr] = ACTIONS(789), + [anon_sym_systime] = ACTIONS(789), + [anon_sym_tolower] = ACTIONS(789), + [anon_sym_toupper] = ACTIONS(789), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(789), + [sym_concatenating_space] = ACTIONS(793), + [sym__if_else_separator] = ACTIONS(793), + }, + [335] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [336] = { + [sym_array_ref] = STATE(480), + [sym_namespace] = STATE(2492), + [sym_ns_qualified_name] = STATE(483), + [ts_builtin_sym_end] = ACTIONS(729), + [sym_identifier] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_BEGIN] = ACTIONS(725), + [anon_sym_END] = ACTIONS(725), + [anon_sym_BEGINFILE] = ACTIONS(725), + [anon_sym_ENDFILE] = ACTIONS(725), + [anon_sym_ATinclude] = ACTIONS(729), + [anon_sym_ATload] = ACTIONS(729), + [anon_sym_ATnamespace] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_in] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(729), + [anon_sym_DASH_EQ] = ACTIONS(729), + [anon_sym_STAR_EQ] = ACTIONS(729), + [anon_sym_SLASH_EQ] = ACTIONS(729), + [anon_sym_PERCENT_EQ] = ACTIONS(729), + [anon_sym_CARET_EQ] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_function] = ACTIONS(725), + [anon_sym_func] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(729), + [sym_concatenating_space] = ACTIONS(729), + }, + [337] = { + [sym_identifier] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_CR_LF] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [sym_break_statement] = ACTIONS(907), + [sym_continue_statement] = ACTIONS(907), + [anon_sym_delete] = ACTIONS(907), + [anon_sym_exit] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_switch] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_getline] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(907), + [sym_nextfile_statement] = ACTIONS(907), + [anon_sym_print] = ACTIONS(907), + [anon_sym_printf] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [aux_sym_number_token1] = ACTIONS(907), + [aux_sym_number_token2] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_asort] = ACTIONS(907), + [anon_sym_asorti] = ACTIONS(907), + [anon_sym_bindtextdomain] = ACTIONS(907), + [anon_sym_compl] = ACTIONS(907), + [anon_sym_cos] = ACTIONS(907), + [anon_sym_dcgettext] = ACTIONS(907), + [anon_sym_dcngettext] = ACTIONS(907), + [anon_sym_exp] = ACTIONS(907), + [anon_sym_gensub] = ACTIONS(907), + [anon_sym_gsub] = ACTIONS(907), + [anon_sym_index] = ACTIONS(907), + [anon_sym_int] = ACTIONS(907), + [anon_sym_isarray] = ACTIONS(907), + [anon_sym_length] = ACTIONS(907), + [anon_sym_log] = ACTIONS(907), + [anon_sym_lshift] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mktime] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_patsplit] = ACTIONS(907), + [anon_sym_rand] = ACTIONS(907), + [anon_sym_rshift] = ACTIONS(907), + [anon_sym_sin] = ACTIONS(907), + [anon_sym_split] = ACTIONS(907), + [anon_sym_sprintf] = ACTIONS(907), + [anon_sym_sqrt] = ACTIONS(907), + [anon_sym_srand] = ACTIONS(907), + [anon_sym_strftime] = ACTIONS(907), + [anon_sym_strtonum] = ACTIONS(907), + [anon_sym_sub] = ACTIONS(907), + [anon_sym_substr] = ACTIONS(907), + [anon_sym_systime] = ACTIONS(907), + [anon_sym_tolower] = ACTIONS(907), + [anon_sym_toupper] = ACTIONS(907), + [anon_sym_typeof] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [sym_concatenating_space] = ACTIONS(909), + [sym__if_else_separator] = ACTIONS(909), + }, + [338] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_STAR_EQ] = ACTIONS(1089), + [anon_sym_SLASH_EQ] = ACTIONS(1089), + [anon_sym_PERCENT_EQ] = ACTIONS(1089), + [anon_sym_CARET_EQ] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(1093), + [sym__func_call] = ACTIONS(1095), + }, + [339] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1097), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + }, + [340] = { + [sym_identifier] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_CR_LF] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [sym_break_statement] = ACTIONS(935), + [sym_continue_statement] = ACTIONS(935), + [anon_sym_delete] = ACTIONS(935), + [anon_sym_exit] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_switch] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_getline] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [sym_next_statement] = ACTIONS(935), + [sym_nextfile_statement] = ACTIONS(935), + [anon_sym_print] = ACTIONS(935), + [anon_sym_printf] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PIPE_AMP] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [aux_sym_number_token1] = ACTIONS(935), + [aux_sym_number_token2] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_asort] = ACTIONS(935), + [anon_sym_asorti] = ACTIONS(935), + [anon_sym_bindtextdomain] = ACTIONS(935), + [anon_sym_compl] = ACTIONS(935), + [anon_sym_cos] = ACTIONS(935), + [anon_sym_dcgettext] = ACTIONS(935), + [anon_sym_dcngettext] = ACTIONS(935), + [anon_sym_exp] = ACTIONS(935), + [anon_sym_gensub] = ACTIONS(935), + [anon_sym_gsub] = ACTIONS(935), + [anon_sym_index] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_isarray] = ACTIONS(935), + [anon_sym_length] = ACTIONS(935), + [anon_sym_log] = ACTIONS(935), + [anon_sym_lshift] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mktime] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_patsplit] = ACTIONS(935), + [anon_sym_rand] = ACTIONS(935), + [anon_sym_rshift] = ACTIONS(935), + [anon_sym_sin] = ACTIONS(935), + [anon_sym_split] = ACTIONS(935), + [anon_sym_sprintf] = ACTIONS(935), + [anon_sym_sqrt] = ACTIONS(935), + [anon_sym_srand] = ACTIONS(935), + [anon_sym_strftime] = ACTIONS(935), + [anon_sym_strtonum] = ACTIONS(935), + [anon_sym_sub] = ACTIONS(935), + [anon_sym_substr] = ACTIONS(935), + [anon_sym_systime] = ACTIONS(935), + [anon_sym_tolower] = ACTIONS(935), + [anon_sym_toupper] = ACTIONS(935), + [anon_sym_typeof] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [sym_concatenating_space] = ACTIONS(937), + [sym__if_else_separator] = ACTIONS(937), + }, + [341] = { + [sym_identifier] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_CR_LF] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(835), + [anon_sym_for] = ACTIONS(835), + [anon_sym_in] = ACTIONS(835), + [sym_break_statement] = ACTIONS(835), + [sym_continue_statement] = ACTIONS(835), + [anon_sym_delete] = ACTIONS(835), + [anon_sym_exit] = ACTIONS(835), + [anon_sym_return] = ACTIONS(835), + [anon_sym_switch] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_getline] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [sym_next_statement] = ACTIONS(835), + [sym_nextfile_statement] = ACTIONS(835), + [anon_sym_print] = ACTIONS(835), + [anon_sym_printf] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PIPE_AMP] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(835), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(835), + [anon_sym_BANG_TILDE] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(835), + [anon_sym_DASH_DASH] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(835), + [aux_sym_number_token1] = ACTIONS(835), + [aux_sym_number_token2] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(835), + [anon_sym_and] = ACTIONS(835), + [anon_sym_asort] = ACTIONS(835), + [anon_sym_asorti] = ACTIONS(835), + [anon_sym_bindtextdomain] = ACTIONS(835), + [anon_sym_compl] = ACTIONS(835), + [anon_sym_cos] = ACTIONS(835), + [anon_sym_dcgettext] = ACTIONS(835), + [anon_sym_dcngettext] = ACTIONS(835), + [anon_sym_exp] = ACTIONS(835), + [anon_sym_gensub] = ACTIONS(835), + [anon_sym_gsub] = ACTIONS(835), + [anon_sym_index] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_isarray] = ACTIONS(835), + [anon_sym_length] = ACTIONS(835), + [anon_sym_log] = ACTIONS(835), + [anon_sym_lshift] = ACTIONS(835), + [anon_sym_match] = ACTIONS(835), + [anon_sym_mktime] = ACTIONS(835), + [anon_sym_or] = ACTIONS(835), + [anon_sym_patsplit] = ACTIONS(835), + [anon_sym_rand] = ACTIONS(835), + [anon_sym_rshift] = ACTIONS(835), + [anon_sym_sin] = ACTIONS(835), + [anon_sym_split] = ACTIONS(835), + [anon_sym_sprintf] = ACTIONS(835), + [anon_sym_sqrt] = ACTIONS(835), + [anon_sym_srand] = ACTIONS(835), + [anon_sym_strftime] = ACTIONS(835), + [anon_sym_strtonum] = ACTIONS(835), + [anon_sym_sub] = ACTIONS(835), + [anon_sym_substr] = ACTIONS(835), + [anon_sym_systime] = ACTIONS(835), + [anon_sym_tolower] = ACTIONS(835), + [anon_sym_toupper] = ACTIONS(835), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(835), + [anon_sym_POUND] = ACTIONS(835), + [sym_concatenating_space] = ACTIONS(837), + [sym__if_else_separator] = ACTIONS(837), + }, + [342] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + }, + [343] = { + [sym_identifier] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(885), + [anon_sym_CR_LF] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [anon_sym_do] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_in] = ACTIONS(885), + [sym_break_statement] = ACTIONS(885), + [sym_continue_statement] = ACTIONS(885), + [anon_sym_delete] = ACTIONS(885), + [anon_sym_exit] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_getline] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [sym_next_statement] = ACTIONS(885), + [sym_nextfile_statement] = ACTIONS(885), + [anon_sym_print] = ACTIONS(885), + [anon_sym_printf] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_PIPE_AMP] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_STAR_STAR] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_BANG_TILDE] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(885), + [anon_sym_PIPE_PIPE] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(885), + [aux_sym_number_token1] = ACTIONS(885), + [aux_sym_number_token2] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_asort] = ACTIONS(885), + [anon_sym_asorti] = ACTIONS(885), + [anon_sym_bindtextdomain] = ACTIONS(885), + [anon_sym_compl] = ACTIONS(885), + [anon_sym_cos] = ACTIONS(885), + [anon_sym_dcgettext] = ACTIONS(885), + [anon_sym_dcngettext] = ACTIONS(885), + [anon_sym_exp] = ACTIONS(885), + [anon_sym_gensub] = ACTIONS(885), + [anon_sym_gsub] = ACTIONS(885), + [anon_sym_index] = ACTIONS(885), + [anon_sym_int] = ACTIONS(885), + [anon_sym_isarray] = ACTIONS(885), + [anon_sym_length] = ACTIONS(885), + [anon_sym_log] = ACTIONS(885), + [anon_sym_lshift] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mktime] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_patsplit] = ACTIONS(885), + [anon_sym_rand] = ACTIONS(885), + [anon_sym_rshift] = ACTIONS(885), + [anon_sym_sin] = ACTIONS(885), + [anon_sym_split] = ACTIONS(885), + [anon_sym_sprintf] = ACTIONS(885), + [anon_sym_sqrt] = ACTIONS(885), + [anon_sym_srand] = ACTIONS(885), + [anon_sym_strftime] = ACTIONS(885), + [anon_sym_strtonum] = ACTIONS(885), + [anon_sym_sub] = ACTIONS(885), + [anon_sym_substr] = ACTIONS(885), + [anon_sym_systime] = ACTIONS(885), + [anon_sym_tolower] = ACTIONS(885), + [anon_sym_toupper] = ACTIONS(885), + [anon_sym_typeof] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(885), + [sym_concatenating_space] = ACTIONS(887), + [sym__if_else_separator] = ACTIONS(887), + }, + [344] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [345] = { + [sym_identifier] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_CR_LF] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [sym_break_statement] = ACTIONS(801), + [sym_continue_statement] = ACTIONS(801), + [anon_sym_delete] = ACTIONS(801), + [anon_sym_exit] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_switch] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_getline] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [sym_next_statement] = ACTIONS(801), + [sym_nextfile_statement] = ACTIONS(801), + [anon_sym_print] = ACTIONS(801), + [anon_sym_printf] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [aux_sym_number_token1] = ACTIONS(801), + [aux_sym_number_token2] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_asort] = ACTIONS(801), + [anon_sym_asorti] = ACTIONS(801), + [anon_sym_bindtextdomain] = ACTIONS(801), + [anon_sym_compl] = ACTIONS(801), + [anon_sym_cos] = ACTIONS(801), + [anon_sym_dcgettext] = ACTIONS(801), + [anon_sym_dcngettext] = ACTIONS(801), + [anon_sym_exp] = ACTIONS(801), + [anon_sym_gensub] = ACTIONS(801), + [anon_sym_gsub] = ACTIONS(801), + [anon_sym_index] = ACTIONS(801), + [anon_sym_int] = ACTIONS(801), + [anon_sym_isarray] = ACTIONS(801), + [anon_sym_length] = ACTIONS(801), + [anon_sym_log] = ACTIONS(801), + [anon_sym_lshift] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_mktime] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_patsplit] = ACTIONS(801), + [anon_sym_rand] = ACTIONS(801), + [anon_sym_rshift] = ACTIONS(801), + [anon_sym_sin] = ACTIONS(801), + [anon_sym_split] = ACTIONS(801), + [anon_sym_sprintf] = ACTIONS(801), + [anon_sym_sqrt] = ACTIONS(801), + [anon_sym_srand] = ACTIONS(801), + [anon_sym_strftime] = ACTIONS(801), + [anon_sym_strtonum] = ACTIONS(801), + [anon_sym_sub] = ACTIONS(801), + [anon_sym_substr] = ACTIONS(801), + [anon_sym_systime] = ACTIONS(801), + [anon_sym_tolower] = ACTIONS(801), + [anon_sym_toupper] = ACTIONS(801), + [anon_sym_typeof] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [sym_concatenating_space] = ACTIONS(803), + }, + [346] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [347] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [348] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [349] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_STAR_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [350] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(747), + [sym__if_else_separator] = ACTIONS(733), + }, + [351] = { + [sym_identifier] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [anon_sym_CR_LF] = ACTIONS(851), + [anon_sym_if] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(851), + [anon_sym_for] = ACTIONS(851), + [anon_sym_in] = ACTIONS(851), + [sym_break_statement] = ACTIONS(851), + [sym_continue_statement] = ACTIONS(851), + [anon_sym_delete] = ACTIONS(851), + [anon_sym_exit] = ACTIONS(851), + [anon_sym_return] = ACTIONS(851), + [anon_sym_switch] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_getline] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [sym_next_statement] = ACTIONS(851), + [sym_nextfile_statement] = ACTIONS(851), + [anon_sym_print] = ACTIONS(851), + [anon_sym_printf] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_PIPE_AMP] = ACTIONS(851), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_STAR_STAR] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_BANG_TILDE] = ACTIONS(851), + [anon_sym_AMP_AMP] = ACTIONS(851), + [anon_sym_PIPE_PIPE] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_DOLLAR] = ACTIONS(851), + [anon_sym_AT] = ACTIONS(851), + [aux_sym_number_token1] = ACTIONS(851), + [aux_sym_number_token2] = ACTIONS(851), + [anon_sym_DQUOTE] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_asort] = ACTIONS(851), + [anon_sym_asorti] = ACTIONS(851), + [anon_sym_bindtextdomain] = ACTIONS(851), + [anon_sym_compl] = ACTIONS(851), + [anon_sym_cos] = ACTIONS(851), + [anon_sym_dcgettext] = ACTIONS(851), + [anon_sym_dcngettext] = ACTIONS(851), + [anon_sym_exp] = ACTIONS(851), + [anon_sym_gensub] = ACTIONS(851), + [anon_sym_gsub] = ACTIONS(851), + [anon_sym_index] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_isarray] = ACTIONS(851), + [anon_sym_length] = ACTIONS(851), + [anon_sym_log] = ACTIONS(851), + [anon_sym_lshift] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_mktime] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_patsplit] = ACTIONS(851), + [anon_sym_rand] = ACTIONS(851), + [anon_sym_rshift] = ACTIONS(851), + [anon_sym_sin] = ACTIONS(851), + [anon_sym_split] = ACTIONS(851), + [anon_sym_sprintf] = ACTIONS(851), + [anon_sym_sqrt] = ACTIONS(851), + [anon_sym_srand] = ACTIONS(851), + [anon_sym_strftime] = ACTIONS(851), + [anon_sym_strtonum] = ACTIONS(851), + [anon_sym_sub] = ACTIONS(851), + [anon_sym_substr] = ACTIONS(851), + [anon_sym_systime] = ACTIONS(851), + [anon_sym_tolower] = ACTIONS(851), + [anon_sym_toupper] = ACTIONS(851), + [anon_sym_typeof] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(851), + [sym_concatenating_space] = ACTIONS(853), + [sym__if_else_separator] = ACTIONS(853), + }, + [352] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + [sym__if_else_separator] = ACTIONS(921), + }, + [353] = { + [sym_identifier] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [sym_break_statement] = ACTIONS(855), + [sym_continue_statement] = ACTIONS(855), + [anon_sym_delete] = ACTIONS(855), + [anon_sym_exit] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_getline] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(855), + [sym_nextfile_statement] = ACTIONS(855), + [anon_sym_print] = ACTIONS(855), + [anon_sym_printf] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_PIPE_AMP] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(855), + [aux_sym_number_token1] = ACTIONS(855), + [aux_sym_number_token2] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_asort] = ACTIONS(855), + [anon_sym_asorti] = ACTIONS(855), + [anon_sym_bindtextdomain] = ACTIONS(855), + [anon_sym_compl] = ACTIONS(855), + [anon_sym_cos] = ACTIONS(855), + [anon_sym_dcgettext] = ACTIONS(855), + [anon_sym_dcngettext] = ACTIONS(855), + [anon_sym_exp] = ACTIONS(855), + [anon_sym_gensub] = ACTIONS(855), + [anon_sym_gsub] = ACTIONS(855), + [anon_sym_index] = ACTIONS(855), + [anon_sym_int] = ACTIONS(855), + [anon_sym_isarray] = ACTIONS(855), + [anon_sym_length] = ACTIONS(855), + [anon_sym_log] = ACTIONS(855), + [anon_sym_lshift] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_mktime] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_patsplit] = ACTIONS(855), + [anon_sym_rand] = ACTIONS(855), + [anon_sym_rshift] = ACTIONS(855), + [anon_sym_sin] = ACTIONS(855), + [anon_sym_split] = ACTIONS(855), + [anon_sym_sprintf] = ACTIONS(855), + [anon_sym_sqrt] = ACTIONS(855), + [anon_sym_srand] = ACTIONS(855), + [anon_sym_strftime] = ACTIONS(855), + [anon_sym_strtonum] = ACTIONS(855), + [anon_sym_sub] = ACTIONS(855), + [anon_sym_substr] = ACTIONS(855), + [anon_sym_systime] = ACTIONS(855), + [anon_sym_tolower] = ACTIONS(855), + [anon_sym_toupper] = ACTIONS(855), + [anon_sym_typeof] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [sym_concatenating_space] = ACTIONS(857), + [sym__if_else_separator] = ACTIONS(857), + }, + [354] = { + [sym_identifier] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(877), + [anon_sym_CR_LF] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [sym_break_statement] = ACTIONS(877), + [sym_continue_statement] = ACTIONS(877), + [anon_sym_delete] = ACTIONS(877), + [anon_sym_exit] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_switch] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_getline] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [sym_next_statement] = ACTIONS(877), + [sym_nextfile_statement] = ACTIONS(877), + [anon_sym_print] = ACTIONS(877), + [anon_sym_printf] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_GT_GT] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_AT] = ACTIONS(877), + [aux_sym_number_token1] = ACTIONS(877), + [aux_sym_number_token2] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_asort] = ACTIONS(877), + [anon_sym_asorti] = ACTIONS(877), + [anon_sym_bindtextdomain] = ACTIONS(877), + [anon_sym_compl] = ACTIONS(877), + [anon_sym_cos] = ACTIONS(877), + [anon_sym_dcgettext] = ACTIONS(877), + [anon_sym_dcngettext] = ACTIONS(877), + [anon_sym_exp] = ACTIONS(877), + [anon_sym_gensub] = ACTIONS(877), + [anon_sym_gsub] = ACTIONS(877), + [anon_sym_index] = ACTIONS(877), + [anon_sym_int] = ACTIONS(877), + [anon_sym_isarray] = ACTIONS(877), + [anon_sym_length] = ACTIONS(877), + [anon_sym_log] = ACTIONS(877), + [anon_sym_lshift] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mktime] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_patsplit] = ACTIONS(877), + [anon_sym_rand] = ACTIONS(877), + [anon_sym_rshift] = ACTIONS(877), + [anon_sym_sin] = ACTIONS(877), + [anon_sym_split] = ACTIONS(877), + [anon_sym_sprintf] = ACTIONS(877), + [anon_sym_sqrt] = ACTIONS(877), + [anon_sym_srand] = ACTIONS(877), + [anon_sym_strftime] = ACTIONS(877), + [anon_sym_strtonum] = ACTIONS(877), + [anon_sym_sub] = ACTIONS(877), + [anon_sym_substr] = ACTIONS(877), + [anon_sym_systime] = ACTIONS(877), + [anon_sym_tolower] = ACTIONS(877), + [anon_sym_toupper] = ACTIONS(877), + [anon_sym_typeof] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [sym_concatenating_space] = ACTIONS(879), + [sym__if_else_separator] = ACTIONS(879), + }, + [355] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(1103), + [anon_sym_DASH_EQ] = ACTIONS(1103), + [anon_sym_STAR_EQ] = ACTIONS(1103), + [anon_sym_SLASH_EQ] = ACTIONS(1103), + [anon_sym_PERCENT_EQ] = ACTIONS(1103), + [anon_sym_CARET_EQ] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(711), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + [sym__func_call] = ACTIONS(1095), + }, + [356] = { + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + [sym__if_else_separator] = ACTIONS(719), + }, + [357] = { + [sym_identifier] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_CR_LF] = ACTIONS(789), + [anon_sym_if] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_while] = ACTIONS(789), + [anon_sym_do] = ACTIONS(789), + [anon_sym_for] = ACTIONS(789), + [anon_sym_in] = ACTIONS(789), + [sym_break_statement] = ACTIONS(789), + [sym_continue_statement] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_exit] = ACTIONS(789), + [anon_sym_return] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_getline] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [sym_next_statement] = ACTIONS(789), + [sym_nextfile_statement] = ACTIONS(789), + [anon_sym_print] = ACTIONS(789), + [anon_sym_printf] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_PIPE_AMP] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_PERCENT] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_BANG_TILDE] = ACTIONS(789), + [anon_sym_AMP_AMP] = ACTIONS(789), + [anon_sym_PIPE_PIPE] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(789), + [anon_sym_DASH_DASH] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(789), + [sym_regex_flags] = ACTIONS(1105), + [anon_sym_AT] = ACTIONS(789), + [aux_sym_number_token1] = ACTIONS(789), + [aux_sym_number_token2] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_asort] = ACTIONS(789), + [anon_sym_asorti] = ACTIONS(789), + [anon_sym_bindtextdomain] = ACTIONS(789), + [anon_sym_compl] = ACTIONS(789), + [anon_sym_cos] = ACTIONS(789), + [anon_sym_dcgettext] = ACTIONS(789), + [anon_sym_dcngettext] = ACTIONS(789), + [anon_sym_exp] = ACTIONS(789), + [anon_sym_gensub] = ACTIONS(789), + [anon_sym_gsub] = ACTIONS(789), + [anon_sym_index] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_isarray] = ACTIONS(789), + [anon_sym_length] = ACTIONS(789), + [anon_sym_log] = ACTIONS(789), + [anon_sym_lshift] = ACTIONS(789), + [anon_sym_match] = ACTIONS(789), + [anon_sym_mktime] = ACTIONS(789), + [anon_sym_or] = ACTIONS(789), + [anon_sym_patsplit] = ACTIONS(789), + [anon_sym_rand] = ACTIONS(789), + [anon_sym_rshift] = ACTIONS(789), + [anon_sym_sin] = ACTIONS(789), + [anon_sym_split] = ACTIONS(789), + [anon_sym_sprintf] = ACTIONS(789), + [anon_sym_sqrt] = ACTIONS(789), + [anon_sym_srand] = ACTIONS(789), + [anon_sym_strftime] = ACTIONS(789), + [anon_sym_strtonum] = ACTIONS(789), + [anon_sym_sub] = ACTIONS(789), + [anon_sym_substr] = ACTIONS(789), + [anon_sym_systime] = ACTIONS(789), + [anon_sym_tolower] = ACTIONS(789), + [anon_sym_toupper] = ACTIONS(789), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(789), + [sym_concatenating_space] = ACTIONS(793), + }, + [358] = { + [sym_identifier] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_CR_LF] = ACTIONS(831), + [anon_sym_if] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_while] = ACTIONS(831), + [anon_sym_do] = ACTIONS(831), + [anon_sym_for] = ACTIONS(831), + [anon_sym_in] = ACTIONS(831), + [sym_break_statement] = ACTIONS(831), + [sym_continue_statement] = ACTIONS(831), + [anon_sym_delete] = ACTIONS(831), + [anon_sym_exit] = ACTIONS(831), + [anon_sym_return] = ACTIONS(831), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_getline] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(831), + [sym_next_statement] = ACTIONS(831), + [sym_nextfile_statement] = ACTIONS(831), + [anon_sym_print] = ACTIONS(831), + [anon_sym_printf] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_GT_GT] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_PIPE_AMP] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym_STAR_STAR] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LT_EQ] = ACTIONS(831), + [anon_sym_GT_EQ] = ACTIONS(831), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_BANG_EQ] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_BANG_TILDE] = ACTIONS(831), + [anon_sym_AMP_AMP] = ACTIONS(831), + [anon_sym_PIPE_PIPE] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_PLUS_PLUS] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [aux_sym_number_token1] = ACTIONS(831), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_and] = ACTIONS(831), + [anon_sym_asort] = ACTIONS(831), + [anon_sym_asorti] = ACTIONS(831), + [anon_sym_bindtextdomain] = ACTIONS(831), + [anon_sym_compl] = ACTIONS(831), + [anon_sym_cos] = ACTIONS(831), + [anon_sym_dcgettext] = ACTIONS(831), + [anon_sym_dcngettext] = ACTIONS(831), + [anon_sym_exp] = ACTIONS(831), + [anon_sym_gensub] = ACTIONS(831), + [anon_sym_gsub] = ACTIONS(831), + [anon_sym_index] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_isarray] = ACTIONS(831), + [anon_sym_length] = ACTIONS(831), + [anon_sym_log] = ACTIONS(831), + [anon_sym_lshift] = ACTIONS(831), + [anon_sym_match] = ACTIONS(831), + [anon_sym_mktime] = ACTIONS(831), + [anon_sym_or] = ACTIONS(831), + [anon_sym_patsplit] = ACTIONS(831), + [anon_sym_rand] = ACTIONS(831), + [anon_sym_rshift] = ACTIONS(831), + [anon_sym_sin] = ACTIONS(831), + [anon_sym_split] = ACTIONS(831), + [anon_sym_sprintf] = ACTIONS(831), + [anon_sym_sqrt] = ACTIONS(831), + [anon_sym_srand] = ACTIONS(831), + [anon_sym_strftime] = ACTIONS(831), + [anon_sym_strtonum] = ACTIONS(831), + [anon_sym_sub] = ACTIONS(831), + [anon_sym_substr] = ACTIONS(831), + [anon_sym_systime] = ACTIONS(831), + [anon_sym_tolower] = ACTIONS(831), + [anon_sym_toupper] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + [sym_concatenating_space] = ACTIONS(833), + [sym__if_else_separator] = ACTIONS(833), + }, + [359] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym__if_else_separator] = ACTIONS(759), + }, + [360] = { + [sym_identifier] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(889), + [anon_sym_CR_LF] = ACTIONS(889), + [anon_sym_if] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_while] = ACTIONS(889), + [anon_sym_do] = ACTIONS(889), + [anon_sym_for] = ACTIONS(889), + [anon_sym_in] = ACTIONS(889), + [sym_break_statement] = ACTIONS(889), + [sym_continue_statement] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_exit] = ACTIONS(889), + [anon_sym_return] = ACTIONS(889), + [anon_sym_switch] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_getline] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(889), + [sym_next_statement] = ACTIONS(889), + [sym_nextfile_statement] = ACTIONS(889), + [anon_sym_print] = ACTIONS(889), + [anon_sym_printf] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_GT_GT] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_STAR_STAR] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(889), + [anon_sym_BANG_TILDE] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_DASH_DASH] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(889), + [aux_sym_number_token1] = ACTIONS(889), + [aux_sym_number_token2] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_asort] = ACTIONS(889), + [anon_sym_asorti] = ACTIONS(889), + [anon_sym_bindtextdomain] = ACTIONS(889), + [anon_sym_compl] = ACTIONS(889), + [anon_sym_cos] = ACTIONS(889), + [anon_sym_dcgettext] = ACTIONS(889), + [anon_sym_dcngettext] = ACTIONS(889), + [anon_sym_exp] = ACTIONS(889), + [anon_sym_gensub] = ACTIONS(889), + [anon_sym_gsub] = ACTIONS(889), + [anon_sym_index] = ACTIONS(889), + [anon_sym_int] = ACTIONS(889), + [anon_sym_isarray] = ACTIONS(889), + [anon_sym_length] = ACTIONS(889), + [anon_sym_log] = ACTIONS(889), + [anon_sym_lshift] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_mktime] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_patsplit] = ACTIONS(889), + [anon_sym_rand] = ACTIONS(889), + [anon_sym_rshift] = ACTIONS(889), + [anon_sym_sin] = ACTIONS(889), + [anon_sym_split] = ACTIONS(889), + [anon_sym_sprintf] = ACTIONS(889), + [anon_sym_sqrt] = ACTIONS(889), + [anon_sym_srand] = ACTIONS(889), + [anon_sym_strftime] = ACTIONS(889), + [anon_sym_strtonum] = ACTIONS(889), + [anon_sym_sub] = ACTIONS(889), + [anon_sym_substr] = ACTIONS(889), + [anon_sym_systime] = ACTIONS(889), + [anon_sym_tolower] = ACTIONS(889), + [anon_sym_toupper] = ACTIONS(889), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(889), + [sym_concatenating_space] = ACTIONS(891), + [sym__if_else_separator] = ACTIONS(891), + }, + [361] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1057), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym__if_else_separator] = ACTIONS(759), + }, + [362] = { + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(769), + [anon_sym_CR_LF] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym_break_statement] = ACTIONS(769), + [sym_continue_statement] = ACTIONS(769), + [anon_sym_delete] = ACTIONS(769), + [anon_sym_exit] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [sym_next_statement] = ACTIONS(769), + [sym_nextfile_statement] = ACTIONS(769), + [anon_sym_print] = ACTIONS(769), + [anon_sym_printf] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(769), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + [sym_concatenating_space] = ACTIONS(771), + }, + [363] = { + [sym_identifier] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(795), + [anon_sym_LF] = ACTIONS(795), + [anon_sym_CR_LF] = ACTIONS(795), + [anon_sym_if] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(795), + [anon_sym_for] = ACTIONS(795), + [anon_sym_in] = ACTIONS(795), + [sym_break_statement] = ACTIONS(795), + [sym_continue_statement] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_exit] = ACTIONS(795), + [anon_sym_return] = ACTIONS(795), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_getline] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [sym_next_statement] = ACTIONS(795), + [sym_nextfile_statement] = ACTIONS(795), + [anon_sym_print] = ACTIONS(795), + [anon_sym_printf] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_GT_GT] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_STAR_STAR] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_PERCENT] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(795), + [anon_sym_BANG_EQ] = ACTIONS(795), + [anon_sym_TILDE] = ACTIONS(795), + [anon_sym_BANG_TILDE] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(795), + [anon_sym_PIPE_PIPE] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_DOLLAR] = ACTIONS(795), + [sym_regex_flags] = ACTIONS(1107), + [anon_sym_AT] = ACTIONS(795), + [aux_sym_number_token1] = ACTIONS(795), + [aux_sym_number_token2] = ACTIONS(795), + [anon_sym_DQUOTE] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_asort] = ACTIONS(795), + [anon_sym_asorti] = ACTIONS(795), + [anon_sym_bindtextdomain] = ACTIONS(795), + [anon_sym_compl] = ACTIONS(795), + [anon_sym_cos] = ACTIONS(795), + [anon_sym_dcgettext] = ACTIONS(795), + [anon_sym_dcngettext] = ACTIONS(795), + [anon_sym_exp] = ACTIONS(795), + [anon_sym_gensub] = ACTIONS(795), + [anon_sym_gsub] = ACTIONS(795), + [anon_sym_index] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_isarray] = ACTIONS(795), + [anon_sym_length] = ACTIONS(795), + [anon_sym_log] = ACTIONS(795), + [anon_sym_lshift] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_mktime] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_patsplit] = ACTIONS(795), + [anon_sym_rand] = ACTIONS(795), + [anon_sym_rshift] = ACTIONS(795), + [anon_sym_sin] = ACTIONS(795), + [anon_sym_split] = ACTIONS(795), + [anon_sym_sprintf] = ACTIONS(795), + [anon_sym_sqrt] = ACTIONS(795), + [anon_sym_srand] = ACTIONS(795), + [anon_sym_strftime] = ACTIONS(795), + [anon_sym_strtonum] = ACTIONS(795), + [anon_sym_sub] = ACTIONS(795), + [anon_sym_substr] = ACTIONS(795), + [anon_sym_systime] = ACTIONS(795), + [anon_sym_tolower] = ACTIONS(795), + [anon_sym_toupper] = ACTIONS(795), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(795), + [sym__if_else_separator] = ACTIONS(799), + }, + [364] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + }, + [365] = { + [sym_identifier] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_CR_LF] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_do] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_in] = ACTIONS(867), + [sym_break_statement] = ACTIONS(867), + [sym_continue_statement] = ACTIONS(867), + [anon_sym_delete] = ACTIONS(867), + [anon_sym_exit] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_getline] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [sym_next_statement] = ACTIONS(867), + [sym_nextfile_statement] = ACTIONS(867), + [anon_sym_print] = ACTIONS(867), + [anon_sym_printf] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_PIPE_AMP] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_STAR_STAR] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_BANG_TILDE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(867), + [anon_sym_PIPE_PIPE] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [aux_sym_number_token1] = ACTIONS(867), + [aux_sym_number_token2] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_asort] = ACTIONS(867), + [anon_sym_asorti] = ACTIONS(867), + [anon_sym_bindtextdomain] = ACTIONS(867), + [anon_sym_compl] = ACTIONS(867), + [anon_sym_cos] = ACTIONS(867), + [anon_sym_dcgettext] = ACTIONS(867), + [anon_sym_dcngettext] = ACTIONS(867), + [anon_sym_exp] = ACTIONS(867), + [anon_sym_gensub] = ACTIONS(867), + [anon_sym_gsub] = ACTIONS(867), + [anon_sym_index] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_isarray] = ACTIONS(867), + [anon_sym_length] = ACTIONS(867), + [anon_sym_log] = ACTIONS(867), + [anon_sym_lshift] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mktime] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_patsplit] = ACTIONS(867), + [anon_sym_rand] = ACTIONS(867), + [anon_sym_rshift] = ACTIONS(867), + [anon_sym_sin] = ACTIONS(867), + [anon_sym_split] = ACTIONS(867), + [anon_sym_sprintf] = ACTIONS(867), + [anon_sym_sqrt] = ACTIONS(867), + [anon_sym_srand] = ACTIONS(867), + [anon_sym_strftime] = ACTIONS(867), + [anon_sym_strtonum] = ACTIONS(867), + [anon_sym_sub] = ACTIONS(867), + [anon_sym_substr] = ACTIONS(867), + [anon_sym_systime] = ACTIONS(867), + [anon_sym_tolower] = ACTIONS(867), + [anon_sym_toupper] = ACTIONS(867), + [anon_sym_typeof] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + [sym_concatenating_space] = ACTIONS(869), + [sym__if_else_separator] = ACTIONS(869), + }, + [366] = { + [sym_identifier] = ACTIONS(839), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(839), + [anon_sym_LF] = ACTIONS(839), + [anon_sym_CR_LF] = ACTIONS(839), + [anon_sym_if] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_while] = ACTIONS(839), + [anon_sym_do] = ACTIONS(839), + [anon_sym_for] = ACTIONS(839), + [anon_sym_in] = ACTIONS(839), + [sym_break_statement] = ACTIONS(839), + [sym_continue_statement] = ACTIONS(839), + [anon_sym_delete] = ACTIONS(839), + [anon_sym_exit] = ACTIONS(839), + [anon_sym_return] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_getline] = ACTIONS(839), + [anon_sym_LT] = ACTIONS(839), + [sym_next_statement] = ACTIONS(839), + [sym_nextfile_statement] = ACTIONS(839), + [anon_sym_print] = ACTIONS(839), + [anon_sym_printf] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [anon_sym_GT_GT] = ACTIONS(839), + [anon_sym_PIPE] = ACTIONS(839), + [anon_sym_PIPE_AMP] = ACTIONS(839), + [anon_sym_QMARK] = ACTIONS(839), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(839), + [anon_sym_GT_EQ] = ACTIONS(839), + [anon_sym_EQ_EQ] = ACTIONS(839), + [anon_sym_BANG_EQ] = ACTIONS(839), + [anon_sym_TILDE] = ACTIONS(839), + [anon_sym_BANG_TILDE] = ACTIONS(839), + [anon_sym_AMP_AMP] = ACTIONS(839), + [anon_sym_PIPE_PIPE] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(839), + [anon_sym_PLUS_PLUS] = ACTIONS(839), + [anon_sym_DASH_DASH] = ACTIONS(839), + [anon_sym_DOLLAR] = ACTIONS(839), + [anon_sym_AT] = ACTIONS(839), + [aux_sym_number_token1] = ACTIONS(839), + [aux_sym_number_token2] = ACTIONS(839), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_and] = ACTIONS(839), + [anon_sym_asort] = ACTIONS(839), + [anon_sym_asorti] = ACTIONS(839), + [anon_sym_bindtextdomain] = ACTIONS(839), + [anon_sym_compl] = ACTIONS(839), + [anon_sym_cos] = ACTIONS(839), + [anon_sym_dcgettext] = ACTIONS(839), + [anon_sym_dcngettext] = ACTIONS(839), + [anon_sym_exp] = ACTIONS(839), + [anon_sym_gensub] = ACTIONS(839), + [anon_sym_gsub] = ACTIONS(839), + [anon_sym_index] = ACTIONS(839), + [anon_sym_int] = ACTIONS(839), + [anon_sym_isarray] = ACTIONS(839), + [anon_sym_length] = ACTIONS(839), + [anon_sym_log] = ACTIONS(839), + [anon_sym_lshift] = ACTIONS(839), + [anon_sym_match] = ACTIONS(839), + [anon_sym_mktime] = ACTIONS(839), + [anon_sym_or] = ACTIONS(839), + [anon_sym_patsplit] = ACTIONS(839), + [anon_sym_rand] = ACTIONS(839), + [anon_sym_rshift] = ACTIONS(839), + [anon_sym_sin] = ACTIONS(839), + [anon_sym_split] = ACTIONS(839), + [anon_sym_sprintf] = ACTIONS(839), + [anon_sym_sqrt] = ACTIONS(839), + [anon_sym_srand] = ACTIONS(839), + [anon_sym_strftime] = ACTIONS(839), + [anon_sym_strtonum] = ACTIONS(839), + [anon_sym_sub] = ACTIONS(839), + [anon_sym_substr] = ACTIONS(839), + [anon_sym_systime] = ACTIONS(839), + [anon_sym_tolower] = ACTIONS(839), + [anon_sym_toupper] = ACTIONS(839), + [anon_sym_typeof] = ACTIONS(839), + [anon_sym_xor] = ACTIONS(839), + [anon_sym_POUND] = ACTIONS(839), + [sym_concatenating_space] = ACTIONS(841), + [sym__if_else_separator] = ACTIONS(841), + }, + [367] = { + [sym_identifier] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(795), + [anon_sym_LF] = ACTIONS(795), + [anon_sym_CR_LF] = ACTIONS(795), + [anon_sym_if] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(795), + [anon_sym_for] = ACTIONS(795), + [anon_sym_in] = ACTIONS(795), + [sym_break_statement] = ACTIONS(795), + [sym_continue_statement] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_exit] = ACTIONS(795), + [anon_sym_return] = ACTIONS(795), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_getline] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [sym_next_statement] = ACTIONS(795), + [sym_nextfile_statement] = ACTIONS(795), + [anon_sym_print] = ACTIONS(795), + [anon_sym_printf] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_GT_GT] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_STAR_STAR] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_PERCENT] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(795), + [anon_sym_BANG_EQ] = ACTIONS(795), + [anon_sym_TILDE] = ACTIONS(795), + [anon_sym_BANG_TILDE] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(795), + [anon_sym_PIPE_PIPE] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_DOLLAR] = ACTIONS(795), + [sym_regex_flags] = ACTIONS(1109), + [anon_sym_AT] = ACTIONS(795), + [aux_sym_number_token1] = ACTIONS(795), + [aux_sym_number_token2] = ACTIONS(795), + [anon_sym_DQUOTE] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_asort] = ACTIONS(795), + [anon_sym_asorti] = ACTIONS(795), + [anon_sym_bindtextdomain] = ACTIONS(795), + [anon_sym_compl] = ACTIONS(795), + [anon_sym_cos] = ACTIONS(795), + [anon_sym_dcgettext] = ACTIONS(795), + [anon_sym_dcngettext] = ACTIONS(795), + [anon_sym_exp] = ACTIONS(795), + [anon_sym_gensub] = ACTIONS(795), + [anon_sym_gsub] = ACTIONS(795), + [anon_sym_index] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_isarray] = ACTIONS(795), + [anon_sym_length] = ACTIONS(795), + [anon_sym_log] = ACTIONS(795), + [anon_sym_lshift] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_mktime] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_patsplit] = ACTIONS(795), + [anon_sym_rand] = ACTIONS(795), + [anon_sym_rshift] = ACTIONS(795), + [anon_sym_sin] = ACTIONS(795), + [anon_sym_split] = ACTIONS(795), + [anon_sym_sprintf] = ACTIONS(795), + [anon_sym_sqrt] = ACTIONS(795), + [anon_sym_srand] = ACTIONS(795), + [anon_sym_strftime] = ACTIONS(795), + [anon_sym_strtonum] = ACTIONS(795), + [anon_sym_sub] = ACTIONS(795), + [anon_sym_substr] = ACTIONS(795), + [anon_sym_systime] = ACTIONS(795), + [anon_sym_tolower] = ACTIONS(795), + [anon_sym_toupper] = ACTIONS(795), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(795), + [sym_concatenating_space] = ACTIONS(799), + }, + [368] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1061), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + }, + [369] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [sym_concatenating_space] = ACTIONS(759), + }, + [370] = { + [sym_identifier] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_CR_LF] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_do] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [sym_break_statement] = ACTIONS(863), + [sym_continue_statement] = ACTIONS(863), + [anon_sym_delete] = ACTIONS(863), + [anon_sym_exit] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_getline] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [sym_next_statement] = ACTIONS(863), + [sym_nextfile_statement] = ACTIONS(863), + [anon_sym_print] = ACTIONS(863), + [anon_sym_printf] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_TILDE] = ACTIONS(863), + [anon_sym_BANG_TILDE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS_PLUS] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_AT] = ACTIONS(863), + [aux_sym_number_token1] = ACTIONS(863), + [aux_sym_number_token2] = ACTIONS(863), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_asort] = ACTIONS(863), + [anon_sym_asorti] = ACTIONS(863), + [anon_sym_bindtextdomain] = ACTIONS(863), + [anon_sym_compl] = ACTIONS(863), + [anon_sym_cos] = ACTIONS(863), + [anon_sym_dcgettext] = ACTIONS(863), + [anon_sym_dcngettext] = ACTIONS(863), + [anon_sym_exp] = ACTIONS(863), + [anon_sym_gensub] = ACTIONS(863), + [anon_sym_gsub] = ACTIONS(863), + [anon_sym_index] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_isarray] = ACTIONS(863), + [anon_sym_length] = ACTIONS(863), + [anon_sym_log] = ACTIONS(863), + [anon_sym_lshift] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mktime] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_patsplit] = ACTIONS(863), + [anon_sym_rand] = ACTIONS(863), + [anon_sym_rshift] = ACTIONS(863), + [anon_sym_sin] = ACTIONS(863), + [anon_sym_split] = ACTIONS(863), + [anon_sym_sprintf] = ACTIONS(863), + [anon_sym_sqrt] = ACTIONS(863), + [anon_sym_srand] = ACTIONS(863), + [anon_sym_strftime] = ACTIONS(863), + [anon_sym_strtonum] = ACTIONS(863), + [anon_sym_sub] = ACTIONS(863), + [anon_sym_substr] = ACTIONS(863), + [anon_sym_systime] = ACTIONS(863), + [anon_sym_tolower] = ACTIONS(863), + [anon_sym_toupper] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(863), + [sym_concatenating_space] = ACTIONS(865), + [sym__if_else_separator] = ACTIONS(865), + }, + [371] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + [sym__if_else_separator] = ACTIONS(767), + }, + [372] = { + [sym_identifier] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LF] = ACTIONS(843), + [anon_sym_CR_LF] = ACTIONS(843), + [anon_sym_if] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(843), + [anon_sym_for] = ACTIONS(843), + [anon_sym_in] = ACTIONS(843), + [sym_break_statement] = ACTIONS(843), + [sym_continue_statement] = ACTIONS(843), + [anon_sym_delete] = ACTIONS(843), + [anon_sym_exit] = ACTIONS(843), + [anon_sym_return] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_getline] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(843), + [sym_next_statement] = ACTIONS(843), + [sym_nextfile_statement] = ACTIONS(843), + [anon_sym_print] = ACTIONS(843), + [anon_sym_printf] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_GT_GT] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_PIPE_AMP] = ACTIONS(843), + [anon_sym_QMARK] = ACTIONS(843), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym_STAR_STAR] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_LT_EQ] = ACTIONS(843), + [anon_sym_GT_EQ] = ACTIONS(843), + [anon_sym_EQ_EQ] = ACTIONS(843), + [anon_sym_BANG_EQ] = ACTIONS(843), + [anon_sym_TILDE] = ACTIONS(843), + [anon_sym_BANG_TILDE] = ACTIONS(843), + [anon_sym_AMP_AMP] = ACTIONS(843), + [anon_sym_PIPE_PIPE] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_PLUS_PLUS] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_AT] = ACTIONS(843), + [aux_sym_number_token1] = ACTIONS(843), + [aux_sym_number_token2] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_and] = ACTIONS(843), + [anon_sym_asort] = ACTIONS(843), + [anon_sym_asorti] = ACTIONS(843), + [anon_sym_bindtextdomain] = ACTIONS(843), + [anon_sym_compl] = ACTIONS(843), + [anon_sym_cos] = ACTIONS(843), + [anon_sym_dcgettext] = ACTIONS(843), + [anon_sym_dcngettext] = ACTIONS(843), + [anon_sym_exp] = ACTIONS(843), + [anon_sym_gensub] = ACTIONS(843), + [anon_sym_gsub] = ACTIONS(843), + [anon_sym_index] = ACTIONS(843), + [anon_sym_int] = ACTIONS(843), + [anon_sym_isarray] = ACTIONS(843), + [anon_sym_length] = ACTIONS(843), + [anon_sym_log] = ACTIONS(843), + [anon_sym_lshift] = ACTIONS(843), + [anon_sym_match] = ACTIONS(843), + [anon_sym_mktime] = ACTIONS(843), + [anon_sym_or] = ACTIONS(843), + [anon_sym_patsplit] = ACTIONS(843), + [anon_sym_rand] = ACTIONS(843), + [anon_sym_rshift] = ACTIONS(843), + [anon_sym_sin] = ACTIONS(843), + [anon_sym_split] = ACTIONS(843), + [anon_sym_sprintf] = ACTIONS(843), + [anon_sym_sqrt] = ACTIONS(843), + [anon_sym_srand] = ACTIONS(843), + [anon_sym_strftime] = ACTIONS(843), + [anon_sym_strtonum] = ACTIONS(843), + [anon_sym_sub] = ACTIONS(843), + [anon_sym_substr] = ACTIONS(843), + [anon_sym_systime] = ACTIONS(843), + [anon_sym_tolower] = ACTIONS(843), + [anon_sym_toupper] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(843), + [anon_sym_xor] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(843), + [sym_concatenating_space] = ACTIONS(845), + [sym__if_else_separator] = ACTIONS(845), + }, + [373] = { + [sym_identifier] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(847), + [anon_sym_CR_LF] = ACTIONS(847), + [anon_sym_if] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_while] = ACTIONS(847), + [anon_sym_do] = ACTIONS(847), + [anon_sym_for] = ACTIONS(847), + [anon_sym_in] = ACTIONS(847), + [sym_break_statement] = ACTIONS(847), + [sym_continue_statement] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_exit] = ACTIONS(847), + [anon_sym_return] = ACTIONS(847), + [anon_sym_switch] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_getline] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(847), + [sym_next_statement] = ACTIONS(847), + [sym_nextfile_statement] = ACTIONS(847), + [anon_sym_print] = ACTIONS(847), + [anon_sym_printf] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_PIPE_AMP] = ACTIONS(847), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_CARET] = ACTIONS(847), + [anon_sym_STAR_STAR] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(847), + [anon_sym_PERCENT] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_BANG_TILDE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(847), + [anon_sym_AT] = ACTIONS(847), + [aux_sym_number_token1] = ACTIONS(847), + [aux_sym_number_token2] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_and] = ACTIONS(847), + [anon_sym_asort] = ACTIONS(847), + [anon_sym_asorti] = ACTIONS(847), + [anon_sym_bindtextdomain] = ACTIONS(847), + [anon_sym_compl] = ACTIONS(847), + [anon_sym_cos] = ACTIONS(847), + [anon_sym_dcgettext] = ACTIONS(847), + [anon_sym_dcngettext] = ACTIONS(847), + [anon_sym_exp] = ACTIONS(847), + [anon_sym_gensub] = ACTIONS(847), + [anon_sym_gsub] = ACTIONS(847), + [anon_sym_index] = ACTIONS(847), + [anon_sym_int] = ACTIONS(847), + [anon_sym_isarray] = ACTIONS(847), + [anon_sym_length] = ACTIONS(847), + [anon_sym_log] = ACTIONS(847), + [anon_sym_lshift] = ACTIONS(847), + [anon_sym_match] = ACTIONS(847), + [anon_sym_mktime] = ACTIONS(847), + [anon_sym_or] = ACTIONS(847), + [anon_sym_patsplit] = ACTIONS(847), + [anon_sym_rand] = ACTIONS(847), + [anon_sym_rshift] = ACTIONS(847), + [anon_sym_sin] = ACTIONS(847), + [anon_sym_split] = ACTIONS(847), + [anon_sym_sprintf] = ACTIONS(847), + [anon_sym_sqrt] = ACTIONS(847), + [anon_sym_srand] = ACTIONS(847), + [anon_sym_strftime] = ACTIONS(847), + [anon_sym_strtonum] = ACTIONS(847), + [anon_sym_sub] = ACTIONS(847), + [anon_sym_substr] = ACTIONS(847), + [anon_sym_systime] = ACTIONS(847), + [anon_sym_tolower] = ACTIONS(847), + [anon_sym_toupper] = ACTIONS(847), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_xor] = ACTIONS(847), + [anon_sym_POUND] = ACTIONS(847), + [sym_concatenating_space] = ACTIONS(849), + [sym__if_else_separator] = ACTIONS(849), + }, + [374] = { + [sym_identifier] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [sym_break_statement] = ACTIONS(859), + [sym_continue_statement] = ACTIONS(859), + [anon_sym_delete] = ACTIONS(859), + [anon_sym_exit] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_switch] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_getline] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [sym_next_statement] = ACTIONS(859), + [sym_nextfile_statement] = ACTIONS(859), + [anon_sym_print] = ACTIONS(859), + [anon_sym_printf] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_BANG_TILDE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(859), + [aux_sym_number_token1] = ACTIONS(859), + [aux_sym_number_token2] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_asort] = ACTIONS(859), + [anon_sym_asorti] = ACTIONS(859), + [anon_sym_bindtextdomain] = ACTIONS(859), + [anon_sym_compl] = ACTIONS(859), + [anon_sym_cos] = ACTIONS(859), + [anon_sym_dcgettext] = ACTIONS(859), + [anon_sym_dcngettext] = ACTIONS(859), + [anon_sym_exp] = ACTIONS(859), + [anon_sym_gensub] = ACTIONS(859), + [anon_sym_gsub] = ACTIONS(859), + [anon_sym_index] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_isarray] = ACTIONS(859), + [anon_sym_length] = ACTIONS(859), + [anon_sym_log] = ACTIONS(859), + [anon_sym_lshift] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mktime] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_patsplit] = ACTIONS(859), + [anon_sym_rand] = ACTIONS(859), + [anon_sym_rshift] = ACTIONS(859), + [anon_sym_sin] = ACTIONS(859), + [anon_sym_split] = ACTIONS(859), + [anon_sym_sprintf] = ACTIONS(859), + [anon_sym_sqrt] = ACTIONS(859), + [anon_sym_srand] = ACTIONS(859), + [anon_sym_strftime] = ACTIONS(859), + [anon_sym_strtonum] = ACTIONS(859), + [anon_sym_sub] = ACTIONS(859), + [anon_sym_substr] = ACTIONS(859), + [anon_sym_systime] = ACTIONS(859), + [anon_sym_tolower] = ACTIONS(859), + [anon_sym_toupper] = ACTIONS(859), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [sym_concatenating_space] = ACTIONS(861), + [sym__if_else_separator] = ACTIONS(861), + }, + [375] = { + [sym_identifier] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(881), + [anon_sym_CR_LF] = ACTIONS(881), + [anon_sym_if] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_while] = ACTIONS(881), + [anon_sym_do] = ACTIONS(881), + [anon_sym_for] = ACTIONS(881), + [anon_sym_in] = ACTIONS(881), + [sym_break_statement] = ACTIONS(881), + [sym_continue_statement] = ACTIONS(881), + [anon_sym_delete] = ACTIONS(881), + [anon_sym_exit] = ACTIONS(881), + [anon_sym_return] = ACTIONS(881), + [anon_sym_switch] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_getline] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [sym_next_statement] = ACTIONS(881), + [sym_nextfile_statement] = ACTIONS(881), + [anon_sym_print] = ACTIONS(881), + [anon_sym_printf] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_GT_GT] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_PIPE_AMP] = ACTIONS(881), + [anon_sym_QMARK] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(881), + [anon_sym_STAR_STAR] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(881), + [anon_sym_PERCENT] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_AMP_AMP] = ACTIONS(881), + [anon_sym_PIPE_PIPE] = ACTIONS(881), + [anon_sym_BANG] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(881), + [anon_sym_DASH_DASH] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(881), + [aux_sym_number_token1] = ACTIONS(881), + [aux_sym_number_token2] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_asort] = ACTIONS(881), + [anon_sym_asorti] = ACTIONS(881), + [anon_sym_bindtextdomain] = ACTIONS(881), + [anon_sym_compl] = ACTIONS(881), + [anon_sym_cos] = ACTIONS(881), + [anon_sym_dcgettext] = ACTIONS(881), + [anon_sym_dcngettext] = ACTIONS(881), + [anon_sym_exp] = ACTIONS(881), + [anon_sym_gensub] = ACTIONS(881), + [anon_sym_gsub] = ACTIONS(881), + [anon_sym_index] = ACTIONS(881), + [anon_sym_int] = ACTIONS(881), + [anon_sym_isarray] = ACTIONS(881), + [anon_sym_length] = ACTIONS(881), + [anon_sym_log] = ACTIONS(881), + [anon_sym_lshift] = ACTIONS(881), + [anon_sym_match] = ACTIONS(881), + [anon_sym_mktime] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_patsplit] = ACTIONS(881), + [anon_sym_rand] = ACTIONS(881), + [anon_sym_rshift] = ACTIONS(881), + [anon_sym_sin] = ACTIONS(881), + [anon_sym_split] = ACTIONS(881), + [anon_sym_sprintf] = ACTIONS(881), + [anon_sym_sqrt] = ACTIONS(881), + [anon_sym_srand] = ACTIONS(881), + [anon_sym_strftime] = ACTIONS(881), + [anon_sym_strtonum] = ACTIONS(881), + [anon_sym_sub] = ACTIONS(881), + [anon_sym_substr] = ACTIONS(881), + [anon_sym_systime] = ACTIONS(881), + [anon_sym_tolower] = ACTIONS(881), + [anon_sym_toupper] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(881), + [sym_concatenating_space] = ACTIONS(883), + [sym__if_else_separator] = ACTIONS(883), + }, + [376] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + }, + [377] = { + [sym_identifier] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_CR_LF] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(897), + [sym_continue_statement] = ACTIONS(897), + [anon_sym_delete] = ACTIONS(897), + [anon_sym_exit] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_switch] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_getline] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(897), + [sym_nextfile_statement] = ACTIONS(897), + [anon_sym_print] = ACTIONS(897), + [anon_sym_printf] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [aux_sym_number_token1] = ACTIONS(897), + [aux_sym_number_token2] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_asort] = ACTIONS(897), + [anon_sym_asorti] = ACTIONS(897), + [anon_sym_bindtextdomain] = ACTIONS(897), + [anon_sym_compl] = ACTIONS(897), + [anon_sym_cos] = ACTIONS(897), + [anon_sym_dcgettext] = ACTIONS(897), + [anon_sym_dcngettext] = ACTIONS(897), + [anon_sym_exp] = ACTIONS(897), + [anon_sym_gensub] = ACTIONS(897), + [anon_sym_gsub] = ACTIONS(897), + [anon_sym_index] = ACTIONS(897), + [anon_sym_int] = ACTIONS(897), + [anon_sym_isarray] = ACTIONS(897), + [anon_sym_length] = ACTIONS(897), + [anon_sym_log] = ACTIONS(897), + [anon_sym_lshift] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_mktime] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_patsplit] = ACTIONS(897), + [anon_sym_rand] = ACTIONS(897), + [anon_sym_rshift] = ACTIONS(897), + [anon_sym_sin] = ACTIONS(897), + [anon_sym_split] = ACTIONS(897), + [anon_sym_sprintf] = ACTIONS(897), + [anon_sym_sqrt] = ACTIONS(897), + [anon_sym_srand] = ACTIONS(897), + [anon_sym_strftime] = ACTIONS(897), + [anon_sym_strtonum] = ACTIONS(897), + [anon_sym_sub] = ACTIONS(897), + [anon_sym_substr] = ACTIONS(897), + [anon_sym_systime] = ACTIONS(897), + [anon_sym_tolower] = ACTIONS(897), + [anon_sym_toupper] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(897), + [sym_concatenating_space] = ACTIONS(899), + [sym__if_else_separator] = ACTIONS(899), + }, + [378] = { + [sym_identifier] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(893), + [anon_sym_CR_LF] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(893), + [sym_continue_statement] = ACTIONS(893), + [anon_sym_delete] = ACTIONS(893), + [anon_sym_exit] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_switch] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_getline] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(893), + [sym_nextfile_statement] = ACTIONS(893), + [anon_sym_print] = ACTIONS(893), + [anon_sym_printf] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_AT] = ACTIONS(893), + [aux_sym_number_token1] = ACTIONS(893), + [aux_sym_number_token2] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_asort] = ACTIONS(893), + [anon_sym_asorti] = ACTIONS(893), + [anon_sym_bindtextdomain] = ACTIONS(893), + [anon_sym_compl] = ACTIONS(893), + [anon_sym_cos] = ACTIONS(893), + [anon_sym_dcgettext] = ACTIONS(893), + [anon_sym_dcngettext] = ACTIONS(893), + [anon_sym_exp] = ACTIONS(893), + [anon_sym_gensub] = ACTIONS(893), + [anon_sym_gsub] = ACTIONS(893), + [anon_sym_index] = ACTIONS(893), + [anon_sym_int] = ACTIONS(893), + [anon_sym_isarray] = ACTIONS(893), + [anon_sym_length] = ACTIONS(893), + [anon_sym_log] = ACTIONS(893), + [anon_sym_lshift] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_mktime] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_patsplit] = ACTIONS(893), + [anon_sym_rand] = ACTIONS(893), + [anon_sym_rshift] = ACTIONS(893), + [anon_sym_sin] = ACTIONS(893), + [anon_sym_split] = ACTIONS(893), + [anon_sym_sprintf] = ACTIONS(893), + [anon_sym_sqrt] = ACTIONS(893), + [anon_sym_srand] = ACTIONS(893), + [anon_sym_strftime] = ACTIONS(893), + [anon_sym_strtonum] = ACTIONS(893), + [anon_sym_sub] = ACTIONS(893), + [anon_sym_substr] = ACTIONS(893), + [anon_sym_systime] = ACTIONS(893), + [anon_sym_tolower] = ACTIONS(893), + [anon_sym_toupper] = ACTIONS(893), + [anon_sym_typeof] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(893), + [sym_concatenating_space] = ACTIONS(895), + [sym__if_else_separator] = ACTIONS(895), + }, + [379] = { + [sym_identifier] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_CR_LF] = ACTIONS(809), + [anon_sym_if] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(809), + [anon_sym_for] = ACTIONS(809), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(809), + [sym_continue_statement] = ACTIONS(809), + [anon_sym_delete] = ACTIONS(809), + [anon_sym_exit] = ACTIONS(809), + [anon_sym_return] = ACTIONS(809), + [anon_sym_switch] = ACTIONS(809), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_getline] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(809), + [sym_nextfile_statement] = ACTIONS(809), + [anon_sym_print] = ACTIONS(809), + [anon_sym_printf] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_AT] = ACTIONS(809), + [aux_sym_number_token1] = ACTIONS(809), + [aux_sym_number_token2] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), + [anon_sym_and] = ACTIONS(809), + [anon_sym_asort] = ACTIONS(809), + [anon_sym_asorti] = ACTIONS(809), + [anon_sym_bindtextdomain] = ACTIONS(809), + [anon_sym_compl] = ACTIONS(809), + [anon_sym_cos] = ACTIONS(809), + [anon_sym_dcgettext] = ACTIONS(809), + [anon_sym_dcngettext] = ACTIONS(809), + [anon_sym_exp] = ACTIONS(809), + [anon_sym_gensub] = ACTIONS(809), + [anon_sym_gsub] = ACTIONS(809), + [anon_sym_index] = ACTIONS(809), + [anon_sym_int] = ACTIONS(809), + [anon_sym_isarray] = ACTIONS(809), + [anon_sym_length] = ACTIONS(809), + [anon_sym_log] = ACTIONS(809), + [anon_sym_lshift] = ACTIONS(809), + [anon_sym_match] = ACTIONS(809), + [anon_sym_mktime] = ACTIONS(809), + [anon_sym_or] = ACTIONS(809), + [anon_sym_patsplit] = ACTIONS(809), + [anon_sym_rand] = ACTIONS(809), + [anon_sym_rshift] = ACTIONS(809), + [anon_sym_sin] = ACTIONS(809), + [anon_sym_split] = ACTIONS(809), + [anon_sym_sprintf] = ACTIONS(809), + [anon_sym_sqrt] = ACTIONS(809), + [anon_sym_srand] = ACTIONS(809), + [anon_sym_strftime] = ACTIONS(809), + [anon_sym_strtonum] = ACTIONS(809), + [anon_sym_sub] = ACTIONS(809), + [anon_sym_substr] = ACTIONS(809), + [anon_sym_systime] = ACTIONS(809), + [anon_sym_tolower] = ACTIONS(809), + [anon_sym_toupper] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(809), + [anon_sym_xor] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(809), + [sym_concatenating_space] = ACTIONS(829), + [sym__if_else_separator] = ACTIONS(829), + }, + [380] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym__if_else_separator] = ACTIONS(767), + }, + [381] = { + [sym_identifier] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(923), + [anon_sym_CR_LF] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_in] = ACTIONS(923), + [sym_break_statement] = ACTIONS(923), + [sym_continue_statement] = ACTIONS(923), + [anon_sym_delete] = ACTIONS(923), + [anon_sym_exit] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_getline] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [sym_next_statement] = ACTIONS(923), + [sym_nextfile_statement] = ACTIONS(923), + [anon_sym_print] = ACTIONS(923), + [anon_sym_printf] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [aux_sym_number_token1] = ACTIONS(923), + [aux_sym_number_token2] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_asort] = ACTIONS(923), + [anon_sym_asorti] = ACTIONS(923), + [anon_sym_bindtextdomain] = ACTIONS(923), + [anon_sym_compl] = ACTIONS(923), + [anon_sym_cos] = ACTIONS(923), + [anon_sym_dcgettext] = ACTIONS(923), + [anon_sym_dcngettext] = ACTIONS(923), + [anon_sym_exp] = ACTIONS(923), + [anon_sym_gensub] = ACTIONS(923), + [anon_sym_gsub] = ACTIONS(923), + [anon_sym_index] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_isarray] = ACTIONS(923), + [anon_sym_length] = ACTIONS(923), + [anon_sym_log] = ACTIONS(923), + [anon_sym_lshift] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mktime] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_patsplit] = ACTIONS(923), + [anon_sym_rand] = ACTIONS(923), + [anon_sym_rshift] = ACTIONS(923), + [anon_sym_sin] = ACTIONS(923), + [anon_sym_split] = ACTIONS(923), + [anon_sym_sprintf] = ACTIONS(923), + [anon_sym_sqrt] = ACTIONS(923), + [anon_sym_srand] = ACTIONS(923), + [anon_sym_strftime] = ACTIONS(923), + [anon_sym_strtonum] = ACTIONS(923), + [anon_sym_sub] = ACTIONS(923), + [anon_sym_substr] = ACTIONS(923), + [anon_sym_systime] = ACTIONS(923), + [anon_sym_tolower] = ACTIONS(923), + [anon_sym_toupper] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [sym_concatenating_space] = ACTIONS(925), + [sym__if_else_separator] = ACTIONS(925), + }, + [382] = { + [sym_identifier] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_CR_LF] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(871), + [sym_continue_statement] = ACTIONS(871), + [anon_sym_delete] = ACTIONS(871), + [anon_sym_exit] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_switch] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_getline] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(871), + [sym_nextfile_statement] = ACTIONS(871), + [anon_sym_print] = ACTIONS(871), + [anon_sym_printf] = ACTIONS(871), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(1115), + [anon_sym_PIPE_AMP] = ACTIONS(1115), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_AT] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(871), + [aux_sym_number_token2] = ACTIONS(871), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_asort] = ACTIONS(871), + [anon_sym_asorti] = ACTIONS(871), + [anon_sym_bindtextdomain] = ACTIONS(871), + [anon_sym_compl] = ACTIONS(871), + [anon_sym_cos] = ACTIONS(871), + [anon_sym_dcgettext] = ACTIONS(871), + [anon_sym_dcngettext] = ACTIONS(871), + [anon_sym_exp] = ACTIONS(871), + [anon_sym_gensub] = ACTIONS(871), + [anon_sym_gsub] = ACTIONS(871), + [anon_sym_index] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_isarray] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_log] = ACTIONS(871), + [anon_sym_lshift] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mktime] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_patsplit] = ACTIONS(871), + [anon_sym_rand] = ACTIONS(871), + [anon_sym_rshift] = ACTIONS(871), + [anon_sym_sin] = ACTIONS(871), + [anon_sym_split] = ACTIONS(871), + [anon_sym_sprintf] = ACTIONS(871), + [anon_sym_sqrt] = ACTIONS(871), + [anon_sym_srand] = ACTIONS(871), + [anon_sym_strftime] = ACTIONS(871), + [anon_sym_strtonum] = ACTIONS(871), + [anon_sym_sub] = ACTIONS(871), + [anon_sym_substr] = ACTIONS(871), + [anon_sym_systime] = ACTIONS(871), + [anon_sym_tolower] = ACTIONS(871), + [anon_sym_toupper] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_POUND] = ACTIONS(871), + [sym_concatenating_space] = ACTIONS(875), + [sym__if_else_separator] = ACTIONS(875), + }, + [383] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1119), + [anon_sym_PLUS_EQ] = ACTIONS(1121), + [anon_sym_DASH_EQ] = ACTIONS(1121), + [anon_sym_STAR_EQ] = ACTIONS(1121), + [anon_sym_SLASH_EQ] = ACTIONS(1121), + [anon_sym_PERCENT_EQ] = ACTIONS(1121), + [anon_sym_CARET_EQ] = ACTIONS(1121), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(733), + [sym__func_call] = ACTIONS(1095), + }, + [384] = { + [sym_identifier] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(939), + [anon_sym_CR_LF] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [sym_break_statement] = ACTIONS(939), + [sym_continue_statement] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_exit] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_getline] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [sym_next_statement] = ACTIONS(939), + [sym_nextfile_statement] = ACTIONS(939), + [anon_sym_print] = ACTIONS(939), + [anon_sym_printf] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [aux_sym_number_token1] = ACTIONS(939), + [aux_sym_number_token2] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_asort] = ACTIONS(939), + [anon_sym_asorti] = ACTIONS(939), + [anon_sym_bindtextdomain] = ACTIONS(939), + [anon_sym_compl] = ACTIONS(939), + [anon_sym_cos] = ACTIONS(939), + [anon_sym_dcgettext] = ACTIONS(939), + [anon_sym_dcngettext] = ACTIONS(939), + [anon_sym_exp] = ACTIONS(939), + [anon_sym_gensub] = ACTIONS(939), + [anon_sym_gsub] = ACTIONS(939), + [anon_sym_index] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_isarray] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_log] = ACTIONS(939), + [anon_sym_lshift] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mktime] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_patsplit] = ACTIONS(939), + [anon_sym_rand] = ACTIONS(939), + [anon_sym_rshift] = ACTIONS(939), + [anon_sym_sin] = ACTIONS(939), + [anon_sym_split] = ACTIONS(939), + [anon_sym_sprintf] = ACTIONS(939), + [anon_sym_sqrt] = ACTIONS(939), + [anon_sym_srand] = ACTIONS(939), + [anon_sym_strftime] = ACTIONS(939), + [anon_sym_strtonum] = ACTIONS(939), + [anon_sym_sub] = ACTIONS(939), + [anon_sym_substr] = ACTIONS(939), + [anon_sym_systime] = ACTIONS(939), + [anon_sym_tolower] = ACTIONS(939), + [anon_sym_toupper] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(939), + [sym_concatenating_space] = ACTIONS(941), + [sym__if_else_separator] = ACTIONS(941), + }, + [385] = { + [sym_identifier] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_CR_LF] = ACTIONS(789), + [anon_sym_if] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_while] = ACTIONS(789), + [anon_sym_do] = ACTIONS(789), + [anon_sym_for] = ACTIONS(789), + [anon_sym_in] = ACTIONS(789), + [sym_break_statement] = ACTIONS(789), + [sym_continue_statement] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_exit] = ACTIONS(789), + [anon_sym_return] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_getline] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [sym_next_statement] = ACTIONS(789), + [sym_nextfile_statement] = ACTIONS(789), + [anon_sym_print] = ACTIONS(789), + [anon_sym_printf] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_PIPE_AMP] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_PERCENT] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_BANG_TILDE] = ACTIONS(789), + [anon_sym_AMP_AMP] = ACTIONS(789), + [anon_sym_PIPE_PIPE] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(789), + [anon_sym_DASH_DASH] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(789), + [sym_regex_flags] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(789), + [aux_sym_number_token1] = ACTIONS(789), + [aux_sym_number_token2] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_asort] = ACTIONS(789), + [anon_sym_asorti] = ACTIONS(789), + [anon_sym_bindtextdomain] = ACTIONS(789), + [anon_sym_compl] = ACTIONS(789), + [anon_sym_cos] = ACTIONS(789), + [anon_sym_dcgettext] = ACTIONS(789), + [anon_sym_dcngettext] = ACTIONS(789), + [anon_sym_exp] = ACTIONS(789), + [anon_sym_gensub] = ACTIONS(789), + [anon_sym_gsub] = ACTIONS(789), + [anon_sym_index] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_isarray] = ACTIONS(789), + [anon_sym_length] = ACTIONS(789), + [anon_sym_log] = ACTIONS(789), + [anon_sym_lshift] = ACTIONS(789), + [anon_sym_match] = ACTIONS(789), + [anon_sym_mktime] = ACTIONS(789), + [anon_sym_or] = ACTIONS(789), + [anon_sym_patsplit] = ACTIONS(789), + [anon_sym_rand] = ACTIONS(789), + [anon_sym_rshift] = ACTIONS(789), + [anon_sym_sin] = ACTIONS(789), + [anon_sym_split] = ACTIONS(789), + [anon_sym_sprintf] = ACTIONS(789), + [anon_sym_sqrt] = ACTIONS(789), + [anon_sym_srand] = ACTIONS(789), + [anon_sym_strftime] = ACTIONS(789), + [anon_sym_strtonum] = ACTIONS(789), + [anon_sym_sub] = ACTIONS(789), + [anon_sym_substr] = ACTIONS(789), + [anon_sym_systime] = ACTIONS(789), + [anon_sym_tolower] = ACTIONS(789), + [anon_sym_toupper] = ACTIONS(789), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(789), + [sym__if_else_separator] = ACTIONS(793), + }, + [386] = { + [sym_array_ref] = STATE(480), + [sym_namespace] = STATE(2492), + [sym_ns_qualified_name] = STATE(480), + [ts_builtin_sym_end] = ACTIONS(729), + [sym_identifier] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_BEGIN] = ACTIONS(725), + [anon_sym_END] = ACTIONS(725), + [anon_sym_BEGINFILE] = ACTIONS(725), + [anon_sym_ENDFILE] = ACTIONS(725), + [anon_sym_ATinclude] = ACTIONS(729), + [anon_sym_ATload] = ACTIONS(729), + [anon_sym_ATnamespace] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_in] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(729), + [anon_sym_DASH_EQ] = ACTIONS(729), + [anon_sym_STAR_EQ] = ACTIONS(729), + [anon_sym_SLASH_EQ] = ACTIONS(729), + [anon_sym_PERCENT_EQ] = ACTIONS(729), + [anon_sym_CARET_EQ] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_function] = ACTIONS(725), + [anon_sym_func] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(729), + [sym_concatenating_space] = ACTIONS(729), + }, + [387] = { + [sym_identifier] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_CR_LF] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in] = ACTIONS(931), + [sym_break_statement] = ACTIONS(931), + [sym_continue_statement] = ACTIONS(931), + [anon_sym_delete] = ACTIONS(931), + [anon_sym_exit] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_getline] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [sym_next_statement] = ACTIONS(931), + [sym_nextfile_statement] = ACTIONS(931), + [anon_sym_print] = ACTIONS(931), + [anon_sym_printf] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [aux_sym_number_token1] = ACTIONS(931), + [aux_sym_number_token2] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_asort] = ACTIONS(931), + [anon_sym_asorti] = ACTIONS(931), + [anon_sym_bindtextdomain] = ACTIONS(931), + [anon_sym_compl] = ACTIONS(931), + [anon_sym_cos] = ACTIONS(931), + [anon_sym_dcgettext] = ACTIONS(931), + [anon_sym_dcngettext] = ACTIONS(931), + [anon_sym_exp] = ACTIONS(931), + [anon_sym_gensub] = ACTIONS(931), + [anon_sym_gsub] = ACTIONS(931), + [anon_sym_index] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_isarray] = ACTIONS(931), + [anon_sym_length] = ACTIONS(931), + [anon_sym_log] = ACTIONS(931), + [anon_sym_lshift] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mktime] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_patsplit] = ACTIONS(931), + [anon_sym_rand] = ACTIONS(931), + [anon_sym_rshift] = ACTIONS(931), + [anon_sym_sin] = ACTIONS(931), + [anon_sym_split] = ACTIONS(931), + [anon_sym_sprintf] = ACTIONS(931), + [anon_sym_sqrt] = ACTIONS(931), + [anon_sym_srand] = ACTIONS(931), + [anon_sym_strftime] = ACTIONS(931), + [anon_sym_strtonum] = ACTIONS(931), + [anon_sym_sub] = ACTIONS(931), + [anon_sym_substr] = ACTIONS(931), + [anon_sym_systime] = ACTIONS(931), + [anon_sym_tolower] = ACTIONS(931), + [anon_sym_toupper] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [sym_concatenating_space] = ACTIONS(933), + [sym__if_else_separator] = ACTIONS(933), + }, + [388] = { + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_CR_LF] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [sym_break_statement] = ACTIONS(911), + [sym_continue_statement] = ACTIONS(911), + [anon_sym_delete] = ACTIONS(911), + [anon_sym_exit] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_getline] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [sym_next_statement] = ACTIONS(911), + [sym_nextfile_statement] = ACTIONS(911), + [anon_sym_print] = ACTIONS(911), + [anon_sym_printf] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(911), + [anon_sym_PIPE_PIPE] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_asort] = ACTIONS(911), + [anon_sym_asorti] = ACTIONS(911), + [anon_sym_bindtextdomain] = ACTIONS(911), + [anon_sym_compl] = ACTIONS(911), + [anon_sym_cos] = ACTIONS(911), + [anon_sym_dcgettext] = ACTIONS(911), + [anon_sym_dcngettext] = ACTIONS(911), + [anon_sym_exp] = ACTIONS(911), + [anon_sym_gensub] = ACTIONS(911), + [anon_sym_gsub] = ACTIONS(911), + [anon_sym_index] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_isarray] = ACTIONS(911), + [anon_sym_length] = ACTIONS(911), + [anon_sym_log] = ACTIONS(911), + [anon_sym_lshift] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mktime] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_patsplit] = ACTIONS(911), + [anon_sym_rand] = ACTIONS(911), + [anon_sym_rshift] = ACTIONS(911), + [anon_sym_sin] = ACTIONS(911), + [anon_sym_split] = ACTIONS(911), + [anon_sym_sprintf] = ACTIONS(911), + [anon_sym_sqrt] = ACTIONS(911), + [anon_sym_srand] = ACTIONS(911), + [anon_sym_strftime] = ACTIONS(911), + [anon_sym_strtonum] = ACTIONS(911), + [anon_sym_sub] = ACTIONS(911), + [anon_sym_substr] = ACTIONS(911), + [anon_sym_systime] = ACTIONS(911), + [anon_sym_tolower] = ACTIONS(911), + [anon_sym_toupper] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(911), + [sym_concatenating_space] = ACTIONS(913), + [sym__if_else_separator] = ACTIONS(913), + }, + [389] = { + [sym_identifier] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_CR_LF] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_in] = ACTIONS(915), + [sym_break_statement] = ACTIONS(915), + [sym_continue_statement] = ACTIONS(915), + [anon_sym_delete] = ACTIONS(915), + [anon_sym_exit] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_getline] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [sym_next_statement] = ACTIONS(915), + [sym_nextfile_statement] = ACTIONS(915), + [anon_sym_print] = ACTIONS(915), + [anon_sym_printf] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_STAR_STAR] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_BANG_TILDE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), + [aux_sym_number_token1] = ACTIONS(915), + [aux_sym_number_token2] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_asort] = ACTIONS(915), + [anon_sym_asorti] = ACTIONS(915), + [anon_sym_bindtextdomain] = ACTIONS(915), + [anon_sym_compl] = ACTIONS(915), + [anon_sym_cos] = ACTIONS(915), + [anon_sym_dcgettext] = ACTIONS(915), + [anon_sym_dcngettext] = ACTIONS(915), + [anon_sym_exp] = ACTIONS(915), + [anon_sym_gensub] = ACTIONS(915), + [anon_sym_gsub] = ACTIONS(915), + [anon_sym_index] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_isarray] = ACTIONS(915), + [anon_sym_length] = ACTIONS(915), + [anon_sym_log] = ACTIONS(915), + [anon_sym_lshift] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mktime] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_patsplit] = ACTIONS(915), + [anon_sym_rand] = ACTIONS(915), + [anon_sym_rshift] = ACTIONS(915), + [anon_sym_sin] = ACTIONS(915), + [anon_sym_split] = ACTIONS(915), + [anon_sym_sprintf] = ACTIONS(915), + [anon_sym_sqrt] = ACTIONS(915), + [anon_sym_srand] = ACTIONS(915), + [anon_sym_strftime] = ACTIONS(915), + [anon_sym_strtonum] = ACTIONS(915), + [anon_sym_sub] = ACTIONS(915), + [anon_sym_substr] = ACTIONS(915), + [anon_sym_systime] = ACTIONS(915), + [anon_sym_tolower] = ACTIONS(915), + [anon_sym_toupper] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(915), + [sym_concatenating_space] = ACTIONS(917), + [sym__if_else_separator] = ACTIONS(917), + }, + [390] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(719), + [anon_sym_DASH_EQ] = ACTIONS(719), + [anon_sym_STAR_EQ] = ACTIONS(719), + [anon_sym_SLASH_EQ] = ACTIONS(719), + [anon_sym_PERCENT_EQ] = ACTIONS(719), + [anon_sym_CARET_EQ] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(711), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + [sym__func_call] = ACTIONS(1127), + }, + [391] = { + [sym_identifier] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_CR_LF] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(901), + [sym_continue_statement] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_exit] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_getline] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(901), + [sym_nextfile_statement] = ACTIONS(901), + [anon_sym_print] = ACTIONS(901), + [anon_sym_printf] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PIPE_AMP] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(901), + [aux_sym_number_token1] = ACTIONS(901), + [aux_sym_number_token2] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_asort] = ACTIONS(901), + [anon_sym_asorti] = ACTIONS(901), + [anon_sym_bindtextdomain] = ACTIONS(901), + [anon_sym_compl] = ACTIONS(901), + [anon_sym_cos] = ACTIONS(901), + [anon_sym_dcgettext] = ACTIONS(901), + [anon_sym_dcngettext] = ACTIONS(901), + [anon_sym_exp] = ACTIONS(901), + [anon_sym_gensub] = ACTIONS(901), + [anon_sym_gsub] = ACTIONS(901), + [anon_sym_index] = ACTIONS(901), + [anon_sym_int] = ACTIONS(901), + [anon_sym_isarray] = ACTIONS(901), + [anon_sym_length] = ACTIONS(901), + [anon_sym_log] = ACTIONS(901), + [anon_sym_lshift] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mktime] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_patsplit] = ACTIONS(901), + [anon_sym_rand] = ACTIONS(901), + [anon_sym_rshift] = ACTIONS(901), + [anon_sym_sin] = ACTIONS(901), + [anon_sym_split] = ACTIONS(901), + [anon_sym_sprintf] = ACTIONS(901), + [anon_sym_sqrt] = ACTIONS(901), + [anon_sym_srand] = ACTIONS(901), + [anon_sym_strftime] = ACTIONS(901), + [anon_sym_strtonum] = ACTIONS(901), + [anon_sym_sub] = ACTIONS(901), + [anon_sym_substr] = ACTIONS(901), + [anon_sym_systime] = ACTIONS(901), + [anon_sym_tolower] = ACTIONS(901), + [anon_sym_toupper] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(901), + [sym_concatenating_space] = ACTIONS(903), + [sym__if_else_separator] = ACTIONS(903), + }, + [392] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(733), + [sym__func_call] = ACTIONS(1127), + }, + [393] = { + [sym_identifier] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_CR_LF] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [sym_break_statement] = ACTIONS(927), + [sym_continue_statement] = ACTIONS(927), + [anon_sym_delete] = ACTIONS(927), + [anon_sym_exit] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_getline] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [sym_next_statement] = ACTIONS(927), + [sym_nextfile_statement] = ACTIONS(927), + [anon_sym_print] = ACTIONS(927), + [anon_sym_printf] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(927), + [aux_sym_number_token1] = ACTIONS(927), + [aux_sym_number_token2] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_asort] = ACTIONS(927), + [anon_sym_asorti] = ACTIONS(927), + [anon_sym_bindtextdomain] = ACTIONS(927), + [anon_sym_compl] = ACTIONS(927), + [anon_sym_cos] = ACTIONS(927), + [anon_sym_dcgettext] = ACTIONS(927), + [anon_sym_dcngettext] = ACTIONS(927), + [anon_sym_exp] = ACTIONS(927), + [anon_sym_gensub] = ACTIONS(927), + [anon_sym_gsub] = ACTIONS(927), + [anon_sym_index] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_isarray] = ACTIONS(927), + [anon_sym_length] = ACTIONS(927), + [anon_sym_log] = ACTIONS(927), + [anon_sym_lshift] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mktime] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_patsplit] = ACTIONS(927), + [anon_sym_rand] = ACTIONS(927), + [anon_sym_rshift] = ACTIONS(927), + [anon_sym_sin] = ACTIONS(927), + [anon_sym_split] = ACTIONS(927), + [anon_sym_sprintf] = ACTIONS(927), + [anon_sym_sqrt] = ACTIONS(927), + [anon_sym_srand] = ACTIONS(927), + [anon_sym_strftime] = ACTIONS(927), + [anon_sym_strtonum] = ACTIONS(927), + [anon_sym_sub] = ACTIONS(927), + [anon_sym_substr] = ACTIONS(927), + [anon_sym_systime] = ACTIONS(927), + [anon_sym_tolower] = ACTIONS(927), + [anon_sym_toupper] = ACTIONS(927), + [anon_sym_typeof] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(927), + [sym_concatenating_space] = ACTIONS(929), + [sym__if_else_separator] = ACTIONS(929), + }, + [394] = { + [sym_identifier] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_LF] = ACTIONS(1131), + [anon_sym_CR_LF] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(1131), + [sym_continue_statement] = ACTIONS(1131), + [anon_sym_delete] = ACTIONS(1131), + [anon_sym_exit] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_getline] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(1131), + [sym_nextfile_statement] = ACTIONS(1131), + [anon_sym_print] = ACTIONS(1131), + [anon_sym_printf] = ACTIONS(1131), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1131), + [anon_sym_PIPE_AMP] = ACTIONS(1131), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_PLUS_PLUS] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1131), + [anon_sym_AT] = ACTIONS(1131), + [aux_sym_number_token1] = ACTIONS(1131), + [aux_sym_number_token2] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_and] = ACTIONS(1131), + [anon_sym_asort] = ACTIONS(1131), + [anon_sym_asorti] = ACTIONS(1131), + [anon_sym_bindtextdomain] = ACTIONS(1131), + [anon_sym_compl] = ACTIONS(1131), + [anon_sym_cos] = ACTIONS(1131), + [anon_sym_dcgettext] = ACTIONS(1131), + [anon_sym_dcngettext] = ACTIONS(1131), + [anon_sym_exp] = ACTIONS(1131), + [anon_sym_gensub] = ACTIONS(1131), + [anon_sym_gsub] = ACTIONS(1131), + [anon_sym_index] = ACTIONS(1131), + [anon_sym_int] = ACTIONS(1131), + [anon_sym_isarray] = ACTIONS(1131), + [anon_sym_length] = ACTIONS(1131), + [anon_sym_log] = ACTIONS(1131), + [anon_sym_lshift] = ACTIONS(1131), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_mktime] = ACTIONS(1131), + [anon_sym_or] = ACTIONS(1131), + [anon_sym_patsplit] = ACTIONS(1131), + [anon_sym_rand] = ACTIONS(1131), + [anon_sym_rshift] = ACTIONS(1131), + [anon_sym_sin] = ACTIONS(1131), + [anon_sym_split] = ACTIONS(1131), + [anon_sym_sprintf] = ACTIONS(1131), + [anon_sym_sqrt] = ACTIONS(1131), + [anon_sym_srand] = ACTIONS(1131), + [anon_sym_strftime] = ACTIONS(1131), + [anon_sym_strtonum] = ACTIONS(1131), + [anon_sym_sub] = ACTIONS(1131), + [anon_sym_substr] = ACTIONS(1131), + [anon_sym_systime] = ACTIONS(1131), + [anon_sym_tolower] = ACTIONS(1131), + [anon_sym_toupper] = ACTIONS(1131), + [anon_sym_typeof] = ACTIONS(1131), + [anon_sym_xor] = ACTIONS(1131), + [anon_sym_POUND] = ACTIONS(1131), + [sym__if_else_separator] = ACTIONS(1135), + }, + [395] = { + [sym_identifier] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(877), + [anon_sym_CR_LF] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [sym_break_statement] = ACTIONS(877), + [sym_continue_statement] = ACTIONS(877), + [anon_sym_delete] = ACTIONS(877), + [anon_sym_exit] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_switch] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_getline] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [sym_next_statement] = ACTIONS(877), + [sym_nextfile_statement] = ACTIONS(877), + [anon_sym_print] = ACTIONS(877), + [anon_sym_printf] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_GT_GT] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_AT] = ACTIONS(877), + [aux_sym_number_token1] = ACTIONS(877), + [aux_sym_number_token2] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_asort] = ACTIONS(877), + [anon_sym_asorti] = ACTIONS(877), + [anon_sym_bindtextdomain] = ACTIONS(877), + [anon_sym_compl] = ACTIONS(877), + [anon_sym_cos] = ACTIONS(877), + [anon_sym_dcgettext] = ACTIONS(877), + [anon_sym_dcngettext] = ACTIONS(877), + [anon_sym_exp] = ACTIONS(877), + [anon_sym_gensub] = ACTIONS(877), + [anon_sym_gsub] = ACTIONS(877), + [anon_sym_index] = ACTIONS(877), + [anon_sym_int] = ACTIONS(877), + [anon_sym_isarray] = ACTIONS(877), + [anon_sym_length] = ACTIONS(877), + [anon_sym_log] = ACTIONS(877), + [anon_sym_lshift] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mktime] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_patsplit] = ACTIONS(877), + [anon_sym_rand] = ACTIONS(877), + [anon_sym_rshift] = ACTIONS(877), + [anon_sym_sin] = ACTIONS(877), + [anon_sym_split] = ACTIONS(877), + [anon_sym_sprintf] = ACTIONS(877), + [anon_sym_sqrt] = ACTIONS(877), + [anon_sym_srand] = ACTIONS(877), + [anon_sym_strftime] = ACTIONS(877), + [anon_sym_strtonum] = ACTIONS(877), + [anon_sym_sub] = ACTIONS(877), + [anon_sym_substr] = ACTIONS(877), + [anon_sym_systime] = ACTIONS(877), + [anon_sym_tolower] = ACTIONS(877), + [anon_sym_toupper] = ACTIONS(877), + [anon_sym_typeof] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [sym__if_else_separator] = ACTIONS(879), + }, + [396] = { + [sym_identifier] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_CR_LF] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_in] = ACTIONS(915), + [sym_break_statement] = ACTIONS(915), + [sym_continue_statement] = ACTIONS(915), + [anon_sym_delete] = ACTIONS(915), + [anon_sym_exit] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_getline] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [sym_next_statement] = ACTIONS(915), + [sym_nextfile_statement] = ACTIONS(915), + [anon_sym_print] = ACTIONS(915), + [anon_sym_printf] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_STAR_STAR] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_BANG_TILDE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), + [aux_sym_number_token1] = ACTIONS(915), + [aux_sym_number_token2] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_asort] = ACTIONS(915), + [anon_sym_asorti] = ACTIONS(915), + [anon_sym_bindtextdomain] = ACTIONS(915), + [anon_sym_compl] = ACTIONS(915), + [anon_sym_cos] = ACTIONS(915), + [anon_sym_dcgettext] = ACTIONS(915), + [anon_sym_dcngettext] = ACTIONS(915), + [anon_sym_exp] = ACTIONS(915), + [anon_sym_gensub] = ACTIONS(915), + [anon_sym_gsub] = ACTIONS(915), + [anon_sym_index] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_isarray] = ACTIONS(915), + [anon_sym_length] = ACTIONS(915), + [anon_sym_log] = ACTIONS(915), + [anon_sym_lshift] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mktime] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_patsplit] = ACTIONS(915), + [anon_sym_rand] = ACTIONS(915), + [anon_sym_rshift] = ACTIONS(915), + [anon_sym_sin] = ACTIONS(915), + [anon_sym_split] = ACTIONS(915), + [anon_sym_sprintf] = ACTIONS(915), + [anon_sym_sqrt] = ACTIONS(915), + [anon_sym_srand] = ACTIONS(915), + [anon_sym_strftime] = ACTIONS(915), + [anon_sym_strtonum] = ACTIONS(915), + [anon_sym_sub] = ACTIONS(915), + [anon_sym_substr] = ACTIONS(915), + [anon_sym_systime] = ACTIONS(915), + [anon_sym_tolower] = ACTIONS(915), + [anon_sym_toupper] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(915), + [sym__if_else_separator] = ACTIONS(917), + }, + [397] = { + [sym_identifier] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_CR_LF] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_do] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_in] = ACTIONS(867), + [sym_break_statement] = ACTIONS(867), + [sym_continue_statement] = ACTIONS(867), + [anon_sym_delete] = ACTIONS(867), + [anon_sym_exit] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_getline] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [sym_next_statement] = ACTIONS(867), + [sym_nextfile_statement] = ACTIONS(867), + [anon_sym_print] = ACTIONS(867), + [anon_sym_printf] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_PIPE_AMP] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_STAR_STAR] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_BANG_TILDE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(867), + [anon_sym_PIPE_PIPE] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [aux_sym_number_token1] = ACTIONS(867), + [aux_sym_number_token2] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_asort] = ACTIONS(867), + [anon_sym_asorti] = ACTIONS(867), + [anon_sym_bindtextdomain] = ACTIONS(867), + [anon_sym_compl] = ACTIONS(867), + [anon_sym_cos] = ACTIONS(867), + [anon_sym_dcgettext] = ACTIONS(867), + [anon_sym_dcngettext] = ACTIONS(867), + [anon_sym_exp] = ACTIONS(867), + [anon_sym_gensub] = ACTIONS(867), + [anon_sym_gsub] = ACTIONS(867), + [anon_sym_index] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_isarray] = ACTIONS(867), + [anon_sym_length] = ACTIONS(867), + [anon_sym_log] = ACTIONS(867), + [anon_sym_lshift] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mktime] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_patsplit] = ACTIONS(867), + [anon_sym_rand] = ACTIONS(867), + [anon_sym_rshift] = ACTIONS(867), + [anon_sym_sin] = ACTIONS(867), + [anon_sym_split] = ACTIONS(867), + [anon_sym_sprintf] = ACTIONS(867), + [anon_sym_sqrt] = ACTIONS(867), + [anon_sym_srand] = ACTIONS(867), + [anon_sym_strftime] = ACTIONS(867), + [anon_sym_strtonum] = ACTIONS(867), + [anon_sym_sub] = ACTIONS(867), + [anon_sym_substr] = ACTIONS(867), + [anon_sym_systime] = ACTIONS(867), + [anon_sym_tolower] = ACTIONS(867), + [anon_sym_toupper] = ACTIONS(867), + [anon_sym_typeof] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + [sym__if_else_separator] = ACTIONS(869), + }, + [398] = { + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(713), + [anon_sym_CR_LF] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(713), + [sym_continue_statement] = ACTIONS(713), + [anon_sym_delete] = ACTIONS(713), + [anon_sym_exit] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(713), + [sym_nextfile_statement] = ACTIONS(713), + [anon_sym_print] = ACTIONS(713), + [anon_sym_printf] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(713), + [sym_concatenating_space] = ACTIONS(787), + }, + [399] = { + [sym_identifier] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_CR_LF] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [sym_break_statement] = ACTIONS(927), + [sym_continue_statement] = ACTIONS(927), + [anon_sym_delete] = ACTIONS(927), + [anon_sym_exit] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_getline] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [sym_next_statement] = ACTIONS(927), + [sym_nextfile_statement] = ACTIONS(927), + [anon_sym_print] = ACTIONS(927), + [anon_sym_printf] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(927), + [aux_sym_number_token1] = ACTIONS(927), + [aux_sym_number_token2] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_asort] = ACTIONS(927), + [anon_sym_asorti] = ACTIONS(927), + [anon_sym_bindtextdomain] = ACTIONS(927), + [anon_sym_compl] = ACTIONS(927), + [anon_sym_cos] = ACTIONS(927), + [anon_sym_dcgettext] = ACTIONS(927), + [anon_sym_dcngettext] = ACTIONS(927), + [anon_sym_exp] = ACTIONS(927), + [anon_sym_gensub] = ACTIONS(927), + [anon_sym_gsub] = ACTIONS(927), + [anon_sym_index] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_isarray] = ACTIONS(927), + [anon_sym_length] = ACTIONS(927), + [anon_sym_log] = ACTIONS(927), + [anon_sym_lshift] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mktime] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_patsplit] = ACTIONS(927), + [anon_sym_rand] = ACTIONS(927), + [anon_sym_rshift] = ACTIONS(927), + [anon_sym_sin] = ACTIONS(927), + [anon_sym_split] = ACTIONS(927), + [anon_sym_sprintf] = ACTIONS(927), + [anon_sym_sqrt] = ACTIONS(927), + [anon_sym_srand] = ACTIONS(927), + [anon_sym_strftime] = ACTIONS(927), + [anon_sym_strtonum] = ACTIONS(927), + [anon_sym_sub] = ACTIONS(927), + [anon_sym_substr] = ACTIONS(927), + [anon_sym_systime] = ACTIONS(927), + [anon_sym_tolower] = ACTIONS(927), + [anon_sym_toupper] = ACTIONS(927), + [anon_sym_typeof] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(927), + [sym__if_else_separator] = ACTIONS(929), + }, + [400] = { + [sym_identifier] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_CR_LF] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in] = ACTIONS(931), + [sym_break_statement] = ACTIONS(931), + [sym_continue_statement] = ACTIONS(931), + [anon_sym_delete] = ACTIONS(931), + [anon_sym_exit] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_getline] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [sym_next_statement] = ACTIONS(931), + [sym_nextfile_statement] = ACTIONS(931), + [anon_sym_print] = ACTIONS(931), + [anon_sym_printf] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [aux_sym_number_token1] = ACTIONS(931), + [aux_sym_number_token2] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_asort] = ACTIONS(931), + [anon_sym_asorti] = ACTIONS(931), + [anon_sym_bindtextdomain] = ACTIONS(931), + [anon_sym_compl] = ACTIONS(931), + [anon_sym_cos] = ACTIONS(931), + [anon_sym_dcgettext] = ACTIONS(931), + [anon_sym_dcngettext] = ACTIONS(931), + [anon_sym_exp] = ACTIONS(931), + [anon_sym_gensub] = ACTIONS(931), + [anon_sym_gsub] = ACTIONS(931), + [anon_sym_index] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_isarray] = ACTIONS(931), + [anon_sym_length] = ACTIONS(931), + [anon_sym_log] = ACTIONS(931), + [anon_sym_lshift] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mktime] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_patsplit] = ACTIONS(931), + [anon_sym_rand] = ACTIONS(931), + [anon_sym_rshift] = ACTIONS(931), + [anon_sym_sin] = ACTIONS(931), + [anon_sym_split] = ACTIONS(931), + [anon_sym_sprintf] = ACTIONS(931), + [anon_sym_sqrt] = ACTIONS(931), + [anon_sym_srand] = ACTIONS(931), + [anon_sym_strftime] = ACTIONS(931), + [anon_sym_strtonum] = ACTIONS(931), + [anon_sym_sub] = ACTIONS(931), + [anon_sym_substr] = ACTIONS(931), + [anon_sym_systime] = ACTIONS(931), + [anon_sym_tolower] = ACTIONS(931), + [anon_sym_toupper] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [sym__if_else_separator] = ACTIONS(933), + }, + [401] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(759), + [anon_sym_DASH_EQ] = ACTIONS(759), + [anon_sym_STAR_EQ] = ACTIONS(759), + [anon_sym_SLASH_EQ] = ACTIONS(759), + [anon_sym_PERCENT_EQ] = ACTIONS(759), + [anon_sym_CARET_EQ] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + [sym_concatenating_space] = ACTIONS(759), + }, + [402] = { + [sym_identifier] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(847), + [anon_sym_CR_LF] = ACTIONS(847), + [anon_sym_if] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_while] = ACTIONS(847), + [anon_sym_do] = ACTIONS(847), + [anon_sym_for] = ACTIONS(847), + [anon_sym_in] = ACTIONS(847), + [sym_break_statement] = ACTIONS(847), + [sym_continue_statement] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_exit] = ACTIONS(847), + [anon_sym_return] = ACTIONS(847), + [anon_sym_switch] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_getline] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(847), + [sym_next_statement] = ACTIONS(847), + [sym_nextfile_statement] = ACTIONS(847), + [anon_sym_print] = ACTIONS(847), + [anon_sym_printf] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_PIPE_AMP] = ACTIONS(847), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_CARET] = ACTIONS(847), + [anon_sym_STAR_STAR] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(847), + [anon_sym_PERCENT] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_TILDE] = ACTIONS(847), + [anon_sym_BANG_TILDE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(847), + [anon_sym_AT] = ACTIONS(847), + [aux_sym_number_token1] = ACTIONS(847), + [aux_sym_number_token2] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_and] = ACTIONS(847), + [anon_sym_asort] = ACTIONS(847), + [anon_sym_asorti] = ACTIONS(847), + [anon_sym_bindtextdomain] = ACTIONS(847), + [anon_sym_compl] = ACTIONS(847), + [anon_sym_cos] = ACTIONS(847), + [anon_sym_dcgettext] = ACTIONS(847), + [anon_sym_dcngettext] = ACTIONS(847), + [anon_sym_exp] = ACTIONS(847), + [anon_sym_gensub] = ACTIONS(847), + [anon_sym_gsub] = ACTIONS(847), + [anon_sym_index] = ACTIONS(847), + [anon_sym_int] = ACTIONS(847), + [anon_sym_isarray] = ACTIONS(847), + [anon_sym_length] = ACTIONS(847), + [anon_sym_log] = ACTIONS(847), + [anon_sym_lshift] = ACTIONS(847), + [anon_sym_match] = ACTIONS(847), + [anon_sym_mktime] = ACTIONS(847), + [anon_sym_or] = ACTIONS(847), + [anon_sym_patsplit] = ACTIONS(847), + [anon_sym_rand] = ACTIONS(847), + [anon_sym_rshift] = ACTIONS(847), + [anon_sym_sin] = ACTIONS(847), + [anon_sym_split] = ACTIONS(847), + [anon_sym_sprintf] = ACTIONS(847), + [anon_sym_sqrt] = ACTIONS(847), + [anon_sym_srand] = ACTIONS(847), + [anon_sym_strftime] = ACTIONS(847), + [anon_sym_strtonum] = ACTIONS(847), + [anon_sym_sub] = ACTIONS(847), + [anon_sym_substr] = ACTIONS(847), + [anon_sym_systime] = ACTIONS(847), + [anon_sym_tolower] = ACTIONS(847), + [anon_sym_toupper] = ACTIONS(847), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_xor] = ACTIONS(847), + [anon_sym_POUND] = ACTIONS(847), + [sym_concatenating_space] = ACTIONS(849), + }, + [403] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_STAR_EQ] = ACTIONS(1089), + [anon_sym_SLASH_EQ] = ACTIONS(1089), + [anon_sym_PERCENT_EQ] = ACTIONS(1089), + [anon_sym_CARET_EQ] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(1093), + [sym__func_call] = ACTIONS(1095), + }, + [404] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_BEGIN] = ACTIONS(765), + [anon_sym_END] = ACTIONS(765), + [anon_sym_BEGINFILE] = ACTIONS(765), + [anon_sym_ENDFILE] = ACTIONS(765), + [anon_sym_ATinclude] = ACTIONS(767), + [anon_sym_ATload] = ACTIONS(767), + [anon_sym_ATnamespace] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_in] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(767), + [anon_sym_DASH_EQ] = ACTIONS(767), + [anon_sym_STAR_EQ] = ACTIONS(767), + [anon_sym_SLASH_EQ] = ACTIONS(767), + [anon_sym_PERCENT_EQ] = ACTIONS(767), + [anon_sym_CARET_EQ] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_function] = ACTIONS(765), + [anon_sym_func] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + [sym_concatenating_space] = ACTIONS(767), + }, + [405] = { + [sym_identifier] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_CR_LF] = ACTIONS(831), + [anon_sym_if] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_while] = ACTIONS(831), + [anon_sym_do] = ACTIONS(831), + [anon_sym_for] = ACTIONS(831), + [anon_sym_in] = ACTIONS(831), + [sym_break_statement] = ACTIONS(831), + [sym_continue_statement] = ACTIONS(831), + [anon_sym_delete] = ACTIONS(831), + [anon_sym_exit] = ACTIONS(831), + [anon_sym_return] = ACTIONS(831), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_getline] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(831), + [sym_next_statement] = ACTIONS(831), + [sym_nextfile_statement] = ACTIONS(831), + [anon_sym_print] = ACTIONS(831), + [anon_sym_printf] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_GT_GT] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_PIPE_AMP] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym_STAR_STAR] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LT_EQ] = ACTIONS(831), + [anon_sym_GT_EQ] = ACTIONS(831), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_BANG_EQ] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_BANG_TILDE] = ACTIONS(831), + [anon_sym_AMP_AMP] = ACTIONS(831), + [anon_sym_PIPE_PIPE] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_PLUS_PLUS] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [aux_sym_number_token1] = ACTIONS(831), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_and] = ACTIONS(831), + [anon_sym_asort] = ACTIONS(831), + [anon_sym_asorti] = ACTIONS(831), + [anon_sym_bindtextdomain] = ACTIONS(831), + [anon_sym_compl] = ACTIONS(831), + [anon_sym_cos] = ACTIONS(831), + [anon_sym_dcgettext] = ACTIONS(831), + [anon_sym_dcngettext] = ACTIONS(831), + [anon_sym_exp] = ACTIONS(831), + [anon_sym_gensub] = ACTIONS(831), + [anon_sym_gsub] = ACTIONS(831), + [anon_sym_index] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_isarray] = ACTIONS(831), + [anon_sym_length] = ACTIONS(831), + [anon_sym_log] = ACTIONS(831), + [anon_sym_lshift] = ACTIONS(831), + [anon_sym_match] = ACTIONS(831), + [anon_sym_mktime] = ACTIONS(831), + [anon_sym_or] = ACTIONS(831), + [anon_sym_patsplit] = ACTIONS(831), + [anon_sym_rand] = ACTIONS(831), + [anon_sym_rshift] = ACTIONS(831), + [anon_sym_sin] = ACTIONS(831), + [anon_sym_split] = ACTIONS(831), + [anon_sym_sprintf] = ACTIONS(831), + [anon_sym_sqrt] = ACTIONS(831), + [anon_sym_srand] = ACTIONS(831), + [anon_sym_strftime] = ACTIONS(831), + [anon_sym_strtonum] = ACTIONS(831), + [anon_sym_sub] = ACTIONS(831), + [anon_sym_substr] = ACTIONS(831), + [anon_sym_systime] = ACTIONS(831), + [anon_sym_tolower] = ACTIONS(831), + [anon_sym_toupper] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + [sym__if_else_separator] = ACTIONS(833), + }, + [406] = { + [sym_identifier] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_CR_LF] = ACTIONS(831), + [anon_sym_if] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_while] = ACTIONS(831), + [anon_sym_do] = ACTIONS(831), + [anon_sym_for] = ACTIONS(831), + [anon_sym_in] = ACTIONS(831), + [sym_break_statement] = ACTIONS(831), + [sym_continue_statement] = ACTIONS(831), + [anon_sym_delete] = ACTIONS(831), + [anon_sym_exit] = ACTIONS(831), + [anon_sym_return] = ACTIONS(831), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_getline] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(831), + [sym_next_statement] = ACTIONS(831), + [sym_nextfile_statement] = ACTIONS(831), + [anon_sym_print] = ACTIONS(831), + [anon_sym_printf] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_GT_GT] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_PIPE_AMP] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym_STAR_STAR] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LT_EQ] = ACTIONS(831), + [anon_sym_GT_EQ] = ACTIONS(831), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_BANG_EQ] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_BANG_TILDE] = ACTIONS(831), + [anon_sym_AMP_AMP] = ACTIONS(831), + [anon_sym_PIPE_PIPE] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_PLUS_PLUS] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [aux_sym_number_token1] = ACTIONS(831), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_and] = ACTIONS(831), + [anon_sym_asort] = ACTIONS(831), + [anon_sym_asorti] = ACTIONS(831), + [anon_sym_bindtextdomain] = ACTIONS(831), + [anon_sym_compl] = ACTIONS(831), + [anon_sym_cos] = ACTIONS(831), + [anon_sym_dcgettext] = ACTIONS(831), + [anon_sym_dcngettext] = ACTIONS(831), + [anon_sym_exp] = ACTIONS(831), + [anon_sym_gensub] = ACTIONS(831), + [anon_sym_gsub] = ACTIONS(831), + [anon_sym_index] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_isarray] = ACTIONS(831), + [anon_sym_length] = ACTIONS(831), + [anon_sym_log] = ACTIONS(831), + [anon_sym_lshift] = ACTIONS(831), + [anon_sym_match] = ACTIONS(831), + [anon_sym_mktime] = ACTIONS(831), + [anon_sym_or] = ACTIONS(831), + [anon_sym_patsplit] = ACTIONS(831), + [anon_sym_rand] = ACTIONS(831), + [anon_sym_rshift] = ACTIONS(831), + [anon_sym_sin] = ACTIONS(831), + [anon_sym_split] = ACTIONS(831), + [anon_sym_sprintf] = ACTIONS(831), + [anon_sym_sqrt] = ACTIONS(831), + [anon_sym_srand] = ACTIONS(831), + [anon_sym_strftime] = ACTIONS(831), + [anon_sym_strtonum] = ACTIONS(831), + [anon_sym_sub] = ACTIONS(831), + [anon_sym_substr] = ACTIONS(831), + [anon_sym_systime] = ACTIONS(831), + [anon_sym_tolower] = ACTIONS(831), + [anon_sym_toupper] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + [sym_concatenating_space] = ACTIONS(833), + }, + [407] = { + [sym_identifier] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(877), + [anon_sym_CR_LF] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [sym_break_statement] = ACTIONS(877), + [sym_continue_statement] = ACTIONS(877), + [anon_sym_delete] = ACTIONS(877), + [anon_sym_exit] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_switch] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_getline] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [sym_next_statement] = ACTIONS(877), + [sym_nextfile_statement] = ACTIONS(877), + [anon_sym_print] = ACTIONS(877), + [anon_sym_printf] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_GT_GT] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_AT] = ACTIONS(877), + [aux_sym_number_token1] = ACTIONS(877), + [aux_sym_number_token2] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_asort] = ACTIONS(877), + [anon_sym_asorti] = ACTIONS(877), + [anon_sym_bindtextdomain] = ACTIONS(877), + [anon_sym_compl] = ACTIONS(877), + [anon_sym_cos] = ACTIONS(877), + [anon_sym_dcgettext] = ACTIONS(877), + [anon_sym_dcngettext] = ACTIONS(877), + [anon_sym_exp] = ACTIONS(877), + [anon_sym_gensub] = ACTIONS(877), + [anon_sym_gsub] = ACTIONS(877), + [anon_sym_index] = ACTIONS(877), + [anon_sym_int] = ACTIONS(877), + [anon_sym_isarray] = ACTIONS(877), + [anon_sym_length] = ACTIONS(877), + [anon_sym_log] = ACTIONS(877), + [anon_sym_lshift] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mktime] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_patsplit] = ACTIONS(877), + [anon_sym_rand] = ACTIONS(877), + [anon_sym_rshift] = ACTIONS(877), + [anon_sym_sin] = ACTIONS(877), + [anon_sym_split] = ACTIONS(877), + [anon_sym_sprintf] = ACTIONS(877), + [anon_sym_sqrt] = ACTIONS(877), + [anon_sym_srand] = ACTIONS(877), + [anon_sym_strftime] = ACTIONS(877), + [anon_sym_strtonum] = ACTIONS(877), + [anon_sym_sub] = ACTIONS(877), + [anon_sym_substr] = ACTIONS(877), + [anon_sym_systime] = ACTIONS(877), + [anon_sym_tolower] = ACTIONS(877), + [anon_sym_toupper] = ACTIONS(877), + [anon_sym_typeof] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [sym_concatenating_space] = ACTIONS(879), + }, + [408] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(759), + [anon_sym_DASH_EQ] = ACTIONS(759), + [anon_sym_STAR_EQ] = ACTIONS(759), + [anon_sym_SLASH_EQ] = ACTIONS(759), + [anon_sym_PERCENT_EQ] = ACTIONS(759), + [anon_sym_CARET_EQ] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + [sym_concatenating_space] = ACTIONS(759), + }, + [409] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(733), + [sym__func_call] = ACTIONS(1127), + }, + [410] = { + [sym_identifier] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_CR_LF] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_do] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_in] = ACTIONS(867), + [sym_break_statement] = ACTIONS(867), + [sym_continue_statement] = ACTIONS(867), + [anon_sym_delete] = ACTIONS(867), + [anon_sym_exit] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_getline] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [sym_next_statement] = ACTIONS(867), + [sym_nextfile_statement] = ACTIONS(867), + [anon_sym_print] = ACTIONS(867), + [anon_sym_printf] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_PIPE_AMP] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_STAR_STAR] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_BANG_TILDE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(867), + [anon_sym_PIPE_PIPE] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [aux_sym_number_token1] = ACTIONS(867), + [aux_sym_number_token2] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_asort] = ACTIONS(867), + [anon_sym_asorti] = ACTIONS(867), + [anon_sym_bindtextdomain] = ACTIONS(867), + [anon_sym_compl] = ACTIONS(867), + [anon_sym_cos] = ACTIONS(867), + [anon_sym_dcgettext] = ACTIONS(867), + [anon_sym_dcngettext] = ACTIONS(867), + [anon_sym_exp] = ACTIONS(867), + [anon_sym_gensub] = ACTIONS(867), + [anon_sym_gsub] = ACTIONS(867), + [anon_sym_index] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_isarray] = ACTIONS(867), + [anon_sym_length] = ACTIONS(867), + [anon_sym_log] = ACTIONS(867), + [anon_sym_lshift] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mktime] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_patsplit] = ACTIONS(867), + [anon_sym_rand] = ACTIONS(867), + [anon_sym_rshift] = ACTIONS(867), + [anon_sym_sin] = ACTIONS(867), + [anon_sym_split] = ACTIONS(867), + [anon_sym_sprintf] = ACTIONS(867), + [anon_sym_sqrt] = ACTIONS(867), + [anon_sym_srand] = ACTIONS(867), + [anon_sym_strftime] = ACTIONS(867), + [anon_sym_strtonum] = ACTIONS(867), + [anon_sym_sub] = ACTIONS(867), + [anon_sym_substr] = ACTIONS(867), + [anon_sym_systime] = ACTIONS(867), + [anon_sym_tolower] = ACTIONS(867), + [anon_sym_toupper] = ACTIONS(867), + [anon_sym_typeof] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + [sym_concatenating_space] = ACTIONS(869), + }, + [411] = { + [sym_identifier] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(881), + [anon_sym_CR_LF] = ACTIONS(881), + [anon_sym_if] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_while] = ACTIONS(881), + [anon_sym_do] = ACTIONS(881), + [anon_sym_for] = ACTIONS(881), + [anon_sym_in] = ACTIONS(881), + [sym_break_statement] = ACTIONS(881), + [sym_continue_statement] = ACTIONS(881), + [anon_sym_delete] = ACTIONS(881), + [anon_sym_exit] = ACTIONS(881), + [anon_sym_return] = ACTIONS(881), + [anon_sym_switch] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_getline] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [sym_next_statement] = ACTIONS(881), + [sym_nextfile_statement] = ACTIONS(881), + [anon_sym_print] = ACTIONS(881), + [anon_sym_printf] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_GT_GT] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_PIPE_AMP] = ACTIONS(881), + [anon_sym_QMARK] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(881), + [anon_sym_STAR_STAR] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(881), + [anon_sym_PERCENT] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_AMP_AMP] = ACTIONS(881), + [anon_sym_PIPE_PIPE] = ACTIONS(881), + [anon_sym_BANG] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(881), + [anon_sym_DASH_DASH] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(881), + [aux_sym_number_token1] = ACTIONS(881), + [aux_sym_number_token2] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_asort] = ACTIONS(881), + [anon_sym_asorti] = ACTIONS(881), + [anon_sym_bindtextdomain] = ACTIONS(881), + [anon_sym_compl] = ACTIONS(881), + [anon_sym_cos] = ACTIONS(881), + [anon_sym_dcgettext] = ACTIONS(881), + [anon_sym_dcngettext] = ACTIONS(881), + [anon_sym_exp] = ACTIONS(881), + [anon_sym_gensub] = ACTIONS(881), + [anon_sym_gsub] = ACTIONS(881), + [anon_sym_index] = ACTIONS(881), + [anon_sym_int] = ACTIONS(881), + [anon_sym_isarray] = ACTIONS(881), + [anon_sym_length] = ACTIONS(881), + [anon_sym_log] = ACTIONS(881), + [anon_sym_lshift] = ACTIONS(881), + [anon_sym_match] = ACTIONS(881), + [anon_sym_mktime] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_patsplit] = ACTIONS(881), + [anon_sym_rand] = ACTIONS(881), + [anon_sym_rshift] = ACTIONS(881), + [anon_sym_sin] = ACTIONS(881), + [anon_sym_split] = ACTIONS(881), + [anon_sym_sprintf] = ACTIONS(881), + [anon_sym_sqrt] = ACTIONS(881), + [anon_sym_srand] = ACTIONS(881), + [anon_sym_strftime] = ACTIONS(881), + [anon_sym_strtonum] = ACTIONS(881), + [anon_sym_sub] = ACTIONS(881), + [anon_sym_substr] = ACTIONS(881), + [anon_sym_systime] = ACTIONS(881), + [anon_sym_tolower] = ACTIONS(881), + [anon_sym_toupper] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(881), + [sym_concatenating_space] = ACTIONS(883), + }, + [412] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(719), + [anon_sym_DASH_EQ] = ACTIONS(719), + [anon_sym_STAR_EQ] = ACTIONS(719), + [anon_sym_SLASH_EQ] = ACTIONS(719), + [anon_sym_PERCENT_EQ] = ACTIONS(719), + [anon_sym_CARET_EQ] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + [sym__func_call] = ACTIONS(1127), + }, + [413] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + }, + [414] = { + [sym_identifier] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_CR_LF] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(1139), + [sym_continue_statement] = ACTIONS(1139), + [anon_sym_delete] = ACTIONS(1139), + [anon_sym_exit] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_getline] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(1139), + [sym_nextfile_statement] = ACTIONS(1139), + [anon_sym_print] = ACTIONS(1139), + [anon_sym_printf] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_AT] = ACTIONS(1139), + [aux_sym_number_token1] = ACTIONS(1139), + [aux_sym_number_token2] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_asort] = ACTIONS(1139), + [anon_sym_asorti] = ACTIONS(1139), + [anon_sym_bindtextdomain] = ACTIONS(1139), + [anon_sym_compl] = ACTIONS(1139), + [anon_sym_cos] = ACTIONS(1139), + [anon_sym_dcgettext] = ACTIONS(1139), + [anon_sym_dcngettext] = ACTIONS(1139), + [anon_sym_exp] = ACTIONS(1139), + [anon_sym_gensub] = ACTIONS(1139), + [anon_sym_gsub] = ACTIONS(1139), + [anon_sym_index] = ACTIONS(1139), + [anon_sym_int] = ACTIONS(1139), + [anon_sym_isarray] = ACTIONS(1139), + [anon_sym_length] = ACTIONS(1139), + [anon_sym_log] = ACTIONS(1139), + [anon_sym_lshift] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_mktime] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_patsplit] = ACTIONS(1139), + [anon_sym_rand] = ACTIONS(1139), + [anon_sym_rshift] = ACTIONS(1139), + [anon_sym_sin] = ACTIONS(1139), + [anon_sym_split] = ACTIONS(1139), + [anon_sym_sprintf] = ACTIONS(1139), + [anon_sym_sqrt] = ACTIONS(1139), + [anon_sym_srand] = ACTIONS(1139), + [anon_sym_strftime] = ACTIONS(1139), + [anon_sym_strtonum] = ACTIONS(1139), + [anon_sym_sub] = ACTIONS(1139), + [anon_sym_substr] = ACTIONS(1139), + [anon_sym_systime] = ACTIONS(1139), + [anon_sym_tolower] = ACTIONS(1139), + [anon_sym_toupper] = ACTIONS(1139), + [anon_sym_typeof] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(1139), + [sym__if_else_separator] = ACTIONS(1141), + }, + [415] = { + [sym_identifier] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(885), + [anon_sym_CR_LF] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [anon_sym_do] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_in] = ACTIONS(885), + [sym_break_statement] = ACTIONS(885), + [sym_continue_statement] = ACTIONS(885), + [anon_sym_delete] = ACTIONS(885), + [anon_sym_exit] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_getline] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [sym_next_statement] = ACTIONS(885), + [sym_nextfile_statement] = ACTIONS(885), + [anon_sym_print] = ACTIONS(885), + [anon_sym_printf] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_PIPE_AMP] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_STAR_STAR] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_BANG_TILDE] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(885), + [anon_sym_PIPE_PIPE] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(885), + [aux_sym_number_token1] = ACTIONS(885), + [aux_sym_number_token2] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_asort] = ACTIONS(885), + [anon_sym_asorti] = ACTIONS(885), + [anon_sym_bindtextdomain] = ACTIONS(885), + [anon_sym_compl] = ACTIONS(885), + [anon_sym_cos] = ACTIONS(885), + [anon_sym_dcgettext] = ACTIONS(885), + [anon_sym_dcngettext] = ACTIONS(885), + [anon_sym_exp] = ACTIONS(885), + [anon_sym_gensub] = ACTIONS(885), + [anon_sym_gsub] = ACTIONS(885), + [anon_sym_index] = ACTIONS(885), + [anon_sym_int] = ACTIONS(885), + [anon_sym_isarray] = ACTIONS(885), + [anon_sym_length] = ACTIONS(885), + [anon_sym_log] = ACTIONS(885), + [anon_sym_lshift] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mktime] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_patsplit] = ACTIONS(885), + [anon_sym_rand] = ACTIONS(885), + [anon_sym_rshift] = ACTIONS(885), + [anon_sym_sin] = ACTIONS(885), + [anon_sym_split] = ACTIONS(885), + [anon_sym_sprintf] = ACTIONS(885), + [anon_sym_sqrt] = ACTIONS(885), + [anon_sym_srand] = ACTIONS(885), + [anon_sym_strftime] = ACTIONS(885), + [anon_sym_strtonum] = ACTIONS(885), + [anon_sym_sub] = ACTIONS(885), + [anon_sym_substr] = ACTIONS(885), + [anon_sym_systime] = ACTIONS(885), + [anon_sym_tolower] = ACTIONS(885), + [anon_sym_toupper] = ACTIONS(885), + [anon_sym_typeof] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(885), + [sym_concatenating_space] = ACTIONS(887), + }, + [416] = { + [sym_identifier] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(939), + [anon_sym_CR_LF] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [sym_break_statement] = ACTIONS(939), + [sym_continue_statement] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_exit] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_getline] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [sym_next_statement] = ACTIONS(939), + [sym_nextfile_statement] = ACTIONS(939), + [anon_sym_print] = ACTIONS(939), + [anon_sym_printf] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [aux_sym_number_token1] = ACTIONS(939), + [aux_sym_number_token2] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_asort] = ACTIONS(939), + [anon_sym_asorti] = ACTIONS(939), + [anon_sym_bindtextdomain] = ACTIONS(939), + [anon_sym_compl] = ACTIONS(939), + [anon_sym_cos] = ACTIONS(939), + [anon_sym_dcgettext] = ACTIONS(939), + [anon_sym_dcngettext] = ACTIONS(939), + [anon_sym_exp] = ACTIONS(939), + [anon_sym_gensub] = ACTIONS(939), + [anon_sym_gsub] = ACTIONS(939), + [anon_sym_index] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_isarray] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_log] = ACTIONS(939), + [anon_sym_lshift] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mktime] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_patsplit] = ACTIONS(939), + [anon_sym_rand] = ACTIONS(939), + [anon_sym_rshift] = ACTIONS(939), + [anon_sym_sin] = ACTIONS(939), + [anon_sym_split] = ACTIONS(939), + [anon_sym_sprintf] = ACTIONS(939), + [anon_sym_sqrt] = ACTIONS(939), + [anon_sym_srand] = ACTIONS(939), + [anon_sym_strftime] = ACTIONS(939), + [anon_sym_strtonum] = ACTIONS(939), + [anon_sym_sub] = ACTIONS(939), + [anon_sym_substr] = ACTIONS(939), + [anon_sym_systime] = ACTIONS(939), + [anon_sym_tolower] = ACTIONS(939), + [anon_sym_toupper] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(939), + [sym__if_else_separator] = ACTIONS(941), + }, + [417] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1119), + [anon_sym_PLUS_EQ] = ACTIONS(1121), + [anon_sym_DASH_EQ] = ACTIONS(1121), + [anon_sym_STAR_EQ] = ACTIONS(1121), + [anon_sym_SLASH_EQ] = ACTIONS(1121), + [anon_sym_PERCENT_EQ] = ACTIONS(1121), + [anon_sym_CARET_EQ] = ACTIONS(1121), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(733), + [sym__func_call] = ACTIONS(1095), + }, + [418] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(755), + [anon_sym_CR_LF] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(755), + [sym_break_statement] = ACTIONS(755), + [sym_continue_statement] = ACTIONS(755), + [anon_sym_delete] = ACTIONS(755), + [anon_sym_exit] = ACTIONS(755), + [anon_sym_return] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1097), + [sym_next_statement] = ACTIONS(755), + [sym_nextfile_statement] = ACTIONS(755), + [anon_sym_print] = ACTIONS(755), + [anon_sym_printf] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_BANG_TILDE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + }, + [419] = { + [sym_identifier] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_CR_LF] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_do] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [sym_break_statement] = ACTIONS(863), + [sym_continue_statement] = ACTIONS(863), + [anon_sym_delete] = ACTIONS(863), + [anon_sym_exit] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_getline] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [sym_next_statement] = ACTIONS(863), + [sym_nextfile_statement] = ACTIONS(863), + [anon_sym_print] = ACTIONS(863), + [anon_sym_printf] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_TILDE] = ACTIONS(863), + [anon_sym_BANG_TILDE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS_PLUS] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_AT] = ACTIONS(863), + [aux_sym_number_token1] = ACTIONS(863), + [aux_sym_number_token2] = ACTIONS(863), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_asort] = ACTIONS(863), + [anon_sym_asorti] = ACTIONS(863), + [anon_sym_bindtextdomain] = ACTIONS(863), + [anon_sym_compl] = ACTIONS(863), + [anon_sym_cos] = ACTIONS(863), + [anon_sym_dcgettext] = ACTIONS(863), + [anon_sym_dcngettext] = ACTIONS(863), + [anon_sym_exp] = ACTIONS(863), + [anon_sym_gensub] = ACTIONS(863), + [anon_sym_gsub] = ACTIONS(863), + [anon_sym_index] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_isarray] = ACTIONS(863), + [anon_sym_length] = ACTIONS(863), + [anon_sym_log] = ACTIONS(863), + [anon_sym_lshift] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mktime] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_patsplit] = ACTIONS(863), + [anon_sym_rand] = ACTIONS(863), + [anon_sym_rshift] = ACTIONS(863), + [anon_sym_sin] = ACTIONS(863), + [anon_sym_split] = ACTIONS(863), + [anon_sym_sprintf] = ACTIONS(863), + [anon_sym_sqrt] = ACTIONS(863), + [anon_sym_srand] = ACTIONS(863), + [anon_sym_strftime] = ACTIONS(863), + [anon_sym_strtonum] = ACTIONS(863), + [anon_sym_sub] = ACTIONS(863), + [anon_sym_substr] = ACTIONS(863), + [anon_sym_systime] = ACTIONS(863), + [anon_sym_tolower] = ACTIONS(863), + [anon_sym_toupper] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(863), + [sym__if_else_separator] = ACTIONS(865), + }, + [420] = { + [sym_identifier] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_CR_LF] = ACTIONS(809), + [anon_sym_if] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(809), + [anon_sym_for] = ACTIONS(809), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(809), + [sym_continue_statement] = ACTIONS(809), + [anon_sym_delete] = ACTIONS(809), + [anon_sym_exit] = ACTIONS(809), + [anon_sym_return] = ACTIONS(809), + [anon_sym_switch] = ACTIONS(809), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_getline] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(809), + [sym_nextfile_statement] = ACTIONS(809), + [anon_sym_print] = ACTIONS(809), + [anon_sym_printf] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_AT] = ACTIONS(809), + [aux_sym_number_token1] = ACTIONS(809), + [aux_sym_number_token2] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), + [anon_sym_and] = ACTIONS(809), + [anon_sym_asort] = ACTIONS(809), + [anon_sym_asorti] = ACTIONS(809), + [anon_sym_bindtextdomain] = ACTIONS(809), + [anon_sym_compl] = ACTIONS(809), + [anon_sym_cos] = ACTIONS(809), + [anon_sym_dcgettext] = ACTIONS(809), + [anon_sym_dcngettext] = ACTIONS(809), + [anon_sym_exp] = ACTIONS(809), + [anon_sym_gensub] = ACTIONS(809), + [anon_sym_gsub] = ACTIONS(809), + [anon_sym_index] = ACTIONS(809), + [anon_sym_int] = ACTIONS(809), + [anon_sym_isarray] = ACTIONS(809), + [anon_sym_length] = ACTIONS(809), + [anon_sym_log] = ACTIONS(809), + [anon_sym_lshift] = ACTIONS(809), + [anon_sym_match] = ACTIONS(809), + [anon_sym_mktime] = ACTIONS(809), + [anon_sym_or] = ACTIONS(809), + [anon_sym_patsplit] = ACTIONS(809), + [anon_sym_rand] = ACTIONS(809), + [anon_sym_rshift] = ACTIONS(809), + [anon_sym_sin] = ACTIONS(809), + [anon_sym_split] = ACTIONS(809), + [anon_sym_sprintf] = ACTIONS(809), + [anon_sym_sqrt] = ACTIONS(809), + [anon_sym_srand] = ACTIONS(809), + [anon_sym_strftime] = ACTIONS(809), + [anon_sym_strtonum] = ACTIONS(809), + [anon_sym_sub] = ACTIONS(809), + [anon_sym_substr] = ACTIONS(809), + [anon_sym_systime] = ACTIONS(809), + [anon_sym_tolower] = ACTIONS(809), + [anon_sym_toupper] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(809), + [anon_sym_xor] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(809), + [sym_concatenating_space] = ACTIONS(829), + }, + [421] = { + [sym_identifier] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(893), + [anon_sym_CR_LF] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(893), + [sym_continue_statement] = ACTIONS(893), + [anon_sym_delete] = ACTIONS(893), + [anon_sym_exit] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_switch] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_getline] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(893), + [sym_nextfile_statement] = ACTIONS(893), + [anon_sym_print] = ACTIONS(893), + [anon_sym_printf] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_AT] = ACTIONS(893), + [aux_sym_number_token1] = ACTIONS(893), + [aux_sym_number_token2] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_asort] = ACTIONS(893), + [anon_sym_asorti] = ACTIONS(893), + [anon_sym_bindtextdomain] = ACTIONS(893), + [anon_sym_compl] = ACTIONS(893), + [anon_sym_cos] = ACTIONS(893), + [anon_sym_dcgettext] = ACTIONS(893), + [anon_sym_dcngettext] = ACTIONS(893), + [anon_sym_exp] = ACTIONS(893), + [anon_sym_gensub] = ACTIONS(893), + [anon_sym_gsub] = ACTIONS(893), + [anon_sym_index] = ACTIONS(893), + [anon_sym_int] = ACTIONS(893), + [anon_sym_isarray] = ACTIONS(893), + [anon_sym_length] = ACTIONS(893), + [anon_sym_log] = ACTIONS(893), + [anon_sym_lshift] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_mktime] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_patsplit] = ACTIONS(893), + [anon_sym_rand] = ACTIONS(893), + [anon_sym_rshift] = ACTIONS(893), + [anon_sym_sin] = ACTIONS(893), + [anon_sym_split] = ACTIONS(893), + [anon_sym_sprintf] = ACTIONS(893), + [anon_sym_sqrt] = ACTIONS(893), + [anon_sym_srand] = ACTIONS(893), + [anon_sym_strftime] = ACTIONS(893), + [anon_sym_strtonum] = ACTIONS(893), + [anon_sym_sub] = ACTIONS(893), + [anon_sym_substr] = ACTIONS(893), + [anon_sym_systime] = ACTIONS(893), + [anon_sym_tolower] = ACTIONS(893), + [anon_sym_toupper] = ACTIONS(893), + [anon_sym_typeof] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(893), + [sym_concatenating_space] = ACTIONS(895), + }, + [422] = { + [sym_identifier] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(923), + [anon_sym_CR_LF] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_in] = ACTIONS(923), + [sym_break_statement] = ACTIONS(923), + [sym_continue_statement] = ACTIONS(923), + [anon_sym_delete] = ACTIONS(923), + [anon_sym_exit] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_getline] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [sym_next_statement] = ACTIONS(923), + [sym_nextfile_statement] = ACTIONS(923), + [anon_sym_print] = ACTIONS(923), + [anon_sym_printf] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [aux_sym_number_token1] = ACTIONS(923), + [aux_sym_number_token2] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_asort] = ACTIONS(923), + [anon_sym_asorti] = ACTIONS(923), + [anon_sym_bindtextdomain] = ACTIONS(923), + [anon_sym_compl] = ACTIONS(923), + [anon_sym_cos] = ACTIONS(923), + [anon_sym_dcgettext] = ACTIONS(923), + [anon_sym_dcngettext] = ACTIONS(923), + [anon_sym_exp] = ACTIONS(923), + [anon_sym_gensub] = ACTIONS(923), + [anon_sym_gsub] = ACTIONS(923), + [anon_sym_index] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_isarray] = ACTIONS(923), + [anon_sym_length] = ACTIONS(923), + [anon_sym_log] = ACTIONS(923), + [anon_sym_lshift] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mktime] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_patsplit] = ACTIONS(923), + [anon_sym_rand] = ACTIONS(923), + [anon_sym_rshift] = ACTIONS(923), + [anon_sym_sin] = ACTIONS(923), + [anon_sym_split] = ACTIONS(923), + [anon_sym_sprintf] = ACTIONS(923), + [anon_sym_sqrt] = ACTIONS(923), + [anon_sym_srand] = ACTIONS(923), + [anon_sym_strftime] = ACTIONS(923), + [anon_sym_strtonum] = ACTIONS(923), + [anon_sym_sub] = ACTIONS(923), + [anon_sym_substr] = ACTIONS(923), + [anon_sym_systime] = ACTIONS(923), + [anon_sym_tolower] = ACTIONS(923), + [anon_sym_toupper] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [sym__if_else_separator] = ACTIONS(925), + }, + [423] = { + [sym_identifier] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_CR_LF] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(897), + [sym_continue_statement] = ACTIONS(897), + [anon_sym_delete] = ACTIONS(897), + [anon_sym_exit] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_switch] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_getline] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(897), + [sym_nextfile_statement] = ACTIONS(897), + [anon_sym_print] = ACTIONS(897), + [anon_sym_printf] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [aux_sym_number_token1] = ACTIONS(897), + [aux_sym_number_token2] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_asort] = ACTIONS(897), + [anon_sym_asorti] = ACTIONS(897), + [anon_sym_bindtextdomain] = ACTIONS(897), + [anon_sym_compl] = ACTIONS(897), + [anon_sym_cos] = ACTIONS(897), + [anon_sym_dcgettext] = ACTIONS(897), + [anon_sym_dcngettext] = ACTIONS(897), + [anon_sym_exp] = ACTIONS(897), + [anon_sym_gensub] = ACTIONS(897), + [anon_sym_gsub] = ACTIONS(897), + [anon_sym_index] = ACTIONS(897), + [anon_sym_int] = ACTIONS(897), + [anon_sym_isarray] = ACTIONS(897), + [anon_sym_length] = ACTIONS(897), + [anon_sym_log] = ACTIONS(897), + [anon_sym_lshift] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_mktime] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_patsplit] = ACTIONS(897), + [anon_sym_rand] = ACTIONS(897), + [anon_sym_rshift] = ACTIONS(897), + [anon_sym_sin] = ACTIONS(897), + [anon_sym_split] = ACTIONS(897), + [anon_sym_sprintf] = ACTIONS(897), + [anon_sym_sqrt] = ACTIONS(897), + [anon_sym_srand] = ACTIONS(897), + [anon_sym_strftime] = ACTIONS(897), + [anon_sym_strtonum] = ACTIONS(897), + [anon_sym_sub] = ACTIONS(897), + [anon_sym_substr] = ACTIONS(897), + [anon_sym_systime] = ACTIONS(897), + [anon_sym_tolower] = ACTIONS(897), + [anon_sym_toupper] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(897), + [sym_concatenating_space] = ACTIONS(899), + }, + [424] = { + [sym_identifier] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_CR_LF] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(901), + [sym_continue_statement] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_exit] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_getline] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(901), + [sym_nextfile_statement] = ACTIONS(901), + [anon_sym_print] = ACTIONS(901), + [anon_sym_printf] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PIPE_AMP] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(901), + [aux_sym_number_token1] = ACTIONS(901), + [aux_sym_number_token2] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_asort] = ACTIONS(901), + [anon_sym_asorti] = ACTIONS(901), + [anon_sym_bindtextdomain] = ACTIONS(901), + [anon_sym_compl] = ACTIONS(901), + [anon_sym_cos] = ACTIONS(901), + [anon_sym_dcgettext] = ACTIONS(901), + [anon_sym_dcngettext] = ACTIONS(901), + [anon_sym_exp] = ACTIONS(901), + [anon_sym_gensub] = ACTIONS(901), + [anon_sym_gsub] = ACTIONS(901), + [anon_sym_index] = ACTIONS(901), + [anon_sym_int] = ACTIONS(901), + [anon_sym_isarray] = ACTIONS(901), + [anon_sym_length] = ACTIONS(901), + [anon_sym_log] = ACTIONS(901), + [anon_sym_lshift] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mktime] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_patsplit] = ACTIONS(901), + [anon_sym_rand] = ACTIONS(901), + [anon_sym_rshift] = ACTIONS(901), + [anon_sym_sin] = ACTIONS(901), + [anon_sym_split] = ACTIONS(901), + [anon_sym_sprintf] = ACTIONS(901), + [anon_sym_sqrt] = ACTIONS(901), + [anon_sym_srand] = ACTIONS(901), + [anon_sym_strftime] = ACTIONS(901), + [anon_sym_strtonum] = ACTIONS(901), + [anon_sym_sub] = ACTIONS(901), + [anon_sym_substr] = ACTIONS(901), + [anon_sym_systime] = ACTIONS(901), + [anon_sym_tolower] = ACTIONS(901), + [anon_sym_toupper] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(901), + [sym_concatenating_space] = ACTIONS(903), + }, + [425] = { + [sym_identifier] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [anon_sym_CR_LF] = ACTIONS(851), + [anon_sym_if] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(851), + [anon_sym_for] = ACTIONS(851), + [anon_sym_in] = ACTIONS(851), + [sym_break_statement] = ACTIONS(851), + [sym_continue_statement] = ACTIONS(851), + [anon_sym_delete] = ACTIONS(851), + [anon_sym_exit] = ACTIONS(851), + [anon_sym_return] = ACTIONS(851), + [anon_sym_switch] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_getline] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [sym_next_statement] = ACTIONS(851), + [sym_nextfile_statement] = ACTIONS(851), + [anon_sym_print] = ACTIONS(851), + [anon_sym_printf] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_PIPE_AMP] = ACTIONS(851), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_STAR_STAR] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_BANG_TILDE] = ACTIONS(851), + [anon_sym_AMP_AMP] = ACTIONS(851), + [anon_sym_PIPE_PIPE] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_DOLLAR] = ACTIONS(851), + [anon_sym_AT] = ACTIONS(851), + [aux_sym_number_token1] = ACTIONS(851), + [aux_sym_number_token2] = ACTIONS(851), + [anon_sym_DQUOTE] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_asort] = ACTIONS(851), + [anon_sym_asorti] = ACTIONS(851), + [anon_sym_bindtextdomain] = ACTIONS(851), + [anon_sym_compl] = ACTIONS(851), + [anon_sym_cos] = ACTIONS(851), + [anon_sym_dcgettext] = ACTIONS(851), + [anon_sym_dcngettext] = ACTIONS(851), + [anon_sym_exp] = ACTIONS(851), + [anon_sym_gensub] = ACTIONS(851), + [anon_sym_gsub] = ACTIONS(851), + [anon_sym_index] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_isarray] = ACTIONS(851), + [anon_sym_length] = ACTIONS(851), + [anon_sym_log] = ACTIONS(851), + [anon_sym_lshift] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_mktime] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_patsplit] = ACTIONS(851), + [anon_sym_rand] = ACTIONS(851), + [anon_sym_rshift] = ACTIONS(851), + [anon_sym_sin] = ACTIONS(851), + [anon_sym_split] = ACTIONS(851), + [anon_sym_sprintf] = ACTIONS(851), + [anon_sym_sqrt] = ACTIONS(851), + [anon_sym_srand] = ACTIONS(851), + [anon_sym_strftime] = ACTIONS(851), + [anon_sym_strtonum] = ACTIONS(851), + [anon_sym_sub] = ACTIONS(851), + [anon_sym_substr] = ACTIONS(851), + [anon_sym_systime] = ACTIONS(851), + [anon_sym_tolower] = ACTIONS(851), + [anon_sym_toupper] = ACTIONS(851), + [anon_sym_typeof] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(851), + [sym_concatenating_space] = ACTIONS(853), + }, + [426] = { + [sym_identifier] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_CR_LF] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [sym_break_statement] = ACTIONS(907), + [sym_continue_statement] = ACTIONS(907), + [anon_sym_delete] = ACTIONS(907), + [anon_sym_exit] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_switch] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_getline] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(907), + [sym_nextfile_statement] = ACTIONS(907), + [anon_sym_print] = ACTIONS(907), + [anon_sym_printf] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [aux_sym_number_token1] = ACTIONS(907), + [aux_sym_number_token2] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_asort] = ACTIONS(907), + [anon_sym_asorti] = ACTIONS(907), + [anon_sym_bindtextdomain] = ACTIONS(907), + [anon_sym_compl] = ACTIONS(907), + [anon_sym_cos] = ACTIONS(907), + [anon_sym_dcgettext] = ACTIONS(907), + [anon_sym_dcngettext] = ACTIONS(907), + [anon_sym_exp] = ACTIONS(907), + [anon_sym_gensub] = ACTIONS(907), + [anon_sym_gsub] = ACTIONS(907), + [anon_sym_index] = ACTIONS(907), + [anon_sym_int] = ACTIONS(907), + [anon_sym_isarray] = ACTIONS(907), + [anon_sym_length] = ACTIONS(907), + [anon_sym_log] = ACTIONS(907), + [anon_sym_lshift] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mktime] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_patsplit] = ACTIONS(907), + [anon_sym_rand] = ACTIONS(907), + [anon_sym_rshift] = ACTIONS(907), + [anon_sym_sin] = ACTIONS(907), + [anon_sym_split] = ACTIONS(907), + [anon_sym_sprintf] = ACTIONS(907), + [anon_sym_sqrt] = ACTIONS(907), + [anon_sym_srand] = ACTIONS(907), + [anon_sym_strftime] = ACTIONS(907), + [anon_sym_strtonum] = ACTIONS(907), + [anon_sym_sub] = ACTIONS(907), + [anon_sym_substr] = ACTIONS(907), + [anon_sym_systime] = ACTIONS(907), + [anon_sym_tolower] = ACTIONS(907), + [anon_sym_toupper] = ACTIONS(907), + [anon_sym_typeof] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [sym_concatenating_space] = ACTIONS(909), + }, + [427] = { + [sym_identifier] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_CR_LF] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(871), + [sym_continue_statement] = ACTIONS(871), + [anon_sym_delete] = ACTIONS(871), + [anon_sym_exit] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_switch] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_getline] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(871), + [sym_nextfile_statement] = ACTIONS(871), + [anon_sym_print] = ACTIONS(871), + [anon_sym_printf] = ACTIONS(871), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_PIPE_AMP] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_AT] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(871), + [aux_sym_number_token2] = ACTIONS(871), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_asort] = ACTIONS(871), + [anon_sym_asorti] = ACTIONS(871), + [anon_sym_bindtextdomain] = ACTIONS(871), + [anon_sym_compl] = ACTIONS(871), + [anon_sym_cos] = ACTIONS(871), + [anon_sym_dcgettext] = ACTIONS(871), + [anon_sym_dcngettext] = ACTIONS(871), + [anon_sym_exp] = ACTIONS(871), + [anon_sym_gensub] = ACTIONS(871), + [anon_sym_gsub] = ACTIONS(871), + [anon_sym_index] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_isarray] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_log] = ACTIONS(871), + [anon_sym_lshift] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mktime] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_patsplit] = ACTIONS(871), + [anon_sym_rand] = ACTIONS(871), + [anon_sym_rshift] = ACTIONS(871), + [anon_sym_sin] = ACTIONS(871), + [anon_sym_split] = ACTIONS(871), + [anon_sym_sprintf] = ACTIONS(871), + [anon_sym_sqrt] = ACTIONS(871), + [anon_sym_srand] = ACTIONS(871), + [anon_sym_strftime] = ACTIONS(871), + [anon_sym_strtonum] = ACTIONS(871), + [anon_sym_sub] = ACTIONS(871), + [anon_sym_substr] = ACTIONS(871), + [anon_sym_systime] = ACTIONS(871), + [anon_sym_tolower] = ACTIONS(871), + [anon_sym_toupper] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_POUND] = ACTIONS(871), + [sym__if_else_separator] = ACTIONS(875), + }, + [428] = { + [sym_identifier] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [sym_break_statement] = ACTIONS(859), + [sym_continue_statement] = ACTIONS(859), + [anon_sym_delete] = ACTIONS(859), + [anon_sym_exit] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_switch] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_getline] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [sym_next_statement] = ACTIONS(859), + [sym_nextfile_statement] = ACTIONS(859), + [anon_sym_print] = ACTIONS(859), + [anon_sym_printf] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_BANG_TILDE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(859), + [aux_sym_number_token1] = ACTIONS(859), + [aux_sym_number_token2] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_asort] = ACTIONS(859), + [anon_sym_asorti] = ACTIONS(859), + [anon_sym_bindtextdomain] = ACTIONS(859), + [anon_sym_compl] = ACTIONS(859), + [anon_sym_cos] = ACTIONS(859), + [anon_sym_dcgettext] = ACTIONS(859), + [anon_sym_dcngettext] = ACTIONS(859), + [anon_sym_exp] = ACTIONS(859), + [anon_sym_gensub] = ACTIONS(859), + [anon_sym_gsub] = ACTIONS(859), + [anon_sym_index] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_isarray] = ACTIONS(859), + [anon_sym_length] = ACTIONS(859), + [anon_sym_log] = ACTIONS(859), + [anon_sym_lshift] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mktime] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_patsplit] = ACTIONS(859), + [anon_sym_rand] = ACTIONS(859), + [anon_sym_rshift] = ACTIONS(859), + [anon_sym_sin] = ACTIONS(859), + [anon_sym_split] = ACTIONS(859), + [anon_sym_sprintf] = ACTIONS(859), + [anon_sym_sqrt] = ACTIONS(859), + [anon_sym_srand] = ACTIONS(859), + [anon_sym_strftime] = ACTIONS(859), + [anon_sym_strtonum] = ACTIONS(859), + [anon_sym_sub] = ACTIONS(859), + [anon_sym_substr] = ACTIONS(859), + [anon_sym_systime] = ACTIONS(859), + [anon_sym_tolower] = ACTIONS(859), + [anon_sym_toupper] = ACTIONS(859), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [sym__if_else_separator] = ACTIONS(861), + }, + [429] = { + [sym_identifier] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_CR_LF] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(835), + [anon_sym_for] = ACTIONS(835), + [anon_sym_in] = ACTIONS(835), + [sym_break_statement] = ACTIONS(835), + [sym_continue_statement] = ACTIONS(835), + [anon_sym_delete] = ACTIONS(835), + [anon_sym_exit] = ACTIONS(835), + [anon_sym_return] = ACTIONS(835), + [anon_sym_switch] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_getline] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [sym_next_statement] = ACTIONS(835), + [sym_nextfile_statement] = ACTIONS(835), + [anon_sym_print] = ACTIONS(835), + [anon_sym_printf] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PIPE_AMP] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(835), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(835), + [anon_sym_BANG_TILDE] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(835), + [anon_sym_DASH_DASH] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(835), + [aux_sym_number_token1] = ACTIONS(835), + [aux_sym_number_token2] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(835), + [anon_sym_and] = ACTIONS(835), + [anon_sym_asort] = ACTIONS(835), + [anon_sym_asorti] = ACTIONS(835), + [anon_sym_bindtextdomain] = ACTIONS(835), + [anon_sym_compl] = ACTIONS(835), + [anon_sym_cos] = ACTIONS(835), + [anon_sym_dcgettext] = ACTIONS(835), + [anon_sym_dcngettext] = ACTIONS(835), + [anon_sym_exp] = ACTIONS(835), + [anon_sym_gensub] = ACTIONS(835), + [anon_sym_gsub] = ACTIONS(835), + [anon_sym_index] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_isarray] = ACTIONS(835), + [anon_sym_length] = ACTIONS(835), + [anon_sym_log] = ACTIONS(835), + [anon_sym_lshift] = ACTIONS(835), + [anon_sym_match] = ACTIONS(835), + [anon_sym_mktime] = ACTIONS(835), + [anon_sym_or] = ACTIONS(835), + [anon_sym_patsplit] = ACTIONS(835), + [anon_sym_rand] = ACTIONS(835), + [anon_sym_rshift] = ACTIONS(835), + [anon_sym_sin] = ACTIONS(835), + [anon_sym_split] = ACTIONS(835), + [anon_sym_sprintf] = ACTIONS(835), + [anon_sym_sqrt] = ACTIONS(835), + [anon_sym_srand] = ACTIONS(835), + [anon_sym_strftime] = ACTIONS(835), + [anon_sym_strtonum] = ACTIONS(835), + [anon_sym_sub] = ACTIONS(835), + [anon_sym_substr] = ACTIONS(835), + [anon_sym_systime] = ACTIONS(835), + [anon_sym_tolower] = ACTIONS(835), + [anon_sym_toupper] = ACTIONS(835), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(835), + [anon_sym_POUND] = ACTIONS(835), + [sym_concatenating_space] = ACTIONS(837), + }, + [430] = { + [sym_identifier] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(795), + [anon_sym_LF] = ACTIONS(795), + [anon_sym_CR_LF] = ACTIONS(795), + [anon_sym_if] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_while] = ACTIONS(795), + [anon_sym_do] = ACTIONS(795), + [anon_sym_for] = ACTIONS(795), + [anon_sym_in] = ACTIONS(795), + [sym_break_statement] = ACTIONS(795), + [sym_continue_statement] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_exit] = ACTIONS(795), + [anon_sym_return] = ACTIONS(795), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_getline] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [sym_next_statement] = ACTIONS(795), + [sym_nextfile_statement] = ACTIONS(795), + [anon_sym_print] = ACTIONS(795), + [anon_sym_printf] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_GT_GT] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_STAR_STAR] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_PERCENT] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(795), + [anon_sym_BANG_EQ] = ACTIONS(795), + [anon_sym_TILDE] = ACTIONS(795), + [anon_sym_BANG_TILDE] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(795), + [anon_sym_PIPE_PIPE] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_DOLLAR] = ACTIONS(795), + [sym_regex_flags] = ACTIONS(1163), + [anon_sym_AT] = ACTIONS(795), + [aux_sym_number_token1] = ACTIONS(795), + [aux_sym_number_token2] = ACTIONS(795), + [anon_sym_DQUOTE] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_asort] = ACTIONS(795), + [anon_sym_asorti] = ACTIONS(795), + [anon_sym_bindtextdomain] = ACTIONS(795), + [anon_sym_compl] = ACTIONS(795), + [anon_sym_cos] = ACTIONS(795), + [anon_sym_dcgettext] = ACTIONS(795), + [anon_sym_dcngettext] = ACTIONS(795), + [anon_sym_exp] = ACTIONS(795), + [anon_sym_gensub] = ACTIONS(795), + [anon_sym_gsub] = ACTIONS(795), + [anon_sym_index] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_isarray] = ACTIONS(795), + [anon_sym_length] = ACTIONS(795), + [anon_sym_log] = ACTIONS(795), + [anon_sym_lshift] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_mktime] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_patsplit] = ACTIONS(795), + [anon_sym_rand] = ACTIONS(795), + [anon_sym_rshift] = ACTIONS(795), + [anon_sym_sin] = ACTIONS(795), + [anon_sym_split] = ACTIONS(795), + [anon_sym_sprintf] = ACTIONS(795), + [anon_sym_sqrt] = ACTIONS(795), + [anon_sym_srand] = ACTIONS(795), + [anon_sym_strftime] = ACTIONS(795), + [anon_sym_strtonum] = ACTIONS(795), + [anon_sym_sub] = ACTIONS(795), + [anon_sym_substr] = ACTIONS(795), + [anon_sym_systime] = ACTIONS(795), + [anon_sym_tolower] = ACTIONS(795), + [anon_sym_toupper] = ACTIONS(795), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(795), + }, + [431] = { + [sym_identifier] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LF] = ACTIONS(843), + [anon_sym_CR_LF] = ACTIONS(843), + [anon_sym_if] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(843), + [anon_sym_for] = ACTIONS(843), + [anon_sym_in] = ACTIONS(843), + [sym_break_statement] = ACTIONS(843), + [sym_continue_statement] = ACTIONS(843), + [anon_sym_delete] = ACTIONS(843), + [anon_sym_exit] = ACTIONS(843), + [anon_sym_return] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_getline] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(843), + [sym_next_statement] = ACTIONS(843), + [sym_nextfile_statement] = ACTIONS(843), + [anon_sym_print] = ACTIONS(843), + [anon_sym_printf] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_GT_GT] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_PIPE_AMP] = ACTIONS(843), + [anon_sym_QMARK] = ACTIONS(843), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym_STAR_STAR] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_LT_EQ] = ACTIONS(843), + [anon_sym_GT_EQ] = ACTIONS(843), + [anon_sym_EQ_EQ] = ACTIONS(843), + [anon_sym_BANG_EQ] = ACTIONS(843), + [anon_sym_TILDE] = ACTIONS(843), + [anon_sym_BANG_TILDE] = ACTIONS(843), + [anon_sym_AMP_AMP] = ACTIONS(843), + [anon_sym_PIPE_PIPE] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_PLUS_PLUS] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_AT] = ACTIONS(843), + [aux_sym_number_token1] = ACTIONS(843), + [aux_sym_number_token2] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_and] = ACTIONS(843), + [anon_sym_asort] = ACTIONS(843), + [anon_sym_asorti] = ACTIONS(843), + [anon_sym_bindtextdomain] = ACTIONS(843), + [anon_sym_compl] = ACTIONS(843), + [anon_sym_cos] = ACTIONS(843), + [anon_sym_dcgettext] = ACTIONS(843), + [anon_sym_dcngettext] = ACTIONS(843), + [anon_sym_exp] = ACTIONS(843), + [anon_sym_gensub] = ACTIONS(843), + [anon_sym_gsub] = ACTIONS(843), + [anon_sym_index] = ACTIONS(843), + [anon_sym_int] = ACTIONS(843), + [anon_sym_isarray] = ACTIONS(843), + [anon_sym_length] = ACTIONS(843), + [anon_sym_log] = ACTIONS(843), + [anon_sym_lshift] = ACTIONS(843), + [anon_sym_match] = ACTIONS(843), + [anon_sym_mktime] = ACTIONS(843), + [anon_sym_or] = ACTIONS(843), + [anon_sym_patsplit] = ACTIONS(843), + [anon_sym_rand] = ACTIONS(843), + [anon_sym_rshift] = ACTIONS(843), + [anon_sym_sin] = ACTIONS(843), + [anon_sym_split] = ACTIONS(843), + [anon_sym_sprintf] = ACTIONS(843), + [anon_sym_sqrt] = ACTIONS(843), + [anon_sym_srand] = ACTIONS(843), + [anon_sym_strftime] = ACTIONS(843), + [anon_sym_strtonum] = ACTIONS(843), + [anon_sym_sub] = ACTIONS(843), + [anon_sym_substr] = ACTIONS(843), + [anon_sym_systime] = ACTIONS(843), + [anon_sym_tolower] = ACTIONS(843), + [anon_sym_toupper] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(843), + [anon_sym_xor] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(843), + [sym_concatenating_space] = ACTIONS(845), + }, + [432] = { + [sym_identifier] = ACTIONS(839), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(839), + [anon_sym_LF] = ACTIONS(839), + [anon_sym_CR_LF] = ACTIONS(839), + [anon_sym_if] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_while] = ACTIONS(839), + [anon_sym_do] = ACTIONS(839), + [anon_sym_for] = ACTIONS(839), + [anon_sym_in] = ACTIONS(839), + [sym_break_statement] = ACTIONS(839), + [sym_continue_statement] = ACTIONS(839), + [anon_sym_delete] = ACTIONS(839), + [anon_sym_exit] = ACTIONS(839), + [anon_sym_return] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_getline] = ACTIONS(839), + [anon_sym_LT] = ACTIONS(839), + [sym_next_statement] = ACTIONS(839), + [sym_nextfile_statement] = ACTIONS(839), + [anon_sym_print] = ACTIONS(839), + [anon_sym_printf] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [anon_sym_GT_GT] = ACTIONS(839), + [anon_sym_PIPE] = ACTIONS(839), + [anon_sym_PIPE_AMP] = ACTIONS(839), + [anon_sym_QMARK] = ACTIONS(839), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(839), + [anon_sym_GT_EQ] = ACTIONS(839), + [anon_sym_EQ_EQ] = ACTIONS(839), + [anon_sym_BANG_EQ] = ACTIONS(839), + [anon_sym_TILDE] = ACTIONS(839), + [anon_sym_BANG_TILDE] = ACTIONS(839), + [anon_sym_AMP_AMP] = ACTIONS(839), + [anon_sym_PIPE_PIPE] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(839), + [anon_sym_PLUS_PLUS] = ACTIONS(839), + [anon_sym_DASH_DASH] = ACTIONS(839), + [anon_sym_DOLLAR] = ACTIONS(839), + [anon_sym_AT] = ACTIONS(839), + [aux_sym_number_token1] = ACTIONS(839), + [aux_sym_number_token2] = ACTIONS(839), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_and] = ACTIONS(839), + [anon_sym_asort] = ACTIONS(839), + [anon_sym_asorti] = ACTIONS(839), + [anon_sym_bindtextdomain] = ACTIONS(839), + [anon_sym_compl] = ACTIONS(839), + [anon_sym_cos] = ACTIONS(839), + [anon_sym_dcgettext] = ACTIONS(839), + [anon_sym_dcngettext] = ACTIONS(839), + [anon_sym_exp] = ACTIONS(839), + [anon_sym_gensub] = ACTIONS(839), + [anon_sym_gsub] = ACTIONS(839), + [anon_sym_index] = ACTIONS(839), + [anon_sym_int] = ACTIONS(839), + [anon_sym_isarray] = ACTIONS(839), + [anon_sym_length] = ACTIONS(839), + [anon_sym_log] = ACTIONS(839), + [anon_sym_lshift] = ACTIONS(839), + [anon_sym_match] = ACTIONS(839), + [anon_sym_mktime] = ACTIONS(839), + [anon_sym_or] = ACTIONS(839), + [anon_sym_patsplit] = ACTIONS(839), + [anon_sym_rand] = ACTIONS(839), + [anon_sym_rshift] = ACTIONS(839), + [anon_sym_sin] = ACTIONS(839), + [anon_sym_split] = ACTIONS(839), + [anon_sym_sprintf] = ACTIONS(839), + [anon_sym_sqrt] = ACTIONS(839), + [anon_sym_srand] = ACTIONS(839), + [anon_sym_strftime] = ACTIONS(839), + [anon_sym_strtonum] = ACTIONS(839), + [anon_sym_sub] = ACTIONS(839), + [anon_sym_substr] = ACTIONS(839), + [anon_sym_systime] = ACTIONS(839), + [anon_sym_tolower] = ACTIONS(839), + [anon_sym_toupper] = ACTIONS(839), + [anon_sym_typeof] = ACTIONS(839), + [anon_sym_xor] = ACTIONS(839), + [anon_sym_POUND] = ACTIONS(839), + [sym_concatenating_space] = ACTIONS(841), + }, + [433] = { + [sym_identifier] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_CR_LF] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [sym_break_statement] = ACTIONS(935), + [sym_continue_statement] = ACTIONS(935), + [anon_sym_delete] = ACTIONS(935), + [anon_sym_exit] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_switch] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_getline] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [sym_next_statement] = ACTIONS(935), + [sym_nextfile_statement] = ACTIONS(935), + [anon_sym_print] = ACTIONS(935), + [anon_sym_printf] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PIPE_AMP] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [aux_sym_number_token1] = ACTIONS(935), + [aux_sym_number_token2] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_asort] = ACTIONS(935), + [anon_sym_asorti] = ACTIONS(935), + [anon_sym_bindtextdomain] = ACTIONS(935), + [anon_sym_compl] = ACTIONS(935), + [anon_sym_cos] = ACTIONS(935), + [anon_sym_dcgettext] = ACTIONS(935), + [anon_sym_dcngettext] = ACTIONS(935), + [anon_sym_exp] = ACTIONS(935), + [anon_sym_gensub] = ACTIONS(935), + [anon_sym_gsub] = ACTIONS(935), + [anon_sym_index] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_isarray] = ACTIONS(935), + [anon_sym_length] = ACTIONS(935), + [anon_sym_log] = ACTIONS(935), + [anon_sym_lshift] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mktime] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_patsplit] = ACTIONS(935), + [anon_sym_rand] = ACTIONS(935), + [anon_sym_rshift] = ACTIONS(935), + [anon_sym_sin] = ACTIONS(935), + [anon_sym_split] = ACTIONS(935), + [anon_sym_sprintf] = ACTIONS(935), + [anon_sym_sqrt] = ACTIONS(935), + [anon_sym_srand] = ACTIONS(935), + [anon_sym_strftime] = ACTIONS(935), + [anon_sym_strtonum] = ACTIONS(935), + [anon_sym_sub] = ACTIONS(935), + [anon_sym_substr] = ACTIONS(935), + [anon_sym_systime] = ACTIONS(935), + [anon_sym_tolower] = ACTIONS(935), + [anon_sym_toupper] = ACTIONS(935), + [anon_sym_typeof] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [sym_concatenating_space] = ACTIONS(937), + }, + [434] = { + [sym_identifier] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_CR_LF] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_do] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [sym_break_statement] = ACTIONS(863), + [sym_continue_statement] = ACTIONS(863), + [anon_sym_delete] = ACTIONS(863), + [anon_sym_exit] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_getline] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [sym_next_statement] = ACTIONS(863), + [sym_nextfile_statement] = ACTIONS(863), + [anon_sym_print] = ACTIONS(863), + [anon_sym_printf] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_TILDE] = ACTIONS(863), + [anon_sym_BANG_TILDE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS_PLUS] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_AT] = ACTIONS(863), + [aux_sym_number_token1] = ACTIONS(863), + [aux_sym_number_token2] = ACTIONS(863), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_asort] = ACTIONS(863), + [anon_sym_asorti] = ACTIONS(863), + [anon_sym_bindtextdomain] = ACTIONS(863), + [anon_sym_compl] = ACTIONS(863), + [anon_sym_cos] = ACTIONS(863), + [anon_sym_dcgettext] = ACTIONS(863), + [anon_sym_dcngettext] = ACTIONS(863), + [anon_sym_exp] = ACTIONS(863), + [anon_sym_gensub] = ACTIONS(863), + [anon_sym_gsub] = ACTIONS(863), + [anon_sym_index] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_isarray] = ACTIONS(863), + [anon_sym_length] = ACTIONS(863), + [anon_sym_log] = ACTIONS(863), + [anon_sym_lshift] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mktime] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_patsplit] = ACTIONS(863), + [anon_sym_rand] = ACTIONS(863), + [anon_sym_rshift] = ACTIONS(863), + [anon_sym_sin] = ACTIONS(863), + [anon_sym_split] = ACTIONS(863), + [anon_sym_sprintf] = ACTIONS(863), + [anon_sym_sqrt] = ACTIONS(863), + [anon_sym_srand] = ACTIONS(863), + [anon_sym_strftime] = ACTIONS(863), + [anon_sym_strtonum] = ACTIONS(863), + [anon_sym_sub] = ACTIONS(863), + [anon_sym_substr] = ACTIONS(863), + [anon_sym_systime] = ACTIONS(863), + [anon_sym_tolower] = ACTIONS(863), + [anon_sym_toupper] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(863), + [sym_concatenating_space] = ACTIONS(865), + }, + [435] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + }, + [436] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [437] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [438] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [439] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [440] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [441] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_STAR_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [442] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym__if_else_separator] = ACTIONS(767), + }, + [443] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [sym_concatenating_space] = ACTIONS(767), + }, + [444] = { + [sym_identifier] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(939), + [anon_sym_CR_LF] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [sym_break_statement] = ACTIONS(939), + [sym_continue_statement] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_exit] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_getline] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [sym_next_statement] = ACTIONS(939), + [sym_nextfile_statement] = ACTIONS(939), + [anon_sym_print] = ACTIONS(939), + [anon_sym_printf] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [aux_sym_number_token1] = ACTIONS(939), + [aux_sym_number_token2] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_asort] = ACTIONS(939), + [anon_sym_asorti] = ACTIONS(939), + [anon_sym_bindtextdomain] = ACTIONS(939), + [anon_sym_compl] = ACTIONS(939), + [anon_sym_cos] = ACTIONS(939), + [anon_sym_dcgettext] = ACTIONS(939), + [anon_sym_dcngettext] = ACTIONS(939), + [anon_sym_exp] = ACTIONS(939), + [anon_sym_gensub] = ACTIONS(939), + [anon_sym_gsub] = ACTIONS(939), + [anon_sym_index] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_isarray] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_log] = ACTIONS(939), + [anon_sym_lshift] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mktime] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_patsplit] = ACTIONS(939), + [anon_sym_rand] = ACTIONS(939), + [anon_sym_rshift] = ACTIONS(939), + [anon_sym_sin] = ACTIONS(939), + [anon_sym_split] = ACTIONS(939), + [anon_sym_sprintf] = ACTIONS(939), + [anon_sym_sqrt] = ACTIONS(939), + [anon_sym_srand] = ACTIONS(939), + [anon_sym_strftime] = ACTIONS(939), + [anon_sym_strtonum] = ACTIONS(939), + [anon_sym_sub] = ACTIONS(939), + [anon_sym_substr] = ACTIONS(939), + [anon_sym_systime] = ACTIONS(939), + [anon_sym_tolower] = ACTIONS(939), + [anon_sym_toupper] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(939), + [sym_concatenating_space] = ACTIONS(941), + }, + [445] = { + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_CR_LF] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [sym_break_statement] = ACTIONS(911), + [sym_continue_statement] = ACTIONS(911), + [anon_sym_delete] = ACTIONS(911), + [anon_sym_exit] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_getline] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [sym_next_statement] = ACTIONS(911), + [sym_nextfile_statement] = ACTIONS(911), + [anon_sym_print] = ACTIONS(911), + [anon_sym_printf] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(911), + [anon_sym_PIPE_PIPE] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_asort] = ACTIONS(911), + [anon_sym_asorti] = ACTIONS(911), + [anon_sym_bindtextdomain] = ACTIONS(911), + [anon_sym_compl] = ACTIONS(911), + [anon_sym_cos] = ACTIONS(911), + [anon_sym_dcgettext] = ACTIONS(911), + [anon_sym_dcngettext] = ACTIONS(911), + [anon_sym_exp] = ACTIONS(911), + [anon_sym_gensub] = ACTIONS(911), + [anon_sym_gsub] = ACTIONS(911), + [anon_sym_index] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_isarray] = ACTIONS(911), + [anon_sym_length] = ACTIONS(911), + [anon_sym_log] = ACTIONS(911), + [anon_sym_lshift] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mktime] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_patsplit] = ACTIONS(911), + [anon_sym_rand] = ACTIONS(911), + [anon_sym_rshift] = ACTIONS(911), + [anon_sym_sin] = ACTIONS(911), + [anon_sym_split] = ACTIONS(911), + [anon_sym_sprintf] = ACTIONS(911), + [anon_sym_sqrt] = ACTIONS(911), + [anon_sym_srand] = ACTIONS(911), + [anon_sym_strftime] = ACTIONS(911), + [anon_sym_strtonum] = ACTIONS(911), + [anon_sym_sub] = ACTIONS(911), + [anon_sym_substr] = ACTIONS(911), + [anon_sym_systime] = ACTIONS(911), + [anon_sym_tolower] = ACTIONS(911), + [anon_sym_toupper] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(911), + [sym__if_else_separator] = ACTIONS(913), + }, + [446] = { + [sym__getline_exp] = STATE(1743), + [sym_getline_input] = STATE(1743), + [sym_getline_file] = STATE(1743), + [sym__print_args] = STATE(662), + [sym__exp] = STATE(1743), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1743), + [sym_assignment_exp] = STATE(1743), + [sym_piped_io_exp] = STATE(1743), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_exp_list] = STATE(662), + [sym_regex] = STATE(1743), + [sym_regex_constant] = STATE(1743), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1743), + [aux_sym_exp_list_repeat1] = STATE(794), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(679), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_CR_LF] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(679), + [anon_sym_case] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_LPAREN2] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(679), + [sym__if_else_separator] = ACTIONS(695), + }, + [447] = { + [sym_identifier] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [sym_break_statement] = ACTIONS(859), + [sym_continue_statement] = ACTIONS(859), + [anon_sym_delete] = ACTIONS(859), + [anon_sym_exit] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_switch] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_getline] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [sym_next_statement] = ACTIONS(859), + [sym_nextfile_statement] = ACTIONS(859), + [anon_sym_print] = ACTIONS(859), + [anon_sym_printf] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_BANG_TILDE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(859), + [aux_sym_number_token1] = ACTIONS(859), + [aux_sym_number_token2] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_asort] = ACTIONS(859), + [anon_sym_asorti] = ACTIONS(859), + [anon_sym_bindtextdomain] = ACTIONS(859), + [anon_sym_compl] = ACTIONS(859), + [anon_sym_cos] = ACTIONS(859), + [anon_sym_dcgettext] = ACTIONS(859), + [anon_sym_dcngettext] = ACTIONS(859), + [anon_sym_exp] = ACTIONS(859), + [anon_sym_gensub] = ACTIONS(859), + [anon_sym_gsub] = ACTIONS(859), + [anon_sym_index] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_isarray] = ACTIONS(859), + [anon_sym_length] = ACTIONS(859), + [anon_sym_log] = ACTIONS(859), + [anon_sym_lshift] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mktime] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_patsplit] = ACTIONS(859), + [anon_sym_rand] = ACTIONS(859), + [anon_sym_rshift] = ACTIONS(859), + [anon_sym_sin] = ACTIONS(859), + [anon_sym_split] = ACTIONS(859), + [anon_sym_sprintf] = ACTIONS(859), + [anon_sym_sqrt] = ACTIONS(859), + [anon_sym_srand] = ACTIONS(859), + [anon_sym_strftime] = ACTIONS(859), + [anon_sym_strtonum] = ACTIONS(859), + [anon_sym_sub] = ACTIONS(859), + [anon_sym_substr] = ACTIONS(859), + [anon_sym_systime] = ACTIONS(859), + [anon_sym_tolower] = ACTIONS(859), + [anon_sym_toupper] = ACTIONS(859), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [sym_concatenating_space] = ACTIONS(861), + }, + [448] = { + [sym_identifier] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_CR_LF] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in] = ACTIONS(931), + [sym_break_statement] = ACTIONS(931), + [sym_continue_statement] = ACTIONS(931), + [anon_sym_delete] = ACTIONS(931), + [anon_sym_exit] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_getline] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [sym_next_statement] = ACTIONS(931), + [sym_nextfile_statement] = ACTIONS(931), + [anon_sym_print] = ACTIONS(931), + [anon_sym_printf] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [aux_sym_number_token1] = ACTIONS(931), + [aux_sym_number_token2] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_asort] = ACTIONS(931), + [anon_sym_asorti] = ACTIONS(931), + [anon_sym_bindtextdomain] = ACTIONS(931), + [anon_sym_compl] = ACTIONS(931), + [anon_sym_cos] = ACTIONS(931), + [anon_sym_dcgettext] = ACTIONS(931), + [anon_sym_dcngettext] = ACTIONS(931), + [anon_sym_exp] = ACTIONS(931), + [anon_sym_gensub] = ACTIONS(931), + [anon_sym_gsub] = ACTIONS(931), + [anon_sym_index] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_isarray] = ACTIONS(931), + [anon_sym_length] = ACTIONS(931), + [anon_sym_log] = ACTIONS(931), + [anon_sym_lshift] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mktime] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_patsplit] = ACTIONS(931), + [anon_sym_rand] = ACTIONS(931), + [anon_sym_rshift] = ACTIONS(931), + [anon_sym_sin] = ACTIONS(931), + [anon_sym_split] = ACTIONS(931), + [anon_sym_sprintf] = ACTIONS(931), + [anon_sym_sqrt] = ACTIONS(931), + [anon_sym_srand] = ACTIONS(931), + [anon_sym_strftime] = ACTIONS(931), + [anon_sym_strtonum] = ACTIONS(931), + [anon_sym_sub] = ACTIONS(931), + [anon_sym_substr] = ACTIONS(931), + [anon_sym_systime] = ACTIONS(931), + [anon_sym_tolower] = ACTIONS(931), + [anon_sym_toupper] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [sym_concatenating_space] = ACTIONS(933), + }, + [449] = { + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_CR_LF] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_in] = ACTIONS(919), + [sym_break_statement] = ACTIONS(919), + [sym_continue_statement] = ACTIONS(919), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_exit] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [sym_next_statement] = ACTIONS(919), + [sym_nextfile_statement] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_printf] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [sym_concatenating_space] = ACTIONS(921), + }, + [450] = { + [sym_identifier] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_CR_LF] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [sym_break_statement] = ACTIONS(935), + [sym_continue_statement] = ACTIONS(935), + [anon_sym_delete] = ACTIONS(935), + [anon_sym_exit] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_switch] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_getline] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [sym_next_statement] = ACTIONS(935), + [sym_nextfile_statement] = ACTIONS(935), + [anon_sym_print] = ACTIONS(935), + [anon_sym_printf] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PIPE_AMP] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [aux_sym_number_token1] = ACTIONS(935), + [aux_sym_number_token2] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_asort] = ACTIONS(935), + [anon_sym_asorti] = ACTIONS(935), + [anon_sym_bindtextdomain] = ACTIONS(935), + [anon_sym_compl] = ACTIONS(935), + [anon_sym_cos] = ACTIONS(935), + [anon_sym_dcgettext] = ACTIONS(935), + [anon_sym_dcngettext] = ACTIONS(935), + [anon_sym_exp] = ACTIONS(935), + [anon_sym_gensub] = ACTIONS(935), + [anon_sym_gsub] = ACTIONS(935), + [anon_sym_index] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_isarray] = ACTIONS(935), + [anon_sym_length] = ACTIONS(935), + [anon_sym_log] = ACTIONS(935), + [anon_sym_lshift] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mktime] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_patsplit] = ACTIONS(935), + [anon_sym_rand] = ACTIONS(935), + [anon_sym_rshift] = ACTIONS(935), + [anon_sym_sin] = ACTIONS(935), + [anon_sym_split] = ACTIONS(935), + [anon_sym_sprintf] = ACTIONS(935), + [anon_sym_sqrt] = ACTIONS(935), + [anon_sym_srand] = ACTIONS(935), + [anon_sym_strftime] = ACTIONS(935), + [anon_sym_strtonum] = ACTIONS(935), + [anon_sym_sub] = ACTIONS(935), + [anon_sym_substr] = ACTIONS(935), + [anon_sym_systime] = ACTIONS(935), + [anon_sym_tolower] = ACTIONS(935), + [anon_sym_toupper] = ACTIONS(935), + [anon_sym_typeof] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [sym__if_else_separator] = ACTIONS(937), + }, + [451] = { + [sym_identifier] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [sym_break_statement] = ACTIONS(855), + [sym_continue_statement] = ACTIONS(855), + [anon_sym_delete] = ACTIONS(855), + [anon_sym_exit] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_getline] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(855), + [sym_nextfile_statement] = ACTIONS(855), + [anon_sym_print] = ACTIONS(855), + [anon_sym_printf] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_PIPE_AMP] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(855), + [aux_sym_number_token1] = ACTIONS(855), + [aux_sym_number_token2] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_asort] = ACTIONS(855), + [anon_sym_asorti] = ACTIONS(855), + [anon_sym_bindtextdomain] = ACTIONS(855), + [anon_sym_compl] = ACTIONS(855), + [anon_sym_cos] = ACTIONS(855), + [anon_sym_dcgettext] = ACTIONS(855), + [anon_sym_dcngettext] = ACTIONS(855), + [anon_sym_exp] = ACTIONS(855), + [anon_sym_gensub] = ACTIONS(855), + [anon_sym_gsub] = ACTIONS(855), + [anon_sym_index] = ACTIONS(855), + [anon_sym_int] = ACTIONS(855), + [anon_sym_isarray] = ACTIONS(855), + [anon_sym_length] = ACTIONS(855), + [anon_sym_log] = ACTIONS(855), + [anon_sym_lshift] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_mktime] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_patsplit] = ACTIONS(855), + [anon_sym_rand] = ACTIONS(855), + [anon_sym_rshift] = ACTIONS(855), + [anon_sym_sin] = ACTIONS(855), + [anon_sym_split] = ACTIONS(855), + [anon_sym_sprintf] = ACTIONS(855), + [anon_sym_sqrt] = ACTIONS(855), + [anon_sym_srand] = ACTIONS(855), + [anon_sym_strftime] = ACTIONS(855), + [anon_sym_strtonum] = ACTIONS(855), + [anon_sym_sub] = ACTIONS(855), + [anon_sym_substr] = ACTIONS(855), + [anon_sym_systime] = ACTIONS(855), + [anon_sym_tolower] = ACTIONS(855), + [anon_sym_toupper] = ACTIONS(855), + [anon_sym_typeof] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [sym_concatenating_space] = ACTIONS(857), + }, + [452] = { + [sym_identifier] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(923), + [anon_sym_CR_LF] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_in] = ACTIONS(923), + [sym_break_statement] = ACTIONS(923), + [sym_continue_statement] = ACTIONS(923), + [anon_sym_delete] = ACTIONS(923), + [anon_sym_exit] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_getline] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [sym_next_statement] = ACTIONS(923), + [sym_nextfile_statement] = ACTIONS(923), + [anon_sym_print] = ACTIONS(923), + [anon_sym_printf] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [aux_sym_number_token1] = ACTIONS(923), + [aux_sym_number_token2] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_asort] = ACTIONS(923), + [anon_sym_asorti] = ACTIONS(923), + [anon_sym_bindtextdomain] = ACTIONS(923), + [anon_sym_compl] = ACTIONS(923), + [anon_sym_cos] = ACTIONS(923), + [anon_sym_dcgettext] = ACTIONS(923), + [anon_sym_dcngettext] = ACTIONS(923), + [anon_sym_exp] = ACTIONS(923), + [anon_sym_gensub] = ACTIONS(923), + [anon_sym_gsub] = ACTIONS(923), + [anon_sym_index] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_isarray] = ACTIONS(923), + [anon_sym_length] = ACTIONS(923), + [anon_sym_log] = ACTIONS(923), + [anon_sym_lshift] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mktime] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_patsplit] = ACTIONS(923), + [anon_sym_rand] = ACTIONS(923), + [anon_sym_rshift] = ACTIONS(923), + [anon_sym_sin] = ACTIONS(923), + [anon_sym_split] = ACTIONS(923), + [anon_sym_sprintf] = ACTIONS(923), + [anon_sym_sqrt] = ACTIONS(923), + [anon_sym_srand] = ACTIONS(923), + [anon_sym_strftime] = ACTIONS(923), + [anon_sym_strtonum] = ACTIONS(923), + [anon_sym_sub] = ACTIONS(923), + [anon_sym_substr] = ACTIONS(923), + [anon_sym_systime] = ACTIONS(923), + [anon_sym_tolower] = ACTIONS(923), + [anon_sym_toupper] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [sym_concatenating_space] = ACTIONS(925), + }, + [453] = { + [sym_identifier] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_CR_LF] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(871), + [sym_continue_statement] = ACTIONS(871), + [anon_sym_delete] = ACTIONS(871), + [anon_sym_exit] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_switch] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_getline] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(871), + [sym_nextfile_statement] = ACTIONS(871), + [anon_sym_print] = ACTIONS(871), + [anon_sym_printf] = ACTIONS(871), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_PIPE_AMP] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_AT] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(871), + [aux_sym_number_token2] = ACTIONS(871), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_asort] = ACTIONS(871), + [anon_sym_asorti] = ACTIONS(871), + [anon_sym_bindtextdomain] = ACTIONS(871), + [anon_sym_compl] = ACTIONS(871), + [anon_sym_cos] = ACTIONS(871), + [anon_sym_dcgettext] = ACTIONS(871), + [anon_sym_dcngettext] = ACTIONS(871), + [anon_sym_exp] = ACTIONS(871), + [anon_sym_gensub] = ACTIONS(871), + [anon_sym_gsub] = ACTIONS(871), + [anon_sym_index] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_isarray] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_log] = ACTIONS(871), + [anon_sym_lshift] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mktime] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_patsplit] = ACTIONS(871), + [anon_sym_rand] = ACTIONS(871), + [anon_sym_rshift] = ACTIONS(871), + [anon_sym_sin] = ACTIONS(871), + [anon_sym_split] = ACTIONS(871), + [anon_sym_sprintf] = ACTIONS(871), + [anon_sym_sqrt] = ACTIONS(871), + [anon_sym_srand] = ACTIONS(871), + [anon_sym_strftime] = ACTIONS(871), + [anon_sym_strtonum] = ACTIONS(871), + [anon_sym_sub] = ACTIONS(871), + [anon_sym_substr] = ACTIONS(871), + [anon_sym_systime] = ACTIONS(871), + [anon_sym_tolower] = ACTIONS(871), + [anon_sym_toupper] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_POUND] = ACTIONS(871), + [sym_concatenating_space] = ACTIONS(875), + }, + [454] = { + [sym_identifier] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_CR_LF] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(835), + [anon_sym_for] = ACTIONS(835), + [anon_sym_in] = ACTIONS(835), + [sym_break_statement] = ACTIONS(835), + [sym_continue_statement] = ACTIONS(835), + [anon_sym_delete] = ACTIONS(835), + [anon_sym_exit] = ACTIONS(835), + [anon_sym_return] = ACTIONS(835), + [anon_sym_switch] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_getline] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [sym_next_statement] = ACTIONS(835), + [sym_nextfile_statement] = ACTIONS(835), + [anon_sym_print] = ACTIONS(835), + [anon_sym_printf] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PIPE_AMP] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(835), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(835), + [anon_sym_BANG_TILDE] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(835), + [anon_sym_DASH_DASH] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(835), + [aux_sym_number_token1] = ACTIONS(835), + [aux_sym_number_token2] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(835), + [anon_sym_and] = ACTIONS(835), + [anon_sym_asort] = ACTIONS(835), + [anon_sym_asorti] = ACTIONS(835), + [anon_sym_bindtextdomain] = ACTIONS(835), + [anon_sym_compl] = ACTIONS(835), + [anon_sym_cos] = ACTIONS(835), + [anon_sym_dcgettext] = ACTIONS(835), + [anon_sym_dcngettext] = ACTIONS(835), + [anon_sym_exp] = ACTIONS(835), + [anon_sym_gensub] = ACTIONS(835), + [anon_sym_gsub] = ACTIONS(835), + [anon_sym_index] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_isarray] = ACTIONS(835), + [anon_sym_length] = ACTIONS(835), + [anon_sym_log] = ACTIONS(835), + [anon_sym_lshift] = ACTIONS(835), + [anon_sym_match] = ACTIONS(835), + [anon_sym_mktime] = ACTIONS(835), + [anon_sym_or] = ACTIONS(835), + [anon_sym_patsplit] = ACTIONS(835), + [anon_sym_rand] = ACTIONS(835), + [anon_sym_rshift] = ACTIONS(835), + [anon_sym_sin] = ACTIONS(835), + [anon_sym_split] = ACTIONS(835), + [anon_sym_sprintf] = ACTIONS(835), + [anon_sym_sqrt] = ACTIONS(835), + [anon_sym_srand] = ACTIONS(835), + [anon_sym_strftime] = ACTIONS(835), + [anon_sym_strtonum] = ACTIONS(835), + [anon_sym_sub] = ACTIONS(835), + [anon_sym_substr] = ACTIONS(835), + [anon_sym_systime] = ACTIONS(835), + [anon_sym_tolower] = ACTIONS(835), + [anon_sym_toupper] = ACTIONS(835), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(835), + [anon_sym_POUND] = ACTIONS(835), + [sym__if_else_separator] = ACTIONS(837), + }, + [455] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(1103), + [anon_sym_DASH_EQ] = ACTIONS(1103), + [anon_sym_STAR_EQ] = ACTIONS(1103), + [anon_sym_SLASH_EQ] = ACTIONS(1103), + [anon_sym_PERCENT_EQ] = ACTIONS(1103), + [anon_sym_CARET_EQ] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + [sym__func_call] = ACTIONS(1095), + }, + [456] = { + [sym_identifier] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_CR_LF] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [sym_break_statement] = ACTIONS(927), + [sym_continue_statement] = ACTIONS(927), + [anon_sym_delete] = ACTIONS(927), + [anon_sym_exit] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_getline] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [sym_next_statement] = ACTIONS(927), + [sym_nextfile_statement] = ACTIONS(927), + [anon_sym_print] = ACTIONS(927), + [anon_sym_printf] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(927), + [aux_sym_number_token1] = ACTIONS(927), + [aux_sym_number_token2] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_asort] = ACTIONS(927), + [anon_sym_asorti] = ACTIONS(927), + [anon_sym_bindtextdomain] = ACTIONS(927), + [anon_sym_compl] = ACTIONS(927), + [anon_sym_cos] = ACTIONS(927), + [anon_sym_dcgettext] = ACTIONS(927), + [anon_sym_dcngettext] = ACTIONS(927), + [anon_sym_exp] = ACTIONS(927), + [anon_sym_gensub] = ACTIONS(927), + [anon_sym_gsub] = ACTIONS(927), + [anon_sym_index] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_isarray] = ACTIONS(927), + [anon_sym_length] = ACTIONS(927), + [anon_sym_log] = ACTIONS(927), + [anon_sym_lshift] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mktime] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_patsplit] = ACTIONS(927), + [anon_sym_rand] = ACTIONS(927), + [anon_sym_rshift] = ACTIONS(927), + [anon_sym_sin] = ACTIONS(927), + [anon_sym_split] = ACTIONS(927), + [anon_sym_sprintf] = ACTIONS(927), + [anon_sym_sqrt] = ACTIONS(927), + [anon_sym_srand] = ACTIONS(927), + [anon_sym_strftime] = ACTIONS(927), + [anon_sym_strtonum] = ACTIONS(927), + [anon_sym_sub] = ACTIONS(927), + [anon_sym_substr] = ACTIONS(927), + [anon_sym_systime] = ACTIONS(927), + [anon_sym_tolower] = ACTIONS(927), + [anon_sym_toupper] = ACTIONS(927), + [anon_sym_typeof] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(927), + [sym_concatenating_space] = ACTIONS(929), + }, + [457] = { + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_CR_LF] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [sym_break_statement] = ACTIONS(711), + [sym_continue_statement] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_exit] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [sym_next_statement] = ACTIONS(711), + [sym_nextfile_statement] = ACTIONS(711), + [anon_sym_print] = ACTIONS(711), + [anon_sym_printf] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_AMP_AMP] = ACTIONS(713), + [anon_sym_PIPE_PIPE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(711), + [sym_concatenating_space] = ACTIONS(719), + }, + [458] = { + [ts_builtin_sym_end] = ACTIONS(771), + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_BEGIN] = ACTIONS(769), + [anon_sym_END] = ACTIONS(769), + [anon_sym_BEGINFILE] = ACTIONS(769), + [anon_sym_ENDFILE] = ACTIONS(769), + [anon_sym_ATinclude] = ACTIONS(771), + [anon_sym_ATload] = ACTIONS(771), + [anon_sym_ATnamespace] = ACTIONS(771), + [anon_sym_LPAREN] = ACTIONS(771), + [anon_sym_in] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_QMARK] = ACTIONS(771), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_BANG_TILDE] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_PLUS_EQ] = ACTIONS(771), + [anon_sym_DASH_EQ] = ACTIONS(771), + [anon_sym_STAR_EQ] = ACTIONS(771), + [anon_sym_SLASH_EQ] = ACTIONS(771), + [anon_sym_PERCENT_EQ] = ACTIONS(771), + [anon_sym_CARET_EQ] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_function] = ACTIONS(769), + [anon_sym_func] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(771), + [sym_concatenating_space] = ACTIONS(771), + [sym__func_call] = ACTIONS(771), + }, + [459] = { + [sym_identifier] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [anon_sym_CR_LF] = ACTIONS(851), + [anon_sym_if] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(851), + [anon_sym_for] = ACTIONS(851), + [anon_sym_in] = ACTIONS(851), + [sym_break_statement] = ACTIONS(851), + [sym_continue_statement] = ACTIONS(851), + [anon_sym_delete] = ACTIONS(851), + [anon_sym_exit] = ACTIONS(851), + [anon_sym_return] = ACTIONS(851), + [anon_sym_switch] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_getline] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [sym_next_statement] = ACTIONS(851), + [sym_nextfile_statement] = ACTIONS(851), + [anon_sym_print] = ACTIONS(851), + [anon_sym_printf] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_PIPE_AMP] = ACTIONS(851), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_STAR_STAR] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_BANG_TILDE] = ACTIONS(851), + [anon_sym_AMP_AMP] = ACTIONS(851), + [anon_sym_PIPE_PIPE] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_DOLLAR] = ACTIONS(851), + [anon_sym_AT] = ACTIONS(851), + [aux_sym_number_token1] = ACTIONS(851), + [aux_sym_number_token2] = ACTIONS(851), + [anon_sym_DQUOTE] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_asort] = ACTIONS(851), + [anon_sym_asorti] = ACTIONS(851), + [anon_sym_bindtextdomain] = ACTIONS(851), + [anon_sym_compl] = ACTIONS(851), + [anon_sym_cos] = ACTIONS(851), + [anon_sym_dcgettext] = ACTIONS(851), + [anon_sym_dcngettext] = ACTIONS(851), + [anon_sym_exp] = ACTIONS(851), + [anon_sym_gensub] = ACTIONS(851), + [anon_sym_gsub] = ACTIONS(851), + [anon_sym_index] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_isarray] = ACTIONS(851), + [anon_sym_length] = ACTIONS(851), + [anon_sym_log] = ACTIONS(851), + [anon_sym_lshift] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_mktime] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_patsplit] = ACTIONS(851), + [anon_sym_rand] = ACTIONS(851), + [anon_sym_rshift] = ACTIONS(851), + [anon_sym_sin] = ACTIONS(851), + [anon_sym_split] = ACTIONS(851), + [anon_sym_sprintf] = ACTIONS(851), + [anon_sym_sqrt] = ACTIONS(851), + [anon_sym_srand] = ACTIONS(851), + [anon_sym_strftime] = ACTIONS(851), + [anon_sym_strtonum] = ACTIONS(851), + [anon_sym_sub] = ACTIONS(851), + [anon_sym_substr] = ACTIONS(851), + [anon_sym_systime] = ACTIONS(851), + [anon_sym_tolower] = ACTIONS(851), + [anon_sym_toupper] = ACTIONS(851), + [anon_sym_typeof] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(851), + [sym__if_else_separator] = ACTIONS(853), + }, + [460] = { + [sym_identifier] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_CR_LF] = ACTIONS(789), + [anon_sym_if] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_while] = ACTIONS(789), + [anon_sym_do] = ACTIONS(789), + [anon_sym_for] = ACTIONS(789), + [anon_sym_in] = ACTIONS(789), + [sym_break_statement] = ACTIONS(789), + [sym_continue_statement] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_exit] = ACTIONS(789), + [anon_sym_return] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_getline] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [sym_next_statement] = ACTIONS(789), + [sym_nextfile_statement] = ACTIONS(789), + [anon_sym_print] = ACTIONS(789), + [anon_sym_printf] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_PIPE_AMP] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_PERCENT] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_BANG_TILDE] = ACTIONS(789), + [anon_sym_AMP_AMP] = ACTIONS(789), + [anon_sym_PIPE_PIPE] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(789), + [anon_sym_DASH_DASH] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(789), + [sym_regex_flags] = ACTIONS(1167), + [anon_sym_AT] = ACTIONS(789), + [aux_sym_number_token1] = ACTIONS(789), + [aux_sym_number_token2] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_asort] = ACTIONS(789), + [anon_sym_asorti] = ACTIONS(789), + [anon_sym_bindtextdomain] = ACTIONS(789), + [anon_sym_compl] = ACTIONS(789), + [anon_sym_cos] = ACTIONS(789), + [anon_sym_dcgettext] = ACTIONS(789), + [anon_sym_dcngettext] = ACTIONS(789), + [anon_sym_exp] = ACTIONS(789), + [anon_sym_gensub] = ACTIONS(789), + [anon_sym_gsub] = ACTIONS(789), + [anon_sym_index] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_isarray] = ACTIONS(789), + [anon_sym_length] = ACTIONS(789), + [anon_sym_log] = ACTIONS(789), + [anon_sym_lshift] = ACTIONS(789), + [anon_sym_match] = ACTIONS(789), + [anon_sym_mktime] = ACTIONS(789), + [anon_sym_or] = ACTIONS(789), + [anon_sym_patsplit] = ACTIONS(789), + [anon_sym_rand] = ACTIONS(789), + [anon_sym_rshift] = ACTIONS(789), + [anon_sym_sin] = ACTIONS(789), + [anon_sym_split] = ACTIONS(789), + [anon_sym_sprintf] = ACTIONS(789), + [anon_sym_sqrt] = ACTIONS(789), + [anon_sym_srand] = ACTIONS(789), + [anon_sym_strftime] = ACTIONS(789), + [anon_sym_strtonum] = ACTIONS(789), + [anon_sym_sub] = ACTIONS(789), + [anon_sym_substr] = ACTIONS(789), + [anon_sym_systime] = ACTIONS(789), + [anon_sym_tolower] = ACTIONS(789), + [anon_sym_toupper] = ACTIONS(789), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(789), + }, + [461] = { + [sym_identifier] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(889), + [anon_sym_CR_LF] = ACTIONS(889), + [anon_sym_if] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_while] = ACTIONS(889), + [anon_sym_do] = ACTIONS(889), + [anon_sym_for] = ACTIONS(889), + [anon_sym_in] = ACTIONS(889), + [sym_break_statement] = ACTIONS(889), + [sym_continue_statement] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_exit] = ACTIONS(889), + [anon_sym_return] = ACTIONS(889), + [anon_sym_switch] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_getline] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(889), + [sym_next_statement] = ACTIONS(889), + [sym_nextfile_statement] = ACTIONS(889), + [anon_sym_print] = ACTIONS(889), + [anon_sym_printf] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_GT_GT] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_STAR_STAR] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(889), + [anon_sym_BANG_TILDE] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_DASH_DASH] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(889), + [aux_sym_number_token1] = ACTIONS(889), + [aux_sym_number_token2] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_asort] = ACTIONS(889), + [anon_sym_asorti] = ACTIONS(889), + [anon_sym_bindtextdomain] = ACTIONS(889), + [anon_sym_compl] = ACTIONS(889), + [anon_sym_cos] = ACTIONS(889), + [anon_sym_dcgettext] = ACTIONS(889), + [anon_sym_dcngettext] = ACTIONS(889), + [anon_sym_exp] = ACTIONS(889), + [anon_sym_gensub] = ACTIONS(889), + [anon_sym_gsub] = ACTIONS(889), + [anon_sym_index] = ACTIONS(889), + [anon_sym_int] = ACTIONS(889), + [anon_sym_isarray] = ACTIONS(889), + [anon_sym_length] = ACTIONS(889), + [anon_sym_log] = ACTIONS(889), + [anon_sym_lshift] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_mktime] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_patsplit] = ACTIONS(889), + [anon_sym_rand] = ACTIONS(889), + [anon_sym_rshift] = ACTIONS(889), + [anon_sym_sin] = ACTIONS(889), + [anon_sym_split] = ACTIONS(889), + [anon_sym_sprintf] = ACTIONS(889), + [anon_sym_sqrt] = ACTIONS(889), + [anon_sym_srand] = ACTIONS(889), + [anon_sym_strftime] = ACTIONS(889), + [anon_sym_strtonum] = ACTIONS(889), + [anon_sym_sub] = ACTIONS(889), + [anon_sym_substr] = ACTIONS(889), + [anon_sym_systime] = ACTIONS(889), + [anon_sym_tolower] = ACTIONS(889), + [anon_sym_toupper] = ACTIONS(889), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(889), + [sym_concatenating_space] = ACTIONS(891), + }, + [462] = { + [sym_identifier] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_CR_LF] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_in] = ACTIONS(915), + [sym_break_statement] = ACTIONS(915), + [sym_continue_statement] = ACTIONS(915), + [anon_sym_delete] = ACTIONS(915), + [anon_sym_exit] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_getline] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [sym_next_statement] = ACTIONS(915), + [sym_nextfile_statement] = ACTIONS(915), + [anon_sym_print] = ACTIONS(915), + [anon_sym_printf] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_STAR_STAR] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_BANG_TILDE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), + [aux_sym_number_token1] = ACTIONS(915), + [aux_sym_number_token2] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_asort] = ACTIONS(915), + [anon_sym_asorti] = ACTIONS(915), + [anon_sym_bindtextdomain] = ACTIONS(915), + [anon_sym_compl] = ACTIONS(915), + [anon_sym_cos] = ACTIONS(915), + [anon_sym_dcgettext] = ACTIONS(915), + [anon_sym_dcngettext] = ACTIONS(915), + [anon_sym_exp] = ACTIONS(915), + [anon_sym_gensub] = ACTIONS(915), + [anon_sym_gsub] = ACTIONS(915), + [anon_sym_index] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_isarray] = ACTIONS(915), + [anon_sym_length] = ACTIONS(915), + [anon_sym_log] = ACTIONS(915), + [anon_sym_lshift] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mktime] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_patsplit] = ACTIONS(915), + [anon_sym_rand] = ACTIONS(915), + [anon_sym_rshift] = ACTIONS(915), + [anon_sym_sin] = ACTIONS(915), + [anon_sym_split] = ACTIONS(915), + [anon_sym_sprintf] = ACTIONS(915), + [anon_sym_sqrt] = ACTIONS(915), + [anon_sym_srand] = ACTIONS(915), + [anon_sym_strftime] = ACTIONS(915), + [anon_sym_strtonum] = ACTIONS(915), + [anon_sym_sub] = ACTIONS(915), + [anon_sym_substr] = ACTIONS(915), + [anon_sym_systime] = ACTIONS(915), + [anon_sym_tolower] = ACTIONS(915), + [anon_sym_toupper] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(915), + [sym_concatenating_space] = ACTIONS(917), + }, + [463] = { + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_CR_LF] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [sym_break_statement] = ACTIONS(911), + [sym_continue_statement] = ACTIONS(911), + [anon_sym_delete] = ACTIONS(911), + [anon_sym_exit] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_getline] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [sym_next_statement] = ACTIONS(911), + [sym_nextfile_statement] = ACTIONS(911), + [anon_sym_print] = ACTIONS(911), + [anon_sym_printf] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(911), + [anon_sym_PIPE_PIPE] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_asort] = ACTIONS(911), + [anon_sym_asorti] = ACTIONS(911), + [anon_sym_bindtextdomain] = ACTIONS(911), + [anon_sym_compl] = ACTIONS(911), + [anon_sym_cos] = ACTIONS(911), + [anon_sym_dcgettext] = ACTIONS(911), + [anon_sym_dcngettext] = ACTIONS(911), + [anon_sym_exp] = ACTIONS(911), + [anon_sym_gensub] = ACTIONS(911), + [anon_sym_gsub] = ACTIONS(911), + [anon_sym_index] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_isarray] = ACTIONS(911), + [anon_sym_length] = ACTIONS(911), + [anon_sym_log] = ACTIONS(911), + [anon_sym_lshift] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mktime] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_patsplit] = ACTIONS(911), + [anon_sym_rand] = ACTIONS(911), + [anon_sym_rshift] = ACTIONS(911), + [anon_sym_sin] = ACTIONS(911), + [anon_sym_split] = ACTIONS(911), + [anon_sym_sprintf] = ACTIONS(911), + [anon_sym_sqrt] = ACTIONS(911), + [anon_sym_srand] = ACTIONS(911), + [anon_sym_strftime] = ACTIONS(911), + [anon_sym_strtonum] = ACTIONS(911), + [anon_sym_sub] = ACTIONS(911), + [anon_sym_substr] = ACTIONS(911), + [anon_sym_systime] = ACTIONS(911), + [anon_sym_tolower] = ACTIONS(911), + [anon_sym_toupper] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(911), + [sym_concatenating_space] = ACTIONS(913), + }, + [464] = { + [sym_identifier] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_LF] = ACTIONS(1131), + [anon_sym_CR_LF] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(1131), + [sym_continue_statement] = ACTIONS(1131), + [anon_sym_delete] = ACTIONS(1131), + [anon_sym_exit] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_getline] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(1131), + [sym_nextfile_statement] = ACTIONS(1131), + [anon_sym_print] = ACTIONS(1131), + [anon_sym_printf] = ACTIONS(1131), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1131), + [anon_sym_PIPE_AMP] = ACTIONS(1131), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_PLUS_PLUS] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1131), + [anon_sym_AT] = ACTIONS(1131), + [aux_sym_number_token1] = ACTIONS(1131), + [aux_sym_number_token2] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_and] = ACTIONS(1131), + [anon_sym_asort] = ACTIONS(1131), + [anon_sym_asorti] = ACTIONS(1131), + [anon_sym_bindtextdomain] = ACTIONS(1131), + [anon_sym_compl] = ACTIONS(1131), + [anon_sym_cos] = ACTIONS(1131), + [anon_sym_dcgettext] = ACTIONS(1131), + [anon_sym_dcngettext] = ACTIONS(1131), + [anon_sym_exp] = ACTIONS(1131), + [anon_sym_gensub] = ACTIONS(1131), + [anon_sym_gsub] = ACTIONS(1131), + [anon_sym_index] = ACTIONS(1131), + [anon_sym_int] = ACTIONS(1131), + [anon_sym_isarray] = ACTIONS(1131), + [anon_sym_length] = ACTIONS(1131), + [anon_sym_log] = ACTIONS(1131), + [anon_sym_lshift] = ACTIONS(1131), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_mktime] = ACTIONS(1131), + [anon_sym_or] = ACTIONS(1131), + [anon_sym_patsplit] = ACTIONS(1131), + [anon_sym_rand] = ACTIONS(1131), + [anon_sym_rshift] = ACTIONS(1131), + [anon_sym_sin] = ACTIONS(1131), + [anon_sym_split] = ACTIONS(1131), + [anon_sym_sprintf] = ACTIONS(1131), + [anon_sym_sqrt] = ACTIONS(1131), + [anon_sym_srand] = ACTIONS(1131), + [anon_sym_strftime] = ACTIONS(1131), + [anon_sym_strtonum] = ACTIONS(1131), + [anon_sym_sub] = ACTIONS(1131), + [anon_sym_substr] = ACTIONS(1131), + [anon_sym_systime] = ACTIONS(1131), + [anon_sym_tolower] = ACTIONS(1131), + [anon_sym_toupper] = ACTIONS(1131), + [anon_sym_typeof] = ACTIONS(1131), + [anon_sym_xor] = ACTIONS(1131), + [anon_sym_POUND] = ACTIONS(1131), + }, + [465] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(719), + [anon_sym_DASH_EQ] = ACTIONS(719), + [anon_sym_STAR_EQ] = ACTIONS(719), + [anon_sym_SLASH_EQ] = ACTIONS(719), + [anon_sym_PERCENT_EQ] = ACTIONS(719), + [anon_sym_CARET_EQ] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + }, + [466] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(1103), + [anon_sym_DASH_EQ] = ACTIONS(1103), + [anon_sym_STAR_EQ] = ACTIONS(1103), + [anon_sym_SLASH_EQ] = ACTIONS(1103), + [anon_sym_PERCENT_EQ] = ACTIONS(1103), + [anon_sym_CARET_EQ] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + }, + [467] = { + [sym_identifier] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_CR_LF] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [sym_break_statement] = ACTIONS(927), + [sym_continue_statement] = ACTIONS(927), + [anon_sym_delete] = ACTIONS(927), + [anon_sym_exit] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_getline] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [sym_next_statement] = ACTIONS(927), + [sym_nextfile_statement] = ACTIONS(927), + [anon_sym_print] = ACTIONS(927), + [anon_sym_printf] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(927), + [aux_sym_number_token1] = ACTIONS(927), + [aux_sym_number_token2] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_asort] = ACTIONS(927), + [anon_sym_asorti] = ACTIONS(927), + [anon_sym_bindtextdomain] = ACTIONS(927), + [anon_sym_compl] = ACTIONS(927), + [anon_sym_cos] = ACTIONS(927), + [anon_sym_dcgettext] = ACTIONS(927), + [anon_sym_dcngettext] = ACTIONS(927), + [anon_sym_exp] = ACTIONS(927), + [anon_sym_gensub] = ACTIONS(927), + [anon_sym_gsub] = ACTIONS(927), + [anon_sym_index] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_isarray] = ACTIONS(927), + [anon_sym_length] = ACTIONS(927), + [anon_sym_log] = ACTIONS(927), + [anon_sym_lshift] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mktime] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_patsplit] = ACTIONS(927), + [anon_sym_rand] = ACTIONS(927), + [anon_sym_rshift] = ACTIONS(927), + [anon_sym_sin] = ACTIONS(927), + [anon_sym_split] = ACTIONS(927), + [anon_sym_sprintf] = ACTIONS(927), + [anon_sym_sqrt] = ACTIONS(927), + [anon_sym_srand] = ACTIONS(927), + [anon_sym_strftime] = ACTIONS(927), + [anon_sym_strtonum] = ACTIONS(927), + [anon_sym_sub] = ACTIONS(927), + [anon_sym_substr] = ACTIONS(927), + [anon_sym_systime] = ACTIONS(927), + [anon_sym_tolower] = ACTIONS(927), + [anon_sym_toupper] = ACTIONS(927), + [anon_sym_typeof] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(927), + }, + [468] = { + [sym_identifier] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_CR_LF] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in] = ACTIONS(931), + [sym_break_statement] = ACTIONS(931), + [sym_continue_statement] = ACTIONS(931), + [anon_sym_delete] = ACTIONS(931), + [anon_sym_exit] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_getline] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [sym_next_statement] = ACTIONS(931), + [sym_nextfile_statement] = ACTIONS(931), + [anon_sym_print] = ACTIONS(931), + [anon_sym_printf] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [aux_sym_number_token1] = ACTIONS(931), + [aux_sym_number_token2] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_asort] = ACTIONS(931), + [anon_sym_asorti] = ACTIONS(931), + [anon_sym_bindtextdomain] = ACTIONS(931), + [anon_sym_compl] = ACTIONS(931), + [anon_sym_cos] = ACTIONS(931), + [anon_sym_dcgettext] = ACTIONS(931), + [anon_sym_dcngettext] = ACTIONS(931), + [anon_sym_exp] = ACTIONS(931), + [anon_sym_gensub] = ACTIONS(931), + [anon_sym_gsub] = ACTIONS(931), + [anon_sym_index] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_isarray] = ACTIONS(931), + [anon_sym_length] = ACTIONS(931), + [anon_sym_log] = ACTIONS(931), + [anon_sym_lshift] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mktime] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_patsplit] = ACTIONS(931), + [anon_sym_rand] = ACTIONS(931), + [anon_sym_rshift] = ACTIONS(931), + [anon_sym_sin] = ACTIONS(931), + [anon_sym_split] = ACTIONS(931), + [anon_sym_sprintf] = ACTIONS(931), + [anon_sym_sqrt] = ACTIONS(931), + [anon_sym_srand] = ACTIONS(931), + [anon_sym_strftime] = ACTIONS(931), + [anon_sym_strtonum] = ACTIONS(931), + [anon_sym_sub] = ACTIONS(931), + [anon_sym_substr] = ACTIONS(931), + [anon_sym_systime] = ACTIONS(931), + [anon_sym_tolower] = ACTIONS(931), + [anon_sym_toupper] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + }, + [469] = { + [sym_identifier] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_CR_LF] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(871), + [sym_continue_statement] = ACTIONS(871), + [anon_sym_delete] = ACTIONS(871), + [anon_sym_exit] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_switch] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_getline] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(871), + [sym_nextfile_statement] = ACTIONS(871), + [anon_sym_print] = ACTIONS(871), + [anon_sym_printf] = ACTIONS(871), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_AT] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(871), + [aux_sym_number_token2] = ACTIONS(871), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_asort] = ACTIONS(871), + [anon_sym_asorti] = ACTIONS(871), + [anon_sym_bindtextdomain] = ACTIONS(871), + [anon_sym_compl] = ACTIONS(871), + [anon_sym_cos] = ACTIONS(871), + [anon_sym_dcgettext] = ACTIONS(871), + [anon_sym_dcngettext] = ACTIONS(871), + [anon_sym_exp] = ACTIONS(871), + [anon_sym_gensub] = ACTIONS(871), + [anon_sym_gsub] = ACTIONS(871), + [anon_sym_index] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_isarray] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_log] = ACTIONS(871), + [anon_sym_lshift] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mktime] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_patsplit] = ACTIONS(871), + [anon_sym_rand] = ACTIONS(871), + [anon_sym_rshift] = ACTIONS(871), + [anon_sym_sin] = ACTIONS(871), + [anon_sym_split] = ACTIONS(871), + [anon_sym_sprintf] = ACTIONS(871), + [anon_sym_sqrt] = ACTIONS(871), + [anon_sym_srand] = ACTIONS(871), + [anon_sym_strftime] = ACTIONS(871), + [anon_sym_strtonum] = ACTIONS(871), + [anon_sym_sub] = ACTIONS(871), + [anon_sym_substr] = ACTIONS(871), + [anon_sym_systime] = ACTIONS(871), + [anon_sym_tolower] = ACTIONS(871), + [anon_sym_toupper] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_POUND] = ACTIONS(871), + }, + [470] = { + [sym_identifier] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [sym_break_statement] = ACTIONS(859), + [sym_continue_statement] = ACTIONS(859), + [anon_sym_delete] = ACTIONS(859), + [anon_sym_exit] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_switch] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_getline] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [sym_next_statement] = ACTIONS(859), + [sym_nextfile_statement] = ACTIONS(859), + [anon_sym_print] = ACTIONS(859), + [anon_sym_printf] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_BANG_TILDE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(859), + [aux_sym_number_token1] = ACTIONS(859), + [aux_sym_number_token2] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_asort] = ACTIONS(859), + [anon_sym_asorti] = ACTIONS(859), + [anon_sym_bindtextdomain] = ACTIONS(859), + [anon_sym_compl] = ACTIONS(859), + [anon_sym_cos] = ACTIONS(859), + [anon_sym_dcgettext] = ACTIONS(859), + [anon_sym_dcngettext] = ACTIONS(859), + [anon_sym_exp] = ACTIONS(859), + [anon_sym_gensub] = ACTIONS(859), + [anon_sym_gsub] = ACTIONS(859), + [anon_sym_index] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_isarray] = ACTIONS(859), + [anon_sym_length] = ACTIONS(859), + [anon_sym_log] = ACTIONS(859), + [anon_sym_lshift] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mktime] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_patsplit] = ACTIONS(859), + [anon_sym_rand] = ACTIONS(859), + [anon_sym_rshift] = ACTIONS(859), + [anon_sym_sin] = ACTIONS(859), + [anon_sym_split] = ACTIONS(859), + [anon_sym_sprintf] = ACTIONS(859), + [anon_sym_sqrt] = ACTIONS(859), + [anon_sym_srand] = ACTIONS(859), + [anon_sym_strftime] = ACTIONS(859), + [anon_sym_strtonum] = ACTIONS(859), + [anon_sym_sub] = ACTIONS(859), + [anon_sym_substr] = ACTIONS(859), + [anon_sym_systime] = ACTIONS(859), + [anon_sym_tolower] = ACTIONS(859), + [anon_sym_toupper] = ACTIONS(859), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + }, + [471] = { + [sym_identifier] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_CR_LF] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(1139), + [sym_continue_statement] = ACTIONS(1139), + [anon_sym_delete] = ACTIONS(1139), + [anon_sym_exit] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_getline] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(1139), + [sym_nextfile_statement] = ACTIONS(1139), + [anon_sym_print] = ACTIONS(1139), + [anon_sym_printf] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_PIPE_AMP] = ACTIONS(1139), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_AT] = ACTIONS(1139), + [aux_sym_number_token1] = ACTIONS(1139), + [aux_sym_number_token2] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_asort] = ACTIONS(1139), + [anon_sym_asorti] = ACTIONS(1139), + [anon_sym_bindtextdomain] = ACTIONS(1139), + [anon_sym_compl] = ACTIONS(1139), + [anon_sym_cos] = ACTIONS(1139), + [anon_sym_dcgettext] = ACTIONS(1139), + [anon_sym_dcngettext] = ACTIONS(1139), + [anon_sym_exp] = ACTIONS(1139), + [anon_sym_gensub] = ACTIONS(1139), + [anon_sym_gsub] = ACTIONS(1139), + [anon_sym_index] = ACTIONS(1139), + [anon_sym_int] = ACTIONS(1139), + [anon_sym_isarray] = ACTIONS(1139), + [anon_sym_length] = ACTIONS(1139), + [anon_sym_log] = ACTIONS(1139), + [anon_sym_lshift] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_mktime] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_patsplit] = ACTIONS(1139), + [anon_sym_rand] = ACTIONS(1139), + [anon_sym_rshift] = ACTIONS(1139), + [anon_sym_sin] = ACTIONS(1139), + [anon_sym_split] = ACTIONS(1139), + [anon_sym_sprintf] = ACTIONS(1139), + [anon_sym_sqrt] = ACTIONS(1139), + [anon_sym_srand] = ACTIONS(1139), + [anon_sym_strftime] = ACTIONS(1139), + [anon_sym_strtonum] = ACTIONS(1139), + [anon_sym_sub] = ACTIONS(1139), + [anon_sym_substr] = ACTIONS(1139), + [anon_sym_systime] = ACTIONS(1139), + [anon_sym_tolower] = ACTIONS(1139), + [anon_sym_toupper] = ACTIONS(1139), + [anon_sym_typeof] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(1139), + }, + [472] = { + [sym_identifier] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(939), + [anon_sym_CR_LF] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [sym_break_statement] = ACTIONS(939), + [sym_continue_statement] = ACTIONS(939), + [anon_sym_delete] = ACTIONS(939), + [anon_sym_exit] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_getline] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [sym_next_statement] = ACTIONS(939), + [sym_nextfile_statement] = ACTIONS(939), + [anon_sym_print] = ACTIONS(939), + [anon_sym_printf] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [aux_sym_number_token1] = ACTIONS(939), + [aux_sym_number_token2] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_asort] = ACTIONS(939), + [anon_sym_asorti] = ACTIONS(939), + [anon_sym_bindtextdomain] = ACTIONS(939), + [anon_sym_compl] = ACTIONS(939), + [anon_sym_cos] = ACTIONS(939), + [anon_sym_dcgettext] = ACTIONS(939), + [anon_sym_dcngettext] = ACTIONS(939), + [anon_sym_exp] = ACTIONS(939), + [anon_sym_gensub] = ACTIONS(939), + [anon_sym_gsub] = ACTIONS(939), + [anon_sym_index] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_isarray] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_log] = ACTIONS(939), + [anon_sym_lshift] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mktime] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_patsplit] = ACTIONS(939), + [anon_sym_rand] = ACTIONS(939), + [anon_sym_rshift] = ACTIONS(939), + [anon_sym_sin] = ACTIONS(939), + [anon_sym_split] = ACTIONS(939), + [anon_sym_sprintf] = ACTIONS(939), + [anon_sym_sqrt] = ACTIONS(939), + [anon_sym_srand] = ACTIONS(939), + [anon_sym_strftime] = ACTIONS(939), + [anon_sym_strtonum] = ACTIONS(939), + [anon_sym_sub] = ACTIONS(939), + [anon_sym_substr] = ACTIONS(939), + [anon_sym_systime] = ACTIONS(939), + [anon_sym_tolower] = ACTIONS(939), + [anon_sym_toupper] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(939), + }, + [473] = { + [sym_identifier] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(923), + [anon_sym_CR_LF] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_in] = ACTIONS(923), + [sym_break_statement] = ACTIONS(923), + [sym_continue_statement] = ACTIONS(923), + [anon_sym_delete] = ACTIONS(923), + [anon_sym_exit] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_getline] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [sym_next_statement] = ACTIONS(923), + [sym_nextfile_statement] = ACTIONS(923), + [anon_sym_print] = ACTIONS(923), + [anon_sym_printf] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [aux_sym_number_token1] = ACTIONS(923), + [aux_sym_number_token2] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_asort] = ACTIONS(923), + [anon_sym_asorti] = ACTIONS(923), + [anon_sym_bindtextdomain] = ACTIONS(923), + [anon_sym_compl] = ACTIONS(923), + [anon_sym_cos] = ACTIONS(923), + [anon_sym_dcgettext] = ACTIONS(923), + [anon_sym_dcngettext] = ACTIONS(923), + [anon_sym_exp] = ACTIONS(923), + [anon_sym_gensub] = ACTIONS(923), + [anon_sym_gsub] = ACTIONS(923), + [anon_sym_index] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_isarray] = ACTIONS(923), + [anon_sym_length] = ACTIONS(923), + [anon_sym_log] = ACTIONS(923), + [anon_sym_lshift] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mktime] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_patsplit] = ACTIONS(923), + [anon_sym_rand] = ACTIONS(923), + [anon_sym_rshift] = ACTIONS(923), + [anon_sym_sin] = ACTIONS(923), + [anon_sym_split] = ACTIONS(923), + [anon_sym_sprintf] = ACTIONS(923), + [anon_sym_sqrt] = ACTIONS(923), + [anon_sym_srand] = ACTIONS(923), + [anon_sym_strftime] = ACTIONS(923), + [anon_sym_strtonum] = ACTIONS(923), + [anon_sym_sub] = ACTIONS(923), + [anon_sym_substr] = ACTIONS(923), + [anon_sym_systime] = ACTIONS(923), + [anon_sym_tolower] = ACTIONS(923), + [anon_sym_toupper] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + }, + [474] = { + [sym_identifier] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_CR_LF] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_do] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [sym_break_statement] = ACTIONS(863), + [sym_continue_statement] = ACTIONS(863), + [anon_sym_delete] = ACTIONS(863), + [anon_sym_exit] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_getline] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [sym_next_statement] = ACTIONS(863), + [sym_nextfile_statement] = ACTIONS(863), + [anon_sym_print] = ACTIONS(863), + [anon_sym_printf] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_TILDE] = ACTIONS(863), + [anon_sym_BANG_TILDE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS_PLUS] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_AT] = ACTIONS(863), + [aux_sym_number_token1] = ACTIONS(863), + [aux_sym_number_token2] = ACTIONS(863), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_asort] = ACTIONS(863), + [anon_sym_asorti] = ACTIONS(863), + [anon_sym_bindtextdomain] = ACTIONS(863), + [anon_sym_compl] = ACTIONS(863), + [anon_sym_cos] = ACTIONS(863), + [anon_sym_dcgettext] = ACTIONS(863), + [anon_sym_dcngettext] = ACTIONS(863), + [anon_sym_exp] = ACTIONS(863), + [anon_sym_gensub] = ACTIONS(863), + [anon_sym_gsub] = ACTIONS(863), + [anon_sym_index] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_isarray] = ACTIONS(863), + [anon_sym_length] = ACTIONS(863), + [anon_sym_log] = ACTIONS(863), + [anon_sym_lshift] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mktime] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_patsplit] = ACTIONS(863), + [anon_sym_rand] = ACTIONS(863), + [anon_sym_rshift] = ACTIONS(863), + [anon_sym_sin] = ACTIONS(863), + [anon_sym_split] = ACTIONS(863), + [anon_sym_sprintf] = ACTIONS(863), + [anon_sym_sqrt] = ACTIONS(863), + [anon_sym_srand] = ACTIONS(863), + [anon_sym_strftime] = ACTIONS(863), + [anon_sym_strtonum] = ACTIONS(863), + [anon_sym_sub] = ACTIONS(863), + [anon_sym_substr] = ACTIONS(863), + [anon_sym_systime] = ACTIONS(863), + [anon_sym_tolower] = ACTIONS(863), + [anon_sym_toupper] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(863), + }, + [475] = { + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LF] = ACTIONS(765), + [anon_sym_CR_LF] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym_break_statement] = ACTIONS(765), + [sym_continue_statement] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_exit] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [sym_next_statement] = ACTIONS(765), + [sym_nextfile_statement] = ACTIONS(765), + [anon_sym_print] = ACTIONS(765), + [anon_sym_printf] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + }, + [476] = { + [sym_identifier] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_CR_LF] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_do] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_in] = ACTIONS(867), + [sym_break_statement] = ACTIONS(867), + [sym_continue_statement] = ACTIONS(867), + [anon_sym_delete] = ACTIONS(867), + [anon_sym_exit] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_getline] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [sym_next_statement] = ACTIONS(867), + [sym_nextfile_statement] = ACTIONS(867), + [anon_sym_print] = ACTIONS(867), + [anon_sym_printf] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_PIPE_AMP] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_STAR_STAR] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_BANG_TILDE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(867), + [anon_sym_PIPE_PIPE] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [aux_sym_number_token1] = ACTIONS(867), + [aux_sym_number_token2] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_asort] = ACTIONS(867), + [anon_sym_asorti] = ACTIONS(867), + [anon_sym_bindtextdomain] = ACTIONS(867), + [anon_sym_compl] = ACTIONS(867), + [anon_sym_cos] = ACTIONS(867), + [anon_sym_dcgettext] = ACTIONS(867), + [anon_sym_dcngettext] = ACTIONS(867), + [anon_sym_exp] = ACTIONS(867), + [anon_sym_gensub] = ACTIONS(867), + [anon_sym_gsub] = ACTIONS(867), + [anon_sym_index] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_isarray] = ACTIONS(867), + [anon_sym_length] = ACTIONS(867), + [anon_sym_log] = ACTIONS(867), + [anon_sym_lshift] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mktime] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_patsplit] = ACTIONS(867), + [anon_sym_rand] = ACTIONS(867), + [anon_sym_rshift] = ACTIONS(867), + [anon_sym_sin] = ACTIONS(867), + [anon_sym_split] = ACTIONS(867), + [anon_sym_sprintf] = ACTIONS(867), + [anon_sym_sqrt] = ACTIONS(867), + [anon_sym_srand] = ACTIONS(867), + [anon_sym_strftime] = ACTIONS(867), + [anon_sym_strtonum] = ACTIONS(867), + [anon_sym_sub] = ACTIONS(867), + [anon_sym_substr] = ACTIONS(867), + [anon_sym_systime] = ACTIONS(867), + [anon_sym_tolower] = ACTIONS(867), + [anon_sym_toupper] = ACTIONS(867), + [anon_sym_typeof] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + }, + [477] = { + [ts_builtin_sym_end] = ACTIONS(803), + [sym_identifier] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_BEGIN] = ACTIONS(801), + [anon_sym_END] = ACTIONS(801), + [anon_sym_BEGINFILE] = ACTIONS(801), + [anon_sym_ENDFILE] = ACTIONS(801), + [anon_sym_ATinclude] = ACTIONS(803), + [anon_sym_ATload] = ACTIONS(803), + [anon_sym_ATnamespace] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(803), + [anon_sym_getline] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_AMP_AMP] = ACTIONS(803), + [anon_sym_PIPE_PIPE] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_PLUS_EQ] = ACTIONS(803), + [anon_sym_DASH_EQ] = ACTIONS(803), + [anon_sym_STAR_EQ] = ACTIONS(803), + [anon_sym_SLASH_EQ] = ACTIONS(803), + [anon_sym_PERCENT_EQ] = ACTIONS(803), + [anon_sym_CARET_EQ] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_AT] = ACTIONS(801), + [aux_sym_number_token1] = ACTIONS(801), + [aux_sym_number_token2] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_function] = ACTIONS(801), + [anon_sym_func] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_asort] = ACTIONS(801), + [anon_sym_asorti] = ACTIONS(801), + [anon_sym_bindtextdomain] = ACTIONS(801), + [anon_sym_compl] = ACTIONS(801), + [anon_sym_cos] = ACTIONS(801), + [anon_sym_dcgettext] = ACTIONS(801), + [anon_sym_dcngettext] = ACTIONS(801), + [anon_sym_exp] = ACTIONS(801), + [anon_sym_gensub] = ACTIONS(801), + [anon_sym_gsub] = ACTIONS(801), + [anon_sym_index] = ACTIONS(801), + [anon_sym_int] = ACTIONS(801), + [anon_sym_isarray] = ACTIONS(801), + [anon_sym_length] = ACTIONS(801), + [anon_sym_log] = ACTIONS(801), + [anon_sym_lshift] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_mktime] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_patsplit] = ACTIONS(801), + [anon_sym_rand] = ACTIONS(801), + [anon_sym_rshift] = ACTIONS(801), + [anon_sym_sin] = ACTIONS(801), + [anon_sym_split] = ACTIONS(801), + [anon_sym_sprintf] = ACTIONS(801), + [anon_sym_sqrt] = ACTIONS(801), + [anon_sym_srand] = ACTIONS(801), + [anon_sym_strftime] = ACTIONS(801), + [anon_sym_strtonum] = ACTIONS(801), + [anon_sym_sub] = ACTIONS(801), + [anon_sym_substr] = ACTIONS(801), + [anon_sym_systime] = ACTIONS(801), + [anon_sym_tolower] = ACTIONS(801), + [anon_sym_toupper] = ACTIONS(801), + [anon_sym_typeof] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(803), + [sym_concatenating_space] = ACTIONS(803), + }, + [478] = { + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_CR_LF] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [sym_break_statement] = ACTIONS(911), + [sym_continue_statement] = ACTIONS(911), + [anon_sym_delete] = ACTIONS(911), + [anon_sym_exit] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_getline] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [sym_next_statement] = ACTIONS(911), + [sym_nextfile_statement] = ACTIONS(911), + [anon_sym_print] = ACTIONS(911), + [anon_sym_printf] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(911), + [anon_sym_PIPE_PIPE] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_asort] = ACTIONS(911), + [anon_sym_asorti] = ACTIONS(911), + [anon_sym_bindtextdomain] = ACTIONS(911), + [anon_sym_compl] = ACTIONS(911), + [anon_sym_cos] = ACTIONS(911), + [anon_sym_dcgettext] = ACTIONS(911), + [anon_sym_dcngettext] = ACTIONS(911), + [anon_sym_exp] = ACTIONS(911), + [anon_sym_gensub] = ACTIONS(911), + [anon_sym_gsub] = ACTIONS(911), + [anon_sym_index] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_isarray] = ACTIONS(911), + [anon_sym_length] = ACTIONS(911), + [anon_sym_log] = ACTIONS(911), + [anon_sym_lshift] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mktime] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_patsplit] = ACTIONS(911), + [anon_sym_rand] = ACTIONS(911), + [anon_sym_rshift] = ACTIONS(911), + [anon_sym_sin] = ACTIONS(911), + [anon_sym_split] = ACTIONS(911), + [anon_sym_sprintf] = ACTIONS(911), + [anon_sym_sqrt] = ACTIONS(911), + [anon_sym_srand] = ACTIONS(911), + [anon_sym_strftime] = ACTIONS(911), + [anon_sym_strtonum] = ACTIONS(911), + [anon_sym_sub] = ACTIONS(911), + [anon_sym_substr] = ACTIONS(911), + [anon_sym_systime] = ACTIONS(911), + [anon_sym_tolower] = ACTIONS(911), + [anon_sym_toupper] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(911), + }, + [479] = { + [sym_identifier] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_CR_LF] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_in] = ACTIONS(915), + [sym_break_statement] = ACTIONS(915), + [sym_continue_statement] = ACTIONS(915), + [anon_sym_delete] = ACTIONS(915), + [anon_sym_exit] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_getline] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [sym_next_statement] = ACTIONS(915), + [sym_nextfile_statement] = ACTIONS(915), + [anon_sym_print] = ACTIONS(915), + [anon_sym_printf] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_STAR_STAR] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_BANG_TILDE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), + [aux_sym_number_token1] = ACTIONS(915), + [aux_sym_number_token2] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_asort] = ACTIONS(915), + [anon_sym_asorti] = ACTIONS(915), + [anon_sym_bindtextdomain] = ACTIONS(915), + [anon_sym_compl] = ACTIONS(915), + [anon_sym_cos] = ACTIONS(915), + [anon_sym_dcgettext] = ACTIONS(915), + [anon_sym_dcngettext] = ACTIONS(915), + [anon_sym_exp] = ACTIONS(915), + [anon_sym_gensub] = ACTIONS(915), + [anon_sym_gsub] = ACTIONS(915), + [anon_sym_index] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_isarray] = ACTIONS(915), + [anon_sym_length] = ACTIONS(915), + [anon_sym_log] = ACTIONS(915), + [anon_sym_lshift] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mktime] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_patsplit] = ACTIONS(915), + [anon_sym_rand] = ACTIONS(915), + [anon_sym_rshift] = ACTIONS(915), + [anon_sym_sin] = ACTIONS(915), + [anon_sym_split] = ACTIONS(915), + [anon_sym_sprintf] = ACTIONS(915), + [anon_sym_sqrt] = ACTIONS(915), + [anon_sym_srand] = ACTIONS(915), + [anon_sym_strftime] = ACTIONS(915), + [anon_sym_strtonum] = ACTIONS(915), + [anon_sym_sub] = ACTIONS(915), + [anon_sym_substr] = ACTIONS(915), + [anon_sym_systime] = ACTIONS(915), + [anon_sym_tolower] = ACTIONS(915), + [anon_sym_toupper] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(915), + }, + [480] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(759), + [anon_sym_DASH_EQ] = ACTIONS(759), + [anon_sym_STAR_EQ] = ACTIONS(759), + [anon_sym_SLASH_EQ] = ACTIONS(759), + [anon_sym_PERCENT_EQ] = ACTIONS(759), + [anon_sym_CARET_EQ] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + [sym_concatenating_space] = ACTIONS(759), + }, + [481] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(733), + }, + [482] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1119), + [anon_sym_PLUS_EQ] = ACTIONS(1121), + [anon_sym_DASH_EQ] = ACTIONS(1121), + [anon_sym_STAR_EQ] = ACTIONS(1121), + [anon_sym_SLASH_EQ] = ACTIONS(1121), + [anon_sym_PERCENT_EQ] = ACTIONS(1121), + [anon_sym_CARET_EQ] = ACTIONS(1121), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(733), + }, + [483] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(759), + [anon_sym_DASH_EQ] = ACTIONS(759), + [anon_sym_STAR_EQ] = ACTIONS(759), + [anon_sym_SLASH_EQ] = ACTIONS(759), + [anon_sym_PERCENT_EQ] = ACTIONS(759), + [anon_sym_CARET_EQ] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + [sym_concatenating_space] = ACTIONS(759), + }, + [484] = { + [sym_identifier] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [anon_sym_CR_LF] = ACTIONS(851), + [anon_sym_if] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(851), + [anon_sym_for] = ACTIONS(851), + [anon_sym_in] = ACTIONS(851), + [sym_break_statement] = ACTIONS(851), + [sym_continue_statement] = ACTIONS(851), + [anon_sym_delete] = ACTIONS(851), + [anon_sym_exit] = ACTIONS(851), + [anon_sym_return] = ACTIONS(851), + [anon_sym_switch] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_getline] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [sym_next_statement] = ACTIONS(851), + [sym_nextfile_statement] = ACTIONS(851), + [anon_sym_print] = ACTIONS(851), + [anon_sym_printf] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_PIPE_AMP] = ACTIONS(851), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_STAR_STAR] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_BANG_TILDE] = ACTIONS(851), + [anon_sym_AMP_AMP] = ACTIONS(851), + [anon_sym_PIPE_PIPE] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_DOLLAR] = ACTIONS(851), + [anon_sym_AT] = ACTIONS(851), + [aux_sym_number_token1] = ACTIONS(851), + [aux_sym_number_token2] = ACTIONS(851), + [anon_sym_DQUOTE] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_asort] = ACTIONS(851), + [anon_sym_asorti] = ACTIONS(851), + [anon_sym_bindtextdomain] = ACTIONS(851), + [anon_sym_compl] = ACTIONS(851), + [anon_sym_cos] = ACTIONS(851), + [anon_sym_dcgettext] = ACTIONS(851), + [anon_sym_dcngettext] = ACTIONS(851), + [anon_sym_exp] = ACTIONS(851), + [anon_sym_gensub] = ACTIONS(851), + [anon_sym_gsub] = ACTIONS(851), + [anon_sym_index] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_isarray] = ACTIONS(851), + [anon_sym_length] = ACTIONS(851), + [anon_sym_log] = ACTIONS(851), + [anon_sym_lshift] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_mktime] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_patsplit] = ACTIONS(851), + [anon_sym_rand] = ACTIONS(851), + [anon_sym_rshift] = ACTIONS(851), + [anon_sym_sin] = ACTIONS(851), + [anon_sym_split] = ACTIONS(851), + [anon_sym_sprintf] = ACTIONS(851), + [anon_sym_sqrt] = ACTIONS(851), + [anon_sym_srand] = ACTIONS(851), + [anon_sym_strftime] = ACTIONS(851), + [anon_sym_strtonum] = ACTIONS(851), + [anon_sym_sub] = ACTIONS(851), + [anon_sym_substr] = ACTIONS(851), + [anon_sym_systime] = ACTIONS(851), + [anon_sym_tolower] = ACTIONS(851), + [anon_sym_toupper] = ACTIONS(851), + [anon_sym_typeof] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(851), + }, + [485] = { + [ts_builtin_sym_end] = ACTIONS(771), + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_BEGIN] = ACTIONS(769), + [anon_sym_END] = ACTIONS(769), + [anon_sym_BEGINFILE] = ACTIONS(769), + [anon_sym_ENDFILE] = ACTIONS(769), + [anon_sym_ATinclude] = ACTIONS(771), + [anon_sym_ATload] = ACTIONS(771), + [anon_sym_ATnamespace] = ACTIONS(771), + [anon_sym_LPAREN] = ACTIONS(771), + [anon_sym_in] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_QMARK] = ACTIONS(771), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_BANG_TILDE] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_PLUS_EQ] = ACTIONS(771), + [anon_sym_DASH_EQ] = ACTIONS(771), + [anon_sym_STAR_EQ] = ACTIONS(771), + [anon_sym_SLASH_EQ] = ACTIONS(771), + [anon_sym_PERCENT_EQ] = ACTIONS(771), + [anon_sym_CARET_EQ] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_function] = ACTIONS(769), + [anon_sym_func] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(771), + [sym_concatenating_space] = ACTIONS(771), + }, + [486] = { + [sym_identifier] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_CR_LF] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(835), + [anon_sym_for] = ACTIONS(835), + [anon_sym_in] = ACTIONS(835), + [sym_break_statement] = ACTIONS(835), + [sym_continue_statement] = ACTIONS(835), + [anon_sym_delete] = ACTIONS(835), + [anon_sym_exit] = ACTIONS(835), + [anon_sym_return] = ACTIONS(835), + [anon_sym_switch] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_getline] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [sym_next_statement] = ACTIONS(835), + [sym_nextfile_statement] = ACTIONS(835), + [anon_sym_print] = ACTIONS(835), + [anon_sym_printf] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PIPE_AMP] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(835), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(835), + [anon_sym_BANG_TILDE] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(835), + [anon_sym_DASH_DASH] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(835), + [aux_sym_number_token1] = ACTIONS(835), + [aux_sym_number_token2] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(835), + [anon_sym_and] = ACTIONS(835), + [anon_sym_asort] = ACTIONS(835), + [anon_sym_asorti] = ACTIONS(835), + [anon_sym_bindtextdomain] = ACTIONS(835), + [anon_sym_compl] = ACTIONS(835), + [anon_sym_cos] = ACTIONS(835), + [anon_sym_dcgettext] = ACTIONS(835), + [anon_sym_dcngettext] = ACTIONS(835), + [anon_sym_exp] = ACTIONS(835), + [anon_sym_gensub] = ACTIONS(835), + [anon_sym_gsub] = ACTIONS(835), + [anon_sym_index] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_isarray] = ACTIONS(835), + [anon_sym_length] = ACTIONS(835), + [anon_sym_log] = ACTIONS(835), + [anon_sym_lshift] = ACTIONS(835), + [anon_sym_match] = ACTIONS(835), + [anon_sym_mktime] = ACTIONS(835), + [anon_sym_or] = ACTIONS(835), + [anon_sym_patsplit] = ACTIONS(835), + [anon_sym_rand] = ACTIONS(835), + [anon_sym_rshift] = ACTIONS(835), + [anon_sym_sin] = ACTIONS(835), + [anon_sym_split] = ACTIONS(835), + [anon_sym_sprintf] = ACTIONS(835), + [anon_sym_sqrt] = ACTIONS(835), + [anon_sym_srand] = ACTIONS(835), + [anon_sym_strftime] = ACTIONS(835), + [anon_sym_strtonum] = ACTIONS(835), + [anon_sym_sub] = ACTIONS(835), + [anon_sym_substr] = ACTIONS(835), + [anon_sym_systime] = ACTIONS(835), + [anon_sym_tolower] = ACTIONS(835), + [anon_sym_toupper] = ACTIONS(835), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(835), + [anon_sym_POUND] = ACTIONS(835), + }, + [487] = { + [sym_identifier] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_CR_LF] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [sym_break_statement] = ACTIONS(935), + [sym_continue_statement] = ACTIONS(935), + [anon_sym_delete] = ACTIONS(935), + [anon_sym_exit] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_switch] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_getline] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [sym_next_statement] = ACTIONS(935), + [sym_nextfile_statement] = ACTIONS(935), + [anon_sym_print] = ACTIONS(935), + [anon_sym_printf] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PIPE_AMP] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [aux_sym_number_token1] = ACTIONS(935), + [aux_sym_number_token2] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_asort] = ACTIONS(935), + [anon_sym_asorti] = ACTIONS(935), + [anon_sym_bindtextdomain] = ACTIONS(935), + [anon_sym_compl] = ACTIONS(935), + [anon_sym_cos] = ACTIONS(935), + [anon_sym_dcgettext] = ACTIONS(935), + [anon_sym_dcngettext] = ACTIONS(935), + [anon_sym_exp] = ACTIONS(935), + [anon_sym_gensub] = ACTIONS(935), + [anon_sym_gsub] = ACTIONS(935), + [anon_sym_index] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_isarray] = ACTIONS(935), + [anon_sym_length] = ACTIONS(935), + [anon_sym_log] = ACTIONS(935), + [anon_sym_lshift] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mktime] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_patsplit] = ACTIONS(935), + [anon_sym_rand] = ACTIONS(935), + [anon_sym_rshift] = ACTIONS(935), + [anon_sym_sin] = ACTIONS(935), + [anon_sym_split] = ACTIONS(935), + [anon_sym_sprintf] = ACTIONS(935), + [anon_sym_sqrt] = ACTIONS(935), + [anon_sym_srand] = ACTIONS(935), + [anon_sym_strftime] = ACTIONS(935), + [anon_sym_strtonum] = ACTIONS(935), + [anon_sym_sub] = ACTIONS(935), + [anon_sym_substr] = ACTIONS(935), + [anon_sym_systime] = ACTIONS(935), + [anon_sym_tolower] = ACTIONS(935), + [anon_sym_toupper] = ACTIONS(935), + [anon_sym_typeof] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + }, + [488] = { + [ts_builtin_sym_end] = ACTIONS(799), + [sym_identifier] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(799), + [anon_sym_BEGIN] = ACTIONS(795), + [anon_sym_END] = ACTIONS(795), + [anon_sym_BEGINFILE] = ACTIONS(795), + [anon_sym_ENDFILE] = ACTIONS(795), + [anon_sym_ATinclude] = ACTIONS(799), + [anon_sym_ATload] = ACTIONS(799), + [anon_sym_ATnamespace] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_in] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_getline] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_PIPE_AMP] = ACTIONS(799), + [anon_sym_QMARK] = ACTIONS(799), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_STAR_STAR] = ACTIONS(799), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_PERCENT] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(799), + [anon_sym_GT_EQ] = ACTIONS(799), + [anon_sym_EQ_EQ] = ACTIONS(799), + [anon_sym_BANG_EQ] = ACTIONS(799), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_BANG_TILDE] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(799), + [anon_sym_DASH_DASH] = ACTIONS(799), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(799), + [sym_regex_flags] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(795), + [aux_sym_number_token1] = ACTIONS(795), + [aux_sym_number_token2] = ACTIONS(799), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_function] = ACTIONS(795), + [anon_sym_func] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_asort] = ACTIONS(795), + [anon_sym_asorti] = ACTIONS(795), + [anon_sym_bindtextdomain] = ACTIONS(795), + [anon_sym_compl] = ACTIONS(795), + [anon_sym_cos] = ACTIONS(795), + [anon_sym_dcgettext] = ACTIONS(795), + [anon_sym_dcngettext] = ACTIONS(795), + [anon_sym_exp] = ACTIONS(795), + [anon_sym_gensub] = ACTIONS(795), + [anon_sym_gsub] = ACTIONS(795), + [anon_sym_index] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_isarray] = ACTIONS(795), + [anon_sym_length] = ACTIONS(795), + [anon_sym_log] = ACTIONS(795), + [anon_sym_lshift] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_mktime] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_patsplit] = ACTIONS(795), + [anon_sym_rand] = ACTIONS(795), + [anon_sym_rshift] = ACTIONS(795), + [anon_sym_sin] = ACTIONS(795), + [anon_sym_split] = ACTIONS(795), + [anon_sym_sprintf] = ACTIONS(795), + [anon_sym_sqrt] = ACTIONS(795), + [anon_sym_srand] = ACTIONS(795), + [anon_sym_strftime] = ACTIONS(795), + [anon_sym_strtonum] = ACTIONS(795), + [anon_sym_sub] = ACTIONS(795), + [anon_sym_substr] = ACTIONS(795), + [anon_sym_systime] = ACTIONS(795), + [anon_sym_tolower] = ACTIONS(795), + [anon_sym_toupper] = ACTIONS(795), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(799), + [sym_concatenating_space] = ACTIONS(799), + }, + [489] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_BEGIN] = ACTIONS(765), + [anon_sym_END] = ACTIONS(765), + [anon_sym_BEGINFILE] = ACTIONS(765), + [anon_sym_ENDFILE] = ACTIONS(765), + [anon_sym_ATinclude] = ACTIONS(767), + [anon_sym_ATload] = ACTIONS(767), + [anon_sym_ATnamespace] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_in] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(767), + [anon_sym_DASH_EQ] = ACTIONS(767), + [anon_sym_STAR_EQ] = ACTIONS(767), + [anon_sym_SLASH_EQ] = ACTIONS(767), + [anon_sym_PERCENT_EQ] = ACTIONS(767), + [anon_sym_CARET_EQ] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_function] = ACTIONS(765), + [anon_sym_func] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + [sym_concatenating_space] = ACTIONS(767), + }, + [490] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_STAR_EQ] = ACTIONS(1089), + [anon_sym_SLASH_EQ] = ACTIONS(1089), + [anon_sym_PERCENT_EQ] = ACTIONS(1089), + [anon_sym_CARET_EQ] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(1093), + }, + [491] = { + [ts_builtin_sym_end] = ACTIONS(793), + [sym_identifier] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_BEGIN] = ACTIONS(789), + [anon_sym_END] = ACTIONS(789), + [anon_sym_BEGINFILE] = ACTIONS(789), + [anon_sym_ENDFILE] = ACTIONS(789), + [anon_sym_ATinclude] = ACTIONS(793), + [anon_sym_ATload] = ACTIONS(793), + [anon_sym_ATnamespace] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_in] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_getline] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_PIPE_AMP] = ACTIONS(793), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_PERCENT] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_DASH_EQ] = ACTIONS(793), + [anon_sym_STAR_EQ] = ACTIONS(793), + [anon_sym_SLASH_EQ] = ACTIONS(793), + [anon_sym_PERCENT_EQ] = ACTIONS(793), + [anon_sym_CARET_EQ] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(793), + [sym_regex_flags] = ACTIONS(1173), + [anon_sym_AT] = ACTIONS(789), + [aux_sym_number_token1] = ACTIONS(789), + [aux_sym_number_token2] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(793), + [anon_sym_function] = ACTIONS(789), + [anon_sym_func] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_asort] = ACTIONS(789), + [anon_sym_asorti] = ACTIONS(789), + [anon_sym_bindtextdomain] = ACTIONS(789), + [anon_sym_compl] = ACTIONS(789), + [anon_sym_cos] = ACTIONS(789), + [anon_sym_dcgettext] = ACTIONS(789), + [anon_sym_dcngettext] = ACTIONS(789), + [anon_sym_exp] = ACTIONS(789), + [anon_sym_gensub] = ACTIONS(789), + [anon_sym_gsub] = ACTIONS(789), + [anon_sym_index] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_isarray] = ACTIONS(789), + [anon_sym_length] = ACTIONS(789), + [anon_sym_log] = ACTIONS(789), + [anon_sym_lshift] = ACTIONS(789), + [anon_sym_match] = ACTIONS(789), + [anon_sym_mktime] = ACTIONS(789), + [anon_sym_or] = ACTIONS(789), + [anon_sym_patsplit] = ACTIONS(789), + [anon_sym_rand] = ACTIONS(789), + [anon_sym_rshift] = ACTIONS(789), + [anon_sym_sin] = ACTIONS(789), + [anon_sym_split] = ACTIONS(789), + [anon_sym_sprintf] = ACTIONS(789), + [anon_sym_sqrt] = ACTIONS(789), + [anon_sym_srand] = ACTIONS(789), + [anon_sym_strftime] = ACTIONS(789), + [anon_sym_strtonum] = ACTIONS(789), + [anon_sym_sub] = ACTIONS(789), + [anon_sym_substr] = ACTIONS(789), + [anon_sym_systime] = ACTIONS(789), + [anon_sym_tolower] = ACTIONS(789), + [anon_sym_toupper] = ACTIONS(789), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(793), + [sym_concatenating_space] = ACTIONS(793), + }, + [492] = { + [sym_identifier] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(877), + [anon_sym_CR_LF] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [sym_break_statement] = ACTIONS(877), + [sym_continue_statement] = ACTIONS(877), + [anon_sym_delete] = ACTIONS(877), + [anon_sym_exit] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_switch] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_getline] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [sym_next_statement] = ACTIONS(877), + [sym_nextfile_statement] = ACTIONS(877), + [anon_sym_print] = ACTIONS(877), + [anon_sym_printf] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_GT_GT] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_AT] = ACTIONS(877), + [aux_sym_number_token1] = ACTIONS(877), + [aux_sym_number_token2] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_asort] = ACTIONS(877), + [anon_sym_asorti] = ACTIONS(877), + [anon_sym_bindtextdomain] = ACTIONS(877), + [anon_sym_compl] = ACTIONS(877), + [anon_sym_cos] = ACTIONS(877), + [anon_sym_dcgettext] = ACTIONS(877), + [anon_sym_dcngettext] = ACTIONS(877), + [anon_sym_exp] = ACTIONS(877), + [anon_sym_gensub] = ACTIONS(877), + [anon_sym_gsub] = ACTIONS(877), + [anon_sym_index] = ACTIONS(877), + [anon_sym_int] = ACTIONS(877), + [anon_sym_isarray] = ACTIONS(877), + [anon_sym_length] = ACTIONS(877), + [anon_sym_log] = ACTIONS(877), + [anon_sym_lshift] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mktime] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_patsplit] = ACTIONS(877), + [anon_sym_rand] = ACTIONS(877), + [anon_sym_rshift] = ACTIONS(877), + [anon_sym_sin] = ACTIONS(877), + [anon_sym_split] = ACTIONS(877), + [anon_sym_sprintf] = ACTIONS(877), + [anon_sym_sqrt] = ACTIONS(877), + [anon_sym_srand] = ACTIONS(877), + [anon_sym_strftime] = ACTIONS(877), + [anon_sym_strtonum] = ACTIONS(877), + [anon_sym_sub] = ACTIONS(877), + [anon_sym_substr] = ACTIONS(877), + [anon_sym_systime] = ACTIONS(877), + [anon_sym_tolower] = ACTIONS(877), + [anon_sym_toupper] = ACTIONS(877), + [anon_sym_typeof] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + }, + [493] = { + [sym_identifier] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_CR_LF] = ACTIONS(831), + [anon_sym_if] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_while] = ACTIONS(831), + [anon_sym_do] = ACTIONS(831), + [anon_sym_for] = ACTIONS(831), + [anon_sym_in] = ACTIONS(831), + [sym_break_statement] = ACTIONS(831), + [sym_continue_statement] = ACTIONS(831), + [anon_sym_delete] = ACTIONS(831), + [anon_sym_exit] = ACTIONS(831), + [anon_sym_return] = ACTIONS(831), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_getline] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(831), + [sym_next_statement] = ACTIONS(831), + [sym_nextfile_statement] = ACTIONS(831), + [anon_sym_print] = ACTIONS(831), + [anon_sym_printf] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_GT_GT] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_PIPE_AMP] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym_STAR_STAR] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LT_EQ] = ACTIONS(831), + [anon_sym_GT_EQ] = ACTIONS(831), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_BANG_EQ] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_BANG_TILDE] = ACTIONS(831), + [anon_sym_AMP_AMP] = ACTIONS(831), + [anon_sym_PIPE_PIPE] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_PLUS_PLUS] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [aux_sym_number_token1] = ACTIONS(831), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_and] = ACTIONS(831), + [anon_sym_asort] = ACTIONS(831), + [anon_sym_asorti] = ACTIONS(831), + [anon_sym_bindtextdomain] = ACTIONS(831), + [anon_sym_compl] = ACTIONS(831), + [anon_sym_cos] = ACTIONS(831), + [anon_sym_dcgettext] = ACTIONS(831), + [anon_sym_dcngettext] = ACTIONS(831), + [anon_sym_exp] = ACTIONS(831), + [anon_sym_gensub] = ACTIONS(831), + [anon_sym_gsub] = ACTIONS(831), + [anon_sym_index] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_isarray] = ACTIONS(831), + [anon_sym_length] = ACTIONS(831), + [anon_sym_log] = ACTIONS(831), + [anon_sym_lshift] = ACTIONS(831), + [anon_sym_match] = ACTIONS(831), + [anon_sym_mktime] = ACTIONS(831), + [anon_sym_or] = ACTIONS(831), + [anon_sym_patsplit] = ACTIONS(831), + [anon_sym_rand] = ACTIONS(831), + [anon_sym_rshift] = ACTIONS(831), + [anon_sym_sin] = ACTIONS(831), + [anon_sym_split] = ACTIONS(831), + [anon_sym_sprintf] = ACTIONS(831), + [anon_sym_sqrt] = ACTIONS(831), + [anon_sym_srand] = ACTIONS(831), + [anon_sym_strftime] = ACTIONS(831), + [anon_sym_strtonum] = ACTIONS(831), + [anon_sym_sub] = ACTIONS(831), + [anon_sym_substr] = ACTIONS(831), + [anon_sym_systime] = ACTIONS(831), + [anon_sym_tolower] = ACTIONS(831), + [anon_sym_toupper] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + }, + [494] = { + [sym__getline_exp] = STATE(1760), + [sym_getline_input] = STATE(1760), + [sym_getline_file] = STATE(1760), + [sym__print_args] = STATE(807), + [sym__exp] = STATE(1760), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1760), + [sym_assignment_exp] = STATE(1760), + [sym_piped_io_exp] = STATE(1760), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_exp_list] = STATE(807), + [sym_regex] = STATE(1760), + [sym_regex_constant] = STATE(1760), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1760), + [aux_sym_exp_list_repeat1] = STATE(774), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(679), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_CR_LF] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(679), + [anon_sym_case] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_LPAREN2] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [anon_sym_AT] = ACTIONS(173), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(177), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(679), + }, + [495] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(719), + [anon_sym_DASH_EQ] = ACTIONS(719), + [anon_sym_STAR_EQ] = ACTIONS(719), + [anon_sym_SLASH_EQ] = ACTIONS(719), + [anon_sym_PERCENT_EQ] = ACTIONS(719), + [anon_sym_CARET_EQ] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + }, + [496] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_BEGIN] = ACTIONS(935), + [anon_sym_END] = ACTIONS(935), + [anon_sym_BEGINFILE] = ACTIONS(935), + [anon_sym_ENDFILE] = ACTIONS(935), + [anon_sym_ATinclude] = ACTIONS(937), + [anon_sym_ATload] = ACTIONS(937), + [anon_sym_ATnamespace] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_in] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_getline] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PIPE_AMP] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_BANG_TILDE] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(935), + [aux_sym_number_token1] = ACTIONS(935), + [aux_sym_number_token2] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_function] = ACTIONS(935), + [anon_sym_func] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_asort] = ACTIONS(935), + [anon_sym_asorti] = ACTIONS(935), + [anon_sym_bindtextdomain] = ACTIONS(935), + [anon_sym_compl] = ACTIONS(935), + [anon_sym_cos] = ACTIONS(935), + [anon_sym_dcgettext] = ACTIONS(935), + [anon_sym_dcngettext] = ACTIONS(935), + [anon_sym_exp] = ACTIONS(935), + [anon_sym_gensub] = ACTIONS(935), + [anon_sym_gsub] = ACTIONS(935), + [anon_sym_index] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_isarray] = ACTIONS(935), + [anon_sym_length] = ACTIONS(935), + [anon_sym_log] = ACTIONS(935), + [anon_sym_lshift] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mktime] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_patsplit] = ACTIONS(935), + [anon_sym_rand] = ACTIONS(935), + [anon_sym_rshift] = ACTIONS(935), + [anon_sym_sin] = ACTIONS(935), + [anon_sym_split] = ACTIONS(935), + [anon_sym_sprintf] = ACTIONS(935), + [anon_sym_sqrt] = ACTIONS(935), + [anon_sym_srand] = ACTIONS(935), + [anon_sym_strftime] = ACTIONS(935), + [anon_sym_strtonum] = ACTIONS(935), + [anon_sym_sub] = ACTIONS(935), + [anon_sym_substr] = ACTIONS(935), + [anon_sym_systime] = ACTIONS(935), + [anon_sym_tolower] = ACTIONS(935), + [anon_sym_toupper] = ACTIONS(935), + [anon_sym_typeof] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(937), + [sym_concatenating_space] = ACTIONS(937), + }, + [497] = { + [ts_builtin_sym_end] = ACTIONS(879), + [sym_identifier] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(879), + [anon_sym_BEGIN] = ACTIONS(877), + [anon_sym_END] = ACTIONS(877), + [anon_sym_BEGINFILE] = ACTIONS(877), + [anon_sym_ENDFILE] = ACTIONS(877), + [anon_sym_ATinclude] = ACTIONS(879), + [anon_sym_ATload] = ACTIONS(879), + [anon_sym_ATnamespace] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_getline] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(879), + [anon_sym_QMARK] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_TILDE] = ACTIONS(879), + [anon_sym_BANG_TILDE] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(879), + [anon_sym_PIPE_PIPE] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_PLUS_EQ] = ACTIONS(879), + [anon_sym_DASH_EQ] = ACTIONS(879), + [anon_sym_STAR_EQ] = ACTIONS(879), + [anon_sym_SLASH_EQ] = ACTIONS(879), + [anon_sym_PERCENT_EQ] = ACTIONS(879), + [anon_sym_CARET_EQ] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(877), + [aux_sym_number_token1] = ACTIONS(877), + [aux_sym_number_token2] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(879), + [anon_sym_function] = ACTIONS(877), + [anon_sym_func] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_asort] = ACTIONS(877), + [anon_sym_asorti] = ACTIONS(877), + [anon_sym_bindtextdomain] = ACTIONS(877), + [anon_sym_compl] = ACTIONS(877), + [anon_sym_cos] = ACTIONS(877), + [anon_sym_dcgettext] = ACTIONS(877), + [anon_sym_dcngettext] = ACTIONS(877), + [anon_sym_exp] = ACTIONS(877), + [anon_sym_gensub] = ACTIONS(877), + [anon_sym_gsub] = ACTIONS(877), + [anon_sym_index] = ACTIONS(877), + [anon_sym_int] = ACTIONS(877), + [anon_sym_isarray] = ACTIONS(877), + [anon_sym_length] = ACTIONS(877), + [anon_sym_log] = ACTIONS(877), + [anon_sym_lshift] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mktime] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_patsplit] = ACTIONS(877), + [anon_sym_rand] = ACTIONS(877), + [anon_sym_rshift] = ACTIONS(877), + [anon_sym_sin] = ACTIONS(877), + [anon_sym_split] = ACTIONS(877), + [anon_sym_sprintf] = ACTIONS(877), + [anon_sym_sqrt] = ACTIONS(877), + [anon_sym_srand] = ACTIONS(877), + [anon_sym_strftime] = ACTIONS(877), + [anon_sym_strtonum] = ACTIONS(877), + [anon_sym_sub] = ACTIONS(877), + [anon_sym_substr] = ACTIONS(877), + [anon_sym_systime] = ACTIONS(877), + [anon_sym_tolower] = ACTIONS(877), + [anon_sym_toupper] = ACTIONS(877), + [anon_sym_typeof] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(879), + [sym_concatenating_space] = ACTIONS(879), + }, + [498] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_STAR_EQ] = ACTIONS(1089), + [anon_sym_SLASH_EQ] = ACTIONS(1089), + [anon_sym_PERCENT_EQ] = ACTIONS(1089), + [anon_sym_CARET_EQ] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(1093), + }, + [499] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1119), + [anon_sym_PLUS_EQ] = ACTIONS(1121), + [anon_sym_DASH_EQ] = ACTIONS(1121), + [anon_sym_STAR_EQ] = ACTIONS(1121), + [anon_sym_SLASH_EQ] = ACTIONS(1121), + [anon_sym_PERCENT_EQ] = ACTIONS(1121), + [anon_sym_CARET_EQ] = ACTIONS(1121), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(733), + }, + [500] = { + [ts_builtin_sym_end] = ACTIONS(845), + [sym_identifier] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(845), + [anon_sym_BEGIN] = ACTIONS(843), + [anon_sym_END] = ACTIONS(843), + [anon_sym_BEGINFILE] = ACTIONS(843), + [anon_sym_ENDFILE] = ACTIONS(843), + [anon_sym_ATinclude] = ACTIONS(845), + [anon_sym_ATload] = ACTIONS(845), + [anon_sym_ATnamespace] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_in] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_getline] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym_STAR_STAR] = ACTIONS(845), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(845), + [anon_sym_BANG_TILDE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_PLUS_PLUS] = ACTIONS(845), + [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_PLUS_EQ] = ACTIONS(845), + [anon_sym_DASH_EQ] = ACTIONS(845), + [anon_sym_STAR_EQ] = ACTIONS(845), + [anon_sym_SLASH_EQ] = ACTIONS(845), + [anon_sym_PERCENT_EQ] = ACTIONS(845), + [anon_sym_CARET_EQ] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_AT] = ACTIONS(843), + [aux_sym_number_token1] = ACTIONS(843), + [aux_sym_number_token2] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_function] = ACTIONS(843), + [anon_sym_func] = ACTIONS(843), + [anon_sym_and] = ACTIONS(843), + [anon_sym_asort] = ACTIONS(843), + [anon_sym_asorti] = ACTIONS(843), + [anon_sym_bindtextdomain] = ACTIONS(843), + [anon_sym_compl] = ACTIONS(843), + [anon_sym_cos] = ACTIONS(843), + [anon_sym_dcgettext] = ACTIONS(843), + [anon_sym_dcngettext] = ACTIONS(843), + [anon_sym_exp] = ACTIONS(843), + [anon_sym_gensub] = ACTIONS(843), + [anon_sym_gsub] = ACTIONS(843), + [anon_sym_index] = ACTIONS(843), + [anon_sym_int] = ACTIONS(843), + [anon_sym_isarray] = ACTIONS(843), + [anon_sym_length] = ACTIONS(843), + [anon_sym_log] = ACTIONS(843), + [anon_sym_lshift] = ACTIONS(843), + [anon_sym_match] = ACTIONS(843), + [anon_sym_mktime] = ACTIONS(843), + [anon_sym_or] = ACTIONS(843), + [anon_sym_patsplit] = ACTIONS(843), + [anon_sym_rand] = ACTIONS(843), + [anon_sym_rshift] = ACTIONS(843), + [anon_sym_sin] = ACTIONS(843), + [anon_sym_split] = ACTIONS(843), + [anon_sym_sprintf] = ACTIONS(843), + [anon_sym_sqrt] = ACTIONS(843), + [anon_sym_srand] = ACTIONS(843), + [anon_sym_strftime] = ACTIONS(843), + [anon_sym_strtonum] = ACTIONS(843), + [anon_sym_sub] = ACTIONS(843), + [anon_sym_substr] = ACTIONS(843), + [anon_sym_systime] = ACTIONS(843), + [anon_sym_tolower] = ACTIONS(843), + [anon_sym_toupper] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(843), + [anon_sym_xor] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(845), + [sym_concatenating_space] = ACTIONS(845), + }, + [501] = { + [ts_builtin_sym_end] = ACTIONS(849), + [sym_identifier] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_BEGIN] = ACTIONS(847), + [anon_sym_END] = ACTIONS(847), + [anon_sym_BEGINFILE] = ACTIONS(847), + [anon_sym_ENDFILE] = ACTIONS(847), + [anon_sym_ATinclude] = ACTIONS(849), + [anon_sym_ATload] = ACTIONS(849), + [anon_sym_ATnamespace] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_in] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_getline] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(849), + [anon_sym_CARET] = ACTIONS(847), + [anon_sym_STAR_STAR] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(847), + [anon_sym_PERCENT] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_BANG_TILDE] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(849), + [anon_sym_DASH_EQ] = ACTIONS(849), + [anon_sym_STAR_EQ] = ACTIONS(849), + [anon_sym_SLASH_EQ] = ACTIONS(849), + [anon_sym_PERCENT_EQ] = ACTIONS(849), + [anon_sym_CARET_EQ] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(847), + [aux_sym_number_token1] = ACTIONS(847), + [aux_sym_number_token2] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_function] = ACTIONS(847), + [anon_sym_func] = ACTIONS(847), + [anon_sym_and] = ACTIONS(847), + [anon_sym_asort] = ACTIONS(847), + [anon_sym_asorti] = ACTIONS(847), + [anon_sym_bindtextdomain] = ACTIONS(847), + [anon_sym_compl] = ACTIONS(847), + [anon_sym_cos] = ACTIONS(847), + [anon_sym_dcgettext] = ACTIONS(847), + [anon_sym_dcngettext] = ACTIONS(847), + [anon_sym_exp] = ACTIONS(847), + [anon_sym_gensub] = ACTIONS(847), + [anon_sym_gsub] = ACTIONS(847), + [anon_sym_index] = ACTIONS(847), + [anon_sym_int] = ACTIONS(847), + [anon_sym_isarray] = ACTIONS(847), + [anon_sym_length] = ACTIONS(847), + [anon_sym_log] = ACTIONS(847), + [anon_sym_lshift] = ACTIONS(847), + [anon_sym_match] = ACTIONS(847), + [anon_sym_mktime] = ACTIONS(847), + [anon_sym_or] = ACTIONS(847), + [anon_sym_patsplit] = ACTIONS(847), + [anon_sym_rand] = ACTIONS(847), + [anon_sym_rshift] = ACTIONS(847), + [anon_sym_sin] = ACTIONS(847), + [anon_sym_split] = ACTIONS(847), + [anon_sym_sprintf] = ACTIONS(847), + [anon_sym_sqrt] = ACTIONS(847), + [anon_sym_srand] = ACTIONS(847), + [anon_sym_strftime] = ACTIONS(847), + [anon_sym_strtonum] = ACTIONS(847), + [anon_sym_sub] = ACTIONS(847), + [anon_sym_substr] = ACTIONS(847), + [anon_sym_systime] = ACTIONS(847), + [anon_sym_tolower] = ACTIONS(847), + [anon_sym_toupper] = ACTIONS(847), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_xor] = ACTIONS(847), + [anon_sym_POUND] = ACTIONS(849), + [sym_concatenating_space] = ACTIONS(849), + }, + [502] = { + [ts_builtin_sym_end] = ACTIONS(833), + [sym_identifier] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(833), + [anon_sym_BEGIN] = ACTIONS(831), + [anon_sym_END] = ACTIONS(831), + [anon_sym_BEGINFILE] = ACTIONS(831), + [anon_sym_ENDFILE] = ACTIONS(831), + [anon_sym_ATinclude] = ACTIONS(833), + [anon_sym_ATload] = ACTIONS(833), + [anon_sym_ATnamespace] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_in] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_getline] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_PIPE_AMP] = ACTIONS(833), + [anon_sym_QMARK] = ACTIONS(833), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym_STAR_STAR] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [anon_sym_AMP_AMP] = ACTIONS(833), + [anon_sym_PIPE_PIPE] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_PLUS_EQ] = ACTIONS(833), + [anon_sym_DASH_EQ] = ACTIONS(833), + [anon_sym_STAR_EQ] = ACTIONS(833), + [anon_sym_SLASH_EQ] = ACTIONS(833), + [anon_sym_PERCENT_EQ] = ACTIONS(833), + [anon_sym_CARET_EQ] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_AT] = ACTIONS(831), + [aux_sym_number_token1] = ACTIONS(831), + [aux_sym_number_token2] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_function] = ACTIONS(831), + [anon_sym_func] = ACTIONS(831), + [anon_sym_and] = ACTIONS(831), + [anon_sym_asort] = ACTIONS(831), + [anon_sym_asorti] = ACTIONS(831), + [anon_sym_bindtextdomain] = ACTIONS(831), + [anon_sym_compl] = ACTIONS(831), + [anon_sym_cos] = ACTIONS(831), + [anon_sym_dcgettext] = ACTIONS(831), + [anon_sym_dcngettext] = ACTIONS(831), + [anon_sym_exp] = ACTIONS(831), + [anon_sym_gensub] = ACTIONS(831), + [anon_sym_gsub] = ACTIONS(831), + [anon_sym_index] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_isarray] = ACTIONS(831), + [anon_sym_length] = ACTIONS(831), + [anon_sym_log] = ACTIONS(831), + [anon_sym_lshift] = ACTIONS(831), + [anon_sym_match] = ACTIONS(831), + [anon_sym_mktime] = ACTIONS(831), + [anon_sym_or] = ACTIONS(831), + [anon_sym_patsplit] = ACTIONS(831), + [anon_sym_rand] = ACTIONS(831), + [anon_sym_rshift] = ACTIONS(831), + [anon_sym_sin] = ACTIONS(831), + [anon_sym_split] = ACTIONS(831), + [anon_sym_sprintf] = ACTIONS(831), + [anon_sym_sqrt] = ACTIONS(831), + [anon_sym_srand] = ACTIONS(831), + [anon_sym_strftime] = ACTIONS(831), + [anon_sym_strtonum] = ACTIONS(831), + [anon_sym_sub] = ACTIONS(831), + [anon_sym_substr] = ACTIONS(831), + [anon_sym_systime] = ACTIONS(831), + [anon_sym_tolower] = ACTIONS(831), + [anon_sym_toupper] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(833), + [sym_concatenating_space] = ACTIONS(833), + }, + [503] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(1103), + [anon_sym_DASH_EQ] = ACTIONS(1103), + [anon_sym_STAR_EQ] = ACTIONS(1103), + [anon_sym_SLASH_EQ] = ACTIONS(1103), + [anon_sym_PERCENT_EQ] = ACTIONS(1103), + [anon_sym_CARET_EQ] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + }, + [504] = { + [sym_identifier] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LF] = ACTIONS(1175), + [anon_sym_CR_LF] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(1175), + [sym_continue_statement] = ACTIONS(1175), + [anon_sym_delete] = ACTIONS(1175), + [anon_sym_exit] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_getline] = ACTIONS(1175), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(1175), + [sym_nextfile_statement] = ACTIONS(1175), + [anon_sym_print] = ACTIONS(1175), + [anon_sym_printf] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_PIPE_AMP] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(1175), + [aux_sym_number_token1] = ACTIONS(1175), + [aux_sym_number_token2] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_asort] = ACTIONS(1175), + [anon_sym_asorti] = ACTIONS(1175), + [anon_sym_bindtextdomain] = ACTIONS(1175), + [anon_sym_compl] = ACTIONS(1175), + [anon_sym_cos] = ACTIONS(1175), + [anon_sym_dcgettext] = ACTIONS(1175), + [anon_sym_dcngettext] = ACTIONS(1175), + [anon_sym_exp] = ACTIONS(1175), + [anon_sym_gensub] = ACTIONS(1175), + [anon_sym_gsub] = ACTIONS(1175), + [anon_sym_index] = ACTIONS(1175), + [anon_sym_int] = ACTIONS(1175), + [anon_sym_isarray] = ACTIONS(1175), + [anon_sym_length] = ACTIONS(1175), + [anon_sym_log] = ACTIONS(1175), + [anon_sym_lshift] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(1175), + [anon_sym_mktime] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [anon_sym_patsplit] = ACTIONS(1175), + [anon_sym_rand] = ACTIONS(1175), + [anon_sym_rshift] = ACTIONS(1175), + [anon_sym_sin] = ACTIONS(1175), + [anon_sym_split] = ACTIONS(1175), + [anon_sym_sprintf] = ACTIONS(1175), + [anon_sym_sqrt] = ACTIONS(1175), + [anon_sym_srand] = ACTIONS(1175), + [anon_sym_strftime] = ACTIONS(1175), + [anon_sym_strtonum] = ACTIONS(1175), + [anon_sym_sub] = ACTIONS(1175), + [anon_sym_substr] = ACTIONS(1175), + [anon_sym_systime] = ACTIONS(1175), + [anon_sym_tolower] = ACTIONS(1175), + [anon_sym_toupper] = ACTIONS(1175), + [anon_sym_typeof] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_POUND] = ACTIONS(1175), + [sym__if_else_separator] = ACTIONS(1177), + }, + [505] = { + [sym_identifier] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_CR_LF] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(1179), + [sym_continue_statement] = ACTIONS(1179), + [anon_sym_delete] = ACTIONS(1179), + [anon_sym_exit] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_getline] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(1179), + [sym_nextfile_statement] = ACTIONS(1179), + [anon_sym_print] = ACTIONS(1179), + [anon_sym_printf] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_PIPE_AMP] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_AT] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(1179), + [aux_sym_number_token2] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_asort] = ACTIONS(1179), + [anon_sym_asorti] = ACTIONS(1179), + [anon_sym_bindtextdomain] = ACTIONS(1179), + [anon_sym_compl] = ACTIONS(1179), + [anon_sym_cos] = ACTIONS(1179), + [anon_sym_dcgettext] = ACTIONS(1179), + [anon_sym_dcngettext] = ACTIONS(1179), + [anon_sym_exp] = ACTIONS(1179), + [anon_sym_gensub] = ACTIONS(1179), + [anon_sym_gsub] = ACTIONS(1179), + [anon_sym_index] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_isarray] = ACTIONS(1179), + [anon_sym_length] = ACTIONS(1179), + [anon_sym_log] = ACTIONS(1179), + [anon_sym_lshift] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_mktime] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_patsplit] = ACTIONS(1179), + [anon_sym_rand] = ACTIONS(1179), + [anon_sym_rshift] = ACTIONS(1179), + [anon_sym_sin] = ACTIONS(1179), + [anon_sym_split] = ACTIONS(1179), + [anon_sym_sprintf] = ACTIONS(1179), + [anon_sym_sqrt] = ACTIONS(1179), + [anon_sym_srand] = ACTIONS(1179), + [anon_sym_strftime] = ACTIONS(1179), + [anon_sym_strtonum] = ACTIONS(1179), + [anon_sym_sub] = ACTIONS(1179), + [anon_sym_substr] = ACTIONS(1179), + [anon_sym_systime] = ACTIONS(1179), + [anon_sym_tolower] = ACTIONS(1179), + [anon_sym_toupper] = ACTIONS(1179), + [anon_sym_typeof] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(1179), + [sym__if_else_separator] = ACTIONS(1181), + }, + [506] = { + [ts_builtin_sym_end] = ACTIONS(869), + [sym_identifier] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_BEGIN] = ACTIONS(867), + [anon_sym_END] = ACTIONS(867), + [anon_sym_BEGINFILE] = ACTIONS(867), + [anon_sym_ENDFILE] = ACTIONS(867), + [anon_sym_ATinclude] = ACTIONS(869), + [anon_sym_ATload] = ACTIONS(869), + [anon_sym_ATnamespace] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_in] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_getline] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_PIPE_AMP] = ACTIONS(869), + [anon_sym_QMARK] = ACTIONS(869), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_STAR_STAR] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_TILDE] = ACTIONS(869), + [anon_sym_BANG_TILDE] = ACTIONS(869), + [anon_sym_AMP_AMP] = ACTIONS(869), + [anon_sym_PIPE_PIPE] = ACTIONS(869), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_PLUS_EQ] = ACTIONS(869), + [anon_sym_DASH_EQ] = ACTIONS(869), + [anon_sym_STAR_EQ] = ACTIONS(869), + [anon_sym_SLASH_EQ] = ACTIONS(869), + [anon_sym_PERCENT_EQ] = ACTIONS(869), + [anon_sym_CARET_EQ] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(869), + [anon_sym_AT] = ACTIONS(867), + [aux_sym_number_token1] = ACTIONS(867), + [aux_sym_number_token2] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_function] = ACTIONS(867), + [anon_sym_func] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_asort] = ACTIONS(867), + [anon_sym_asorti] = ACTIONS(867), + [anon_sym_bindtextdomain] = ACTIONS(867), + [anon_sym_compl] = ACTIONS(867), + [anon_sym_cos] = ACTIONS(867), + [anon_sym_dcgettext] = ACTIONS(867), + [anon_sym_dcngettext] = ACTIONS(867), + [anon_sym_exp] = ACTIONS(867), + [anon_sym_gensub] = ACTIONS(867), + [anon_sym_gsub] = ACTIONS(867), + [anon_sym_index] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_isarray] = ACTIONS(867), + [anon_sym_length] = ACTIONS(867), + [anon_sym_log] = ACTIONS(867), + [anon_sym_lshift] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mktime] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_patsplit] = ACTIONS(867), + [anon_sym_rand] = ACTIONS(867), + [anon_sym_rshift] = ACTIONS(867), + [anon_sym_sin] = ACTIONS(867), + [anon_sym_split] = ACTIONS(867), + [anon_sym_sprintf] = ACTIONS(867), + [anon_sym_sqrt] = ACTIONS(867), + [anon_sym_srand] = ACTIONS(867), + [anon_sym_strftime] = ACTIONS(867), + [anon_sym_strtonum] = ACTIONS(867), + [anon_sym_sub] = ACTIONS(867), + [anon_sym_substr] = ACTIONS(867), + [anon_sym_systime] = ACTIONS(867), + [anon_sym_tolower] = ACTIONS(867), + [anon_sym_toupper] = ACTIONS(867), + [anon_sym_typeof] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(869), + [sym_concatenating_space] = ACTIONS(869), + }, + [507] = { + [ts_builtin_sym_end] = ACTIONS(865), + [sym_identifier] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_BEGIN] = ACTIONS(863), + [anon_sym_END] = ACTIONS(863), + [anon_sym_BEGINFILE] = ACTIONS(863), + [anon_sym_ENDFILE] = ACTIONS(863), + [anon_sym_ATinclude] = ACTIONS(865), + [anon_sym_ATload] = ACTIONS(865), + [anon_sym_ATnamespace] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_in] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_getline] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(863), + [aux_sym_number_token1] = ACTIONS(863), + [aux_sym_number_token2] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_function] = ACTIONS(863), + [anon_sym_func] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_asort] = ACTIONS(863), + [anon_sym_asorti] = ACTIONS(863), + [anon_sym_bindtextdomain] = ACTIONS(863), + [anon_sym_compl] = ACTIONS(863), + [anon_sym_cos] = ACTIONS(863), + [anon_sym_dcgettext] = ACTIONS(863), + [anon_sym_dcngettext] = ACTIONS(863), + [anon_sym_exp] = ACTIONS(863), + [anon_sym_gensub] = ACTIONS(863), + [anon_sym_gsub] = ACTIONS(863), + [anon_sym_index] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_isarray] = ACTIONS(863), + [anon_sym_length] = ACTIONS(863), + [anon_sym_log] = ACTIONS(863), + [anon_sym_lshift] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mktime] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_patsplit] = ACTIONS(863), + [anon_sym_rand] = ACTIONS(863), + [anon_sym_rshift] = ACTIONS(863), + [anon_sym_sin] = ACTIONS(863), + [anon_sym_split] = ACTIONS(863), + [anon_sym_sprintf] = ACTIONS(863), + [anon_sym_sqrt] = ACTIONS(863), + [anon_sym_srand] = ACTIONS(863), + [anon_sym_strftime] = ACTIONS(863), + [anon_sym_strtonum] = ACTIONS(863), + [anon_sym_sub] = ACTIONS(863), + [anon_sym_substr] = ACTIONS(863), + [anon_sym_systime] = ACTIONS(863), + [anon_sym_tolower] = ACTIONS(863), + [anon_sym_toupper] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(865), + [sym_concatenating_space] = ACTIONS(865), + }, + [508] = { + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_BEGIN] = ACTIONS(859), + [anon_sym_END] = ACTIONS(859), + [anon_sym_BEGINFILE] = ACTIONS(859), + [anon_sym_ENDFILE] = ACTIONS(859), + [anon_sym_ATinclude] = ACTIONS(861), + [anon_sym_ATload] = ACTIONS(861), + [anon_sym_ATnamespace] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_in] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_getline] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_BANG_TILDE] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_PLUS_EQ] = ACTIONS(861), + [anon_sym_DASH_EQ] = ACTIONS(861), + [anon_sym_STAR_EQ] = ACTIONS(861), + [anon_sym_SLASH_EQ] = ACTIONS(861), + [anon_sym_PERCENT_EQ] = ACTIONS(861), + [anon_sym_CARET_EQ] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(859), + [aux_sym_number_token1] = ACTIONS(859), + [aux_sym_number_token2] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [anon_sym_function] = ACTIONS(859), + [anon_sym_func] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_asort] = ACTIONS(859), + [anon_sym_asorti] = ACTIONS(859), + [anon_sym_bindtextdomain] = ACTIONS(859), + [anon_sym_compl] = ACTIONS(859), + [anon_sym_cos] = ACTIONS(859), + [anon_sym_dcgettext] = ACTIONS(859), + [anon_sym_dcngettext] = ACTIONS(859), + [anon_sym_exp] = ACTIONS(859), + [anon_sym_gensub] = ACTIONS(859), + [anon_sym_gsub] = ACTIONS(859), + [anon_sym_index] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_isarray] = ACTIONS(859), + [anon_sym_length] = ACTIONS(859), + [anon_sym_log] = ACTIONS(859), + [anon_sym_lshift] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mktime] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_patsplit] = ACTIONS(859), + [anon_sym_rand] = ACTIONS(859), + [anon_sym_rshift] = ACTIONS(859), + [anon_sym_sin] = ACTIONS(859), + [anon_sym_split] = ACTIONS(859), + [anon_sym_sprintf] = ACTIONS(859), + [anon_sym_sqrt] = ACTIONS(859), + [anon_sym_srand] = ACTIONS(859), + [anon_sym_strftime] = ACTIONS(859), + [anon_sym_strtonum] = ACTIONS(859), + [anon_sym_sub] = ACTIONS(859), + [anon_sym_substr] = ACTIONS(859), + [anon_sym_systime] = ACTIONS(859), + [anon_sym_tolower] = ACTIONS(859), + [anon_sym_toupper] = ACTIONS(859), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(861), + [sym_concatenating_space] = ACTIONS(861), + }, + [509] = { + [ts_builtin_sym_end] = ACTIONS(883), + [sym_identifier] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_BEGIN] = ACTIONS(881), + [anon_sym_END] = ACTIONS(881), + [anon_sym_BEGINFILE] = ACTIONS(881), + [anon_sym_ENDFILE] = ACTIONS(881), + [anon_sym_ATinclude] = ACTIONS(883), + [anon_sym_ATload] = ACTIONS(883), + [anon_sym_ATnamespace] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_in] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_getline] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_PIPE_AMP] = ACTIONS(883), + [anon_sym_QMARK] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(881), + [anon_sym_STAR_STAR] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(881), + [anon_sym_PERCENT] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(883), + [anon_sym_GT_EQ] = ACTIONS(883), + [anon_sym_EQ_EQ] = ACTIONS(883), + [anon_sym_BANG_EQ] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(883), + [anon_sym_BANG_TILDE] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(883), + [anon_sym_PIPE_PIPE] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(883), + [anon_sym_EQ] = ACTIONS(881), + [anon_sym_PLUS_EQ] = ACTIONS(883), + [anon_sym_DASH_EQ] = ACTIONS(883), + [anon_sym_STAR_EQ] = ACTIONS(883), + [anon_sym_SLASH_EQ] = ACTIONS(883), + [anon_sym_PERCENT_EQ] = ACTIONS(883), + [anon_sym_CARET_EQ] = ACTIONS(883), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_AT] = ACTIONS(881), + [aux_sym_number_token1] = ACTIONS(881), + [aux_sym_number_token2] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(883), + [anon_sym_function] = ACTIONS(881), + [anon_sym_func] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_asort] = ACTIONS(881), + [anon_sym_asorti] = ACTIONS(881), + [anon_sym_bindtextdomain] = ACTIONS(881), + [anon_sym_compl] = ACTIONS(881), + [anon_sym_cos] = ACTIONS(881), + [anon_sym_dcgettext] = ACTIONS(881), + [anon_sym_dcngettext] = ACTIONS(881), + [anon_sym_exp] = ACTIONS(881), + [anon_sym_gensub] = ACTIONS(881), + [anon_sym_gsub] = ACTIONS(881), + [anon_sym_index] = ACTIONS(881), + [anon_sym_int] = ACTIONS(881), + [anon_sym_isarray] = ACTIONS(881), + [anon_sym_length] = ACTIONS(881), + [anon_sym_log] = ACTIONS(881), + [anon_sym_lshift] = ACTIONS(881), + [anon_sym_match] = ACTIONS(881), + [anon_sym_mktime] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_patsplit] = ACTIONS(881), + [anon_sym_rand] = ACTIONS(881), + [anon_sym_rshift] = ACTIONS(881), + [anon_sym_sin] = ACTIONS(881), + [anon_sym_split] = ACTIONS(881), + [anon_sym_sprintf] = ACTIONS(881), + [anon_sym_sqrt] = ACTIONS(881), + [anon_sym_srand] = ACTIONS(881), + [anon_sym_strftime] = ACTIONS(881), + [anon_sym_strtonum] = ACTIONS(881), + [anon_sym_sub] = ACTIONS(881), + [anon_sym_substr] = ACTIONS(881), + [anon_sym_systime] = ACTIONS(881), + [anon_sym_tolower] = ACTIONS(881), + [anon_sym_toupper] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(883), + [sym_concatenating_space] = ACTIONS(883), + }, + [510] = { + [ts_builtin_sym_end] = ACTIONS(875), + [sym_identifier] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_BEGIN] = ACTIONS(871), + [anon_sym_END] = ACTIONS(871), + [anon_sym_BEGINFILE] = ACTIONS(871), + [anon_sym_ENDFILE] = ACTIONS(871), + [anon_sym_ATinclude] = ACTIONS(875), + [anon_sym_ATload] = ACTIONS(875), + [anon_sym_ATnamespace] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_in] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_getline] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1187), + [anon_sym_PIPE_AMP] = ACTIONS(1189), + [anon_sym_QMARK] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_BANG_TILDE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(871), + [anon_sym_PLUS_EQ] = ACTIONS(875), + [anon_sym_DASH_EQ] = ACTIONS(875), + [anon_sym_STAR_EQ] = ACTIONS(875), + [anon_sym_SLASH_EQ] = ACTIONS(875), + [anon_sym_PERCENT_EQ] = ACTIONS(875), + [anon_sym_CARET_EQ] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(871), + [aux_sym_number_token2] = ACTIONS(875), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_function] = ACTIONS(871), + [anon_sym_func] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_asort] = ACTIONS(871), + [anon_sym_asorti] = ACTIONS(871), + [anon_sym_bindtextdomain] = ACTIONS(871), + [anon_sym_compl] = ACTIONS(871), + [anon_sym_cos] = ACTIONS(871), + [anon_sym_dcgettext] = ACTIONS(871), + [anon_sym_dcngettext] = ACTIONS(871), + [anon_sym_exp] = ACTIONS(871), + [anon_sym_gensub] = ACTIONS(871), + [anon_sym_gsub] = ACTIONS(871), + [anon_sym_index] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_isarray] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_log] = ACTIONS(871), + [anon_sym_lshift] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mktime] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_patsplit] = ACTIONS(871), + [anon_sym_rand] = ACTIONS(871), + [anon_sym_rshift] = ACTIONS(871), + [anon_sym_sin] = ACTIONS(871), + [anon_sym_split] = ACTIONS(871), + [anon_sym_sprintf] = ACTIONS(871), + [anon_sym_sqrt] = ACTIONS(871), + [anon_sym_srand] = ACTIONS(871), + [anon_sym_strftime] = ACTIONS(871), + [anon_sym_strtonum] = ACTIONS(871), + [anon_sym_sub] = ACTIONS(871), + [anon_sym_substr] = ACTIONS(871), + [anon_sym_systime] = ACTIONS(871), + [anon_sym_tolower] = ACTIONS(871), + [anon_sym_toupper] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_POUND] = ACTIONS(875), + [sym_concatenating_space] = ACTIONS(875), + }, + [511] = { + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_BEGIN] = ACTIONS(911), + [anon_sym_END] = ACTIONS(911), + [anon_sym_BEGINFILE] = ACTIONS(911), + [anon_sym_ENDFILE] = ACTIONS(911), + [anon_sym_ATinclude] = ACTIONS(913), + [anon_sym_ATload] = ACTIONS(913), + [anon_sym_ATnamespace] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_getline] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(913), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_AMP_AMP] = ACTIONS(913), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_EQ] = ACTIONS(911), + [anon_sym_PLUS_EQ] = ACTIONS(913), + [anon_sym_DASH_EQ] = ACTIONS(913), + [anon_sym_STAR_EQ] = ACTIONS(913), + [anon_sym_SLASH_EQ] = ACTIONS(913), + [anon_sym_PERCENT_EQ] = ACTIONS(913), + [anon_sym_CARET_EQ] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [anon_sym_function] = ACTIONS(911), + [anon_sym_func] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_asort] = ACTIONS(911), + [anon_sym_asorti] = ACTIONS(911), + [anon_sym_bindtextdomain] = ACTIONS(911), + [anon_sym_compl] = ACTIONS(911), + [anon_sym_cos] = ACTIONS(911), + [anon_sym_dcgettext] = ACTIONS(911), + [anon_sym_dcngettext] = ACTIONS(911), + [anon_sym_exp] = ACTIONS(911), + [anon_sym_gensub] = ACTIONS(911), + [anon_sym_gsub] = ACTIONS(911), + [anon_sym_index] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_isarray] = ACTIONS(911), + [anon_sym_length] = ACTIONS(911), + [anon_sym_log] = ACTIONS(911), + [anon_sym_lshift] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mktime] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_patsplit] = ACTIONS(911), + [anon_sym_rand] = ACTIONS(911), + [anon_sym_rshift] = ACTIONS(911), + [anon_sym_sin] = ACTIONS(911), + [anon_sym_split] = ACTIONS(911), + [anon_sym_sprintf] = ACTIONS(911), + [anon_sym_sqrt] = ACTIONS(911), + [anon_sym_srand] = ACTIONS(911), + [anon_sym_strftime] = ACTIONS(911), + [anon_sym_strtonum] = ACTIONS(911), + [anon_sym_sub] = ACTIONS(911), + [anon_sym_substr] = ACTIONS(911), + [anon_sym_systime] = ACTIONS(911), + [anon_sym_tolower] = ACTIONS(911), + [anon_sym_toupper] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(913), + [sym_concatenating_space] = ACTIONS(913), + }, + [512] = { + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_BEGIN] = ACTIONS(915), + [anon_sym_END] = ACTIONS(915), + [anon_sym_BEGINFILE] = ACTIONS(915), + [anon_sym_ENDFILE] = ACTIONS(915), + [anon_sym_ATinclude] = ACTIONS(917), + [anon_sym_ATload] = ACTIONS(917), + [anon_sym_ATnamespace] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_in] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_getline] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_STAR_EQ] = ACTIONS(917), + [anon_sym_SLASH_EQ] = ACTIONS(917), + [anon_sym_PERCENT_EQ] = ACTIONS(917), + [anon_sym_CARET_EQ] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_AT] = ACTIONS(915), + [aux_sym_number_token1] = ACTIONS(915), + [aux_sym_number_token2] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [anon_sym_function] = ACTIONS(915), + [anon_sym_func] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_asort] = ACTIONS(915), + [anon_sym_asorti] = ACTIONS(915), + [anon_sym_bindtextdomain] = ACTIONS(915), + [anon_sym_compl] = ACTIONS(915), + [anon_sym_cos] = ACTIONS(915), + [anon_sym_dcgettext] = ACTIONS(915), + [anon_sym_dcngettext] = ACTIONS(915), + [anon_sym_exp] = ACTIONS(915), + [anon_sym_gensub] = ACTIONS(915), + [anon_sym_gsub] = ACTIONS(915), + [anon_sym_index] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_isarray] = ACTIONS(915), + [anon_sym_length] = ACTIONS(915), + [anon_sym_log] = ACTIONS(915), + [anon_sym_lshift] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mktime] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_patsplit] = ACTIONS(915), + [anon_sym_rand] = ACTIONS(915), + [anon_sym_rshift] = ACTIONS(915), + [anon_sym_sin] = ACTIONS(915), + [anon_sym_split] = ACTIONS(915), + [anon_sym_sprintf] = ACTIONS(915), + [anon_sym_sqrt] = ACTIONS(915), + [anon_sym_srand] = ACTIONS(915), + [anon_sym_strftime] = ACTIONS(915), + [anon_sym_strtonum] = ACTIONS(915), + [anon_sym_sub] = ACTIONS(915), + [anon_sym_substr] = ACTIONS(915), + [anon_sym_systime] = ACTIONS(915), + [anon_sym_tolower] = ACTIONS(915), + [anon_sym_toupper] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(917), + [sym_concatenating_space] = ACTIONS(917), + }, + [513] = { + [ts_builtin_sym_end] = ACTIONS(887), + [sym_identifier] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_BEGIN] = ACTIONS(885), + [anon_sym_END] = ACTIONS(885), + [anon_sym_BEGINFILE] = ACTIONS(885), + [anon_sym_ENDFILE] = ACTIONS(885), + [anon_sym_ATinclude] = ACTIONS(887), + [anon_sym_ATload] = ACTIONS(887), + [anon_sym_ATnamespace] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_in] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_getline] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_STAR_STAR] = ACTIONS(887), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(887), + [anon_sym_GT_EQ] = ACTIONS(887), + [anon_sym_EQ_EQ] = ACTIONS(887), + [anon_sym_BANG_EQ] = ACTIONS(887), + [anon_sym_TILDE] = ACTIONS(887), + [anon_sym_BANG_TILDE] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(887), + [anon_sym_DASH_DASH] = ACTIONS(887), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_PLUS_EQ] = ACTIONS(887), + [anon_sym_DASH_EQ] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(887), + [anon_sym_SLASH_EQ] = ACTIONS(887), + [anon_sym_PERCENT_EQ] = ACTIONS(887), + [anon_sym_CARET_EQ] = ACTIONS(887), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(885), + [aux_sym_number_token1] = ACTIONS(885), + [aux_sym_number_token2] = ACTIONS(887), + [anon_sym_DQUOTE] = ACTIONS(887), + [anon_sym_function] = ACTIONS(885), + [anon_sym_func] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_asort] = ACTIONS(885), + [anon_sym_asorti] = ACTIONS(885), + [anon_sym_bindtextdomain] = ACTIONS(885), + [anon_sym_compl] = ACTIONS(885), + [anon_sym_cos] = ACTIONS(885), + [anon_sym_dcgettext] = ACTIONS(885), + [anon_sym_dcngettext] = ACTIONS(885), + [anon_sym_exp] = ACTIONS(885), + [anon_sym_gensub] = ACTIONS(885), + [anon_sym_gsub] = ACTIONS(885), + [anon_sym_index] = ACTIONS(885), + [anon_sym_int] = ACTIONS(885), + [anon_sym_isarray] = ACTIONS(885), + [anon_sym_length] = ACTIONS(885), + [anon_sym_log] = ACTIONS(885), + [anon_sym_lshift] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mktime] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_patsplit] = ACTIONS(885), + [anon_sym_rand] = ACTIONS(885), + [anon_sym_rshift] = ACTIONS(885), + [anon_sym_sin] = ACTIONS(885), + [anon_sym_split] = ACTIONS(885), + [anon_sym_sprintf] = ACTIONS(885), + [anon_sym_sqrt] = ACTIONS(885), + [anon_sym_srand] = ACTIONS(885), + [anon_sym_strftime] = ACTIONS(885), + [anon_sym_strtonum] = ACTIONS(885), + [anon_sym_sub] = ACTIONS(885), + [anon_sym_substr] = ACTIONS(885), + [anon_sym_systime] = ACTIONS(885), + [anon_sym_tolower] = ACTIONS(885), + [anon_sym_toupper] = ACTIONS(885), + [anon_sym_typeof] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(887), + [sym_concatenating_space] = ACTIONS(887), + }, + [514] = { + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_BEGIN] = ACTIONS(927), + [anon_sym_END] = ACTIONS(927), + [anon_sym_BEGINFILE] = ACTIONS(927), + [anon_sym_ENDFILE] = ACTIONS(927), + [anon_sym_ATinclude] = ACTIONS(929), + [anon_sym_ATload] = ACTIONS(929), + [anon_sym_ATnamespace] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_in] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_getline] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_PLUS_EQ] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(929), + [anon_sym_SLASH_EQ] = ACTIONS(929), + [anon_sym_PERCENT_EQ] = ACTIONS(929), + [anon_sym_CARET_EQ] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(927), + [aux_sym_number_token1] = ACTIONS(927), + [aux_sym_number_token2] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_function] = ACTIONS(927), + [anon_sym_func] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_asort] = ACTIONS(927), + [anon_sym_asorti] = ACTIONS(927), + [anon_sym_bindtextdomain] = ACTIONS(927), + [anon_sym_compl] = ACTIONS(927), + [anon_sym_cos] = ACTIONS(927), + [anon_sym_dcgettext] = ACTIONS(927), + [anon_sym_dcngettext] = ACTIONS(927), + [anon_sym_exp] = ACTIONS(927), + [anon_sym_gensub] = ACTIONS(927), + [anon_sym_gsub] = ACTIONS(927), + [anon_sym_index] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_isarray] = ACTIONS(927), + [anon_sym_length] = ACTIONS(927), + [anon_sym_log] = ACTIONS(927), + [anon_sym_lshift] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mktime] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_patsplit] = ACTIONS(927), + [anon_sym_rand] = ACTIONS(927), + [anon_sym_rshift] = ACTIONS(927), + [anon_sym_sin] = ACTIONS(927), + [anon_sym_split] = ACTIONS(927), + [anon_sym_sprintf] = ACTIONS(927), + [anon_sym_sqrt] = ACTIONS(927), + [anon_sym_srand] = ACTIONS(927), + [anon_sym_strftime] = ACTIONS(927), + [anon_sym_strtonum] = ACTIONS(927), + [anon_sym_sub] = ACTIONS(927), + [anon_sym_substr] = ACTIONS(927), + [anon_sym_systime] = ACTIONS(927), + [anon_sym_tolower] = ACTIONS(927), + [anon_sym_toupper] = ACTIONS(927), + [anon_sym_typeof] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(929), + [sym_concatenating_space] = ACTIONS(929), + }, + [515] = { + [ts_builtin_sym_end] = ACTIONS(933), + [sym_identifier] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_BEGIN] = ACTIONS(931), + [anon_sym_END] = ACTIONS(931), + [anon_sym_BEGINFILE] = ACTIONS(931), + [anon_sym_ENDFILE] = ACTIONS(931), + [anon_sym_ATinclude] = ACTIONS(933), + [anon_sym_ATload] = ACTIONS(933), + [anon_sym_ATnamespace] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_in] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_getline] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), + [anon_sym_STAR_EQ] = ACTIONS(933), + [anon_sym_SLASH_EQ] = ACTIONS(933), + [anon_sym_PERCENT_EQ] = ACTIONS(933), + [anon_sym_CARET_EQ] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(931), + [aux_sym_number_token1] = ACTIONS(931), + [aux_sym_number_token2] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_function] = ACTIONS(931), + [anon_sym_func] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_asort] = ACTIONS(931), + [anon_sym_asorti] = ACTIONS(931), + [anon_sym_bindtextdomain] = ACTIONS(931), + [anon_sym_compl] = ACTIONS(931), + [anon_sym_cos] = ACTIONS(931), + [anon_sym_dcgettext] = ACTIONS(931), + [anon_sym_dcngettext] = ACTIONS(931), + [anon_sym_exp] = ACTIONS(931), + [anon_sym_gensub] = ACTIONS(931), + [anon_sym_gsub] = ACTIONS(931), + [anon_sym_index] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_isarray] = ACTIONS(931), + [anon_sym_length] = ACTIONS(931), + [anon_sym_log] = ACTIONS(931), + [anon_sym_lshift] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mktime] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_patsplit] = ACTIONS(931), + [anon_sym_rand] = ACTIONS(931), + [anon_sym_rshift] = ACTIONS(931), + [anon_sym_sin] = ACTIONS(931), + [anon_sym_split] = ACTIONS(931), + [anon_sym_sprintf] = ACTIONS(931), + [anon_sym_sqrt] = ACTIONS(931), + [anon_sym_srand] = ACTIONS(931), + [anon_sym_strftime] = ACTIONS(931), + [anon_sym_strtonum] = ACTIONS(931), + [anon_sym_sub] = ACTIONS(931), + [anon_sym_substr] = ACTIONS(931), + [anon_sym_systime] = ACTIONS(931), + [anon_sym_tolower] = ACTIONS(931), + [anon_sym_toupper] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(933), + [sym_concatenating_space] = ACTIONS(933), + }, + [516] = { + [ts_builtin_sym_end] = ACTIONS(941), + [sym_identifier] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_BEGIN] = ACTIONS(939), + [anon_sym_END] = ACTIONS(939), + [anon_sym_BEGINFILE] = ACTIONS(939), + [anon_sym_ENDFILE] = ACTIONS(939), + [anon_sym_ATinclude] = ACTIONS(941), + [anon_sym_ATload] = ACTIONS(941), + [anon_sym_ATnamespace] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_in] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_getline] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_BANG_TILDE] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(941), + [anon_sym_PIPE_PIPE] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_PLUS_EQ] = ACTIONS(941), + [anon_sym_DASH_EQ] = ACTIONS(941), + [anon_sym_STAR_EQ] = ACTIONS(941), + [anon_sym_SLASH_EQ] = ACTIONS(941), + [anon_sym_PERCENT_EQ] = ACTIONS(941), + [anon_sym_CARET_EQ] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(939), + [aux_sym_number_token1] = ACTIONS(939), + [aux_sym_number_token2] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_function] = ACTIONS(939), + [anon_sym_func] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_asort] = ACTIONS(939), + [anon_sym_asorti] = ACTIONS(939), + [anon_sym_bindtextdomain] = ACTIONS(939), + [anon_sym_compl] = ACTIONS(939), + [anon_sym_cos] = ACTIONS(939), + [anon_sym_dcgettext] = ACTIONS(939), + [anon_sym_dcngettext] = ACTIONS(939), + [anon_sym_exp] = ACTIONS(939), + [anon_sym_gensub] = ACTIONS(939), + [anon_sym_gsub] = ACTIONS(939), + [anon_sym_index] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_isarray] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_log] = ACTIONS(939), + [anon_sym_lshift] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mktime] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_patsplit] = ACTIONS(939), + [anon_sym_rand] = ACTIONS(939), + [anon_sym_rshift] = ACTIONS(939), + [anon_sym_sin] = ACTIONS(939), + [anon_sym_split] = ACTIONS(939), + [anon_sym_sprintf] = ACTIONS(939), + [anon_sym_sqrt] = ACTIONS(939), + [anon_sym_srand] = ACTIONS(939), + [anon_sym_strftime] = ACTIONS(939), + [anon_sym_strtonum] = ACTIONS(939), + [anon_sym_sub] = ACTIONS(939), + [anon_sym_substr] = ACTIONS(939), + [anon_sym_systime] = ACTIONS(939), + [anon_sym_tolower] = ACTIONS(939), + [anon_sym_toupper] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(941), + [sym_concatenating_space] = ACTIONS(941), + }, + [517] = { + [sym_identifier] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_LF] = ACTIONS(43), + [anon_sym_CR_LF] = ACTIONS(43), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(43), + [anon_sym_for] = ACTIONS(43), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(43), + [sym_continue_statement] = ACTIONS(43), + [anon_sym_delete] = ACTIONS(43), + [anon_sym_exit] = ACTIONS(43), + [anon_sym_return] = ACTIONS(43), + [anon_sym_switch] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(43), + [anon_sym_getline] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(43), + [sym_nextfile_statement] = ACTIONS(43), + [anon_sym_print] = ACTIONS(43), + [anon_sym_printf] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_PIPE_AMP] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_AT] = ACTIONS(43), + [aux_sym_number_token1] = ACTIONS(43), + [aux_sym_number_token2] = ACTIONS(43), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_and] = ACTIONS(43), + [anon_sym_asort] = ACTIONS(43), + [anon_sym_asorti] = ACTIONS(43), + [anon_sym_bindtextdomain] = ACTIONS(43), + [anon_sym_compl] = ACTIONS(43), + [anon_sym_cos] = ACTIONS(43), + [anon_sym_dcgettext] = ACTIONS(43), + [anon_sym_dcngettext] = ACTIONS(43), + [anon_sym_exp] = ACTIONS(43), + [anon_sym_gensub] = ACTIONS(43), + [anon_sym_gsub] = ACTIONS(43), + [anon_sym_index] = ACTIONS(43), + [anon_sym_int] = ACTIONS(43), + [anon_sym_isarray] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_log] = ACTIONS(43), + [anon_sym_lshift] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_mktime] = ACTIONS(43), + [anon_sym_or] = ACTIONS(43), + [anon_sym_patsplit] = ACTIONS(43), + [anon_sym_rand] = ACTIONS(43), + [anon_sym_rshift] = ACTIONS(43), + [anon_sym_sin] = ACTIONS(43), + [anon_sym_split] = ACTIONS(43), + [anon_sym_sprintf] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_srand] = ACTIONS(43), + [anon_sym_strftime] = ACTIONS(43), + [anon_sym_strtonum] = ACTIONS(43), + [anon_sym_sub] = ACTIONS(43), + [anon_sym_substr] = ACTIONS(43), + [anon_sym_systime] = ACTIONS(43), + [anon_sym_tolower] = ACTIONS(43), + [anon_sym_toupper] = ACTIONS(43), + [anon_sym_typeof] = ACTIONS(43), + [anon_sym_xor] = ACTIONS(43), + [anon_sym_POUND] = ACTIONS(43), + [sym__if_else_separator] = ACTIONS(87), + }, + [518] = { + [ts_builtin_sym_end] = ACTIONS(891), + [sym_identifier] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_BEGIN] = ACTIONS(889), + [anon_sym_END] = ACTIONS(889), + [anon_sym_BEGINFILE] = ACTIONS(889), + [anon_sym_ENDFILE] = ACTIONS(889), + [anon_sym_ATinclude] = ACTIONS(891), + [anon_sym_ATload] = ACTIONS(891), + [anon_sym_ATnamespace] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_in] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_getline] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_PIPE_AMP] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_STAR_STAR] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(891), + [anon_sym_GT_EQ] = ACTIONS(891), + [anon_sym_EQ_EQ] = ACTIONS(891), + [anon_sym_BANG_EQ] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_BANG_TILDE] = ACTIONS(891), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(891), + [anon_sym_DASH_EQ] = ACTIONS(891), + [anon_sym_STAR_EQ] = ACTIONS(891), + [anon_sym_SLASH_EQ] = ACTIONS(891), + [anon_sym_PERCENT_EQ] = ACTIONS(891), + [anon_sym_CARET_EQ] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(889), + [aux_sym_number_token1] = ACTIONS(889), + [aux_sym_number_token2] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_function] = ACTIONS(889), + [anon_sym_func] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_asort] = ACTIONS(889), + [anon_sym_asorti] = ACTIONS(889), + [anon_sym_bindtextdomain] = ACTIONS(889), + [anon_sym_compl] = ACTIONS(889), + [anon_sym_cos] = ACTIONS(889), + [anon_sym_dcgettext] = ACTIONS(889), + [anon_sym_dcngettext] = ACTIONS(889), + [anon_sym_exp] = ACTIONS(889), + [anon_sym_gensub] = ACTIONS(889), + [anon_sym_gsub] = ACTIONS(889), + [anon_sym_index] = ACTIONS(889), + [anon_sym_int] = ACTIONS(889), + [anon_sym_isarray] = ACTIONS(889), + [anon_sym_length] = ACTIONS(889), + [anon_sym_log] = ACTIONS(889), + [anon_sym_lshift] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_mktime] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_patsplit] = ACTIONS(889), + [anon_sym_rand] = ACTIONS(889), + [anon_sym_rshift] = ACTIONS(889), + [anon_sym_sin] = ACTIONS(889), + [anon_sym_split] = ACTIONS(889), + [anon_sym_sprintf] = ACTIONS(889), + [anon_sym_sqrt] = ACTIONS(889), + [anon_sym_srand] = ACTIONS(889), + [anon_sym_strftime] = ACTIONS(889), + [anon_sym_strtonum] = ACTIONS(889), + [anon_sym_sub] = ACTIONS(889), + [anon_sym_substr] = ACTIONS(889), + [anon_sym_systime] = ACTIONS(889), + [anon_sym_tolower] = ACTIONS(889), + [anon_sym_toupper] = ACTIONS(889), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(891), + [sym_concatenating_space] = ACTIONS(891), + }, + [519] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(719), + [anon_sym_DASH_EQ] = ACTIONS(719), + [anon_sym_STAR_EQ] = ACTIONS(719), + [anon_sym_SLASH_EQ] = ACTIONS(719), + [anon_sym_PERCENT_EQ] = ACTIONS(719), + [anon_sym_CARET_EQ] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + }, + [520] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_BEGIN] = ACTIONS(765), + [anon_sym_END] = ACTIONS(765), + [anon_sym_BEGINFILE] = ACTIONS(765), + [anon_sym_ENDFILE] = ACTIONS(765), + [anon_sym_ATinclude] = ACTIONS(767), + [anon_sym_ATload] = ACTIONS(767), + [anon_sym_ATnamespace] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_in] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(767), + [anon_sym_DASH_EQ] = ACTIONS(767), + [anon_sym_STAR_EQ] = ACTIONS(767), + [anon_sym_SLASH_EQ] = ACTIONS(767), + [anon_sym_PERCENT_EQ] = ACTIONS(767), + [anon_sym_CARET_EQ] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_function] = ACTIONS(765), + [anon_sym_func] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + [sym_concatenating_space] = ACTIONS(767), + }, + [521] = { + [sym_identifier] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_CR_LF] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(1209), + [sym_continue_statement] = ACTIONS(1209), + [anon_sym_delete] = ACTIONS(1209), + [anon_sym_exit] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_switch] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_getline] = ACTIONS(1209), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(1209), + [sym_nextfile_statement] = ACTIONS(1209), + [anon_sym_print] = ACTIONS(1209), + [anon_sym_printf] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_PIPE_AMP] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_AT] = ACTIONS(1209), + [aux_sym_number_token1] = ACTIONS(1209), + [aux_sym_number_token2] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_asort] = ACTIONS(1209), + [anon_sym_asorti] = ACTIONS(1209), + [anon_sym_bindtextdomain] = ACTIONS(1209), + [anon_sym_compl] = ACTIONS(1209), + [anon_sym_cos] = ACTIONS(1209), + [anon_sym_dcgettext] = ACTIONS(1209), + [anon_sym_dcngettext] = ACTIONS(1209), + [anon_sym_exp] = ACTIONS(1209), + [anon_sym_gensub] = ACTIONS(1209), + [anon_sym_gsub] = ACTIONS(1209), + [anon_sym_index] = ACTIONS(1209), + [anon_sym_int] = ACTIONS(1209), + [anon_sym_isarray] = ACTIONS(1209), + [anon_sym_length] = ACTIONS(1209), + [anon_sym_log] = ACTIONS(1209), + [anon_sym_lshift] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_mktime] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_patsplit] = ACTIONS(1209), + [anon_sym_rand] = ACTIONS(1209), + [anon_sym_rshift] = ACTIONS(1209), + [anon_sym_sin] = ACTIONS(1209), + [anon_sym_split] = ACTIONS(1209), + [anon_sym_sprintf] = ACTIONS(1209), + [anon_sym_sqrt] = ACTIONS(1209), + [anon_sym_srand] = ACTIONS(1209), + [anon_sym_strftime] = ACTIONS(1209), + [anon_sym_strtonum] = ACTIONS(1209), + [anon_sym_sub] = ACTIONS(1209), + [anon_sym_substr] = ACTIONS(1209), + [anon_sym_systime] = ACTIONS(1209), + [anon_sym_tolower] = ACTIONS(1209), + [anon_sym_toupper] = ACTIONS(1209), + [anon_sym_typeof] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_POUND] = ACTIONS(1209), + [sym__if_else_separator] = ACTIONS(1211), + }, + [522] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_PERCENT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(733), + }, + [523] = { + [ts_builtin_sym_end] = ACTIONS(829), + [sym_identifier] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(829), + [anon_sym_BEGIN] = ACTIONS(809), + [anon_sym_END] = ACTIONS(809), + [anon_sym_BEGINFILE] = ACTIONS(809), + [anon_sym_ENDFILE] = ACTIONS(809), + [anon_sym_ATinclude] = ACTIONS(829), + [anon_sym_ATload] = ACTIONS(829), + [anon_sym_ATnamespace] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_in] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_getline] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(829), + [anon_sym_QMARK] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_BANG_TILDE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(829), + [anon_sym_DASH_EQ] = ACTIONS(829), + [anon_sym_STAR_EQ] = ACTIONS(829), + [anon_sym_SLASH_EQ] = ACTIONS(829), + [anon_sym_PERCENT_EQ] = ACTIONS(829), + [anon_sym_CARET_EQ] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_AT] = ACTIONS(809), + [aux_sym_number_token1] = ACTIONS(809), + [aux_sym_number_token2] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [anon_sym_function] = ACTIONS(809), + [anon_sym_func] = ACTIONS(809), + [anon_sym_and] = ACTIONS(809), + [anon_sym_asort] = ACTIONS(809), + [anon_sym_asorti] = ACTIONS(809), + [anon_sym_bindtextdomain] = ACTIONS(809), + [anon_sym_compl] = ACTIONS(809), + [anon_sym_cos] = ACTIONS(809), + [anon_sym_dcgettext] = ACTIONS(809), + [anon_sym_dcngettext] = ACTIONS(809), + [anon_sym_exp] = ACTIONS(809), + [anon_sym_gensub] = ACTIONS(809), + [anon_sym_gsub] = ACTIONS(809), + [anon_sym_index] = ACTIONS(809), + [anon_sym_int] = ACTIONS(809), + [anon_sym_isarray] = ACTIONS(809), + [anon_sym_length] = ACTIONS(809), + [anon_sym_log] = ACTIONS(809), + [anon_sym_lshift] = ACTIONS(809), + [anon_sym_match] = ACTIONS(809), + [anon_sym_mktime] = ACTIONS(809), + [anon_sym_or] = ACTIONS(809), + [anon_sym_patsplit] = ACTIONS(809), + [anon_sym_rand] = ACTIONS(809), + [anon_sym_rshift] = ACTIONS(809), + [anon_sym_sin] = ACTIONS(809), + [anon_sym_split] = ACTIONS(809), + [anon_sym_sprintf] = ACTIONS(809), + [anon_sym_sqrt] = ACTIONS(809), + [anon_sym_srand] = ACTIONS(809), + [anon_sym_strftime] = ACTIONS(809), + [anon_sym_strtonum] = ACTIONS(809), + [anon_sym_sub] = ACTIONS(809), + [anon_sym_substr] = ACTIONS(809), + [anon_sym_systime] = ACTIONS(809), + [anon_sym_tolower] = ACTIONS(809), + [anon_sym_toupper] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(809), + [anon_sym_xor] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(829), + [sym_concatenating_space] = ACTIONS(829), + }, + [524] = { + [ts_builtin_sym_end] = ACTIONS(895), + [sym_identifier] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_BEGIN] = ACTIONS(893), + [anon_sym_END] = ACTIONS(893), + [anon_sym_BEGINFILE] = ACTIONS(893), + [anon_sym_ENDFILE] = ACTIONS(893), + [anon_sym_ATinclude] = ACTIONS(895), + [anon_sym_ATload] = ACTIONS(895), + [anon_sym_ATnamespace] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_in] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_getline] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_QMARK] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_BANG_TILDE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_DASH_DASH] = ACTIONS(895), + [anon_sym_EQ] = ACTIONS(893), + [anon_sym_PLUS_EQ] = ACTIONS(895), + [anon_sym_DASH_EQ] = ACTIONS(895), + [anon_sym_STAR_EQ] = ACTIONS(895), + [anon_sym_SLASH_EQ] = ACTIONS(895), + [anon_sym_PERCENT_EQ] = ACTIONS(895), + [anon_sym_CARET_EQ] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(893), + [aux_sym_number_token1] = ACTIONS(893), + [aux_sym_number_token2] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [anon_sym_function] = ACTIONS(893), + [anon_sym_func] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_asort] = ACTIONS(893), + [anon_sym_asorti] = ACTIONS(893), + [anon_sym_bindtextdomain] = ACTIONS(893), + [anon_sym_compl] = ACTIONS(893), + [anon_sym_cos] = ACTIONS(893), + [anon_sym_dcgettext] = ACTIONS(893), + [anon_sym_dcngettext] = ACTIONS(893), + [anon_sym_exp] = ACTIONS(893), + [anon_sym_gensub] = ACTIONS(893), + [anon_sym_gsub] = ACTIONS(893), + [anon_sym_index] = ACTIONS(893), + [anon_sym_int] = ACTIONS(893), + [anon_sym_isarray] = ACTIONS(893), + [anon_sym_length] = ACTIONS(893), + [anon_sym_log] = ACTIONS(893), + [anon_sym_lshift] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_mktime] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_patsplit] = ACTIONS(893), + [anon_sym_rand] = ACTIONS(893), + [anon_sym_rshift] = ACTIONS(893), + [anon_sym_sin] = ACTIONS(893), + [anon_sym_split] = ACTIONS(893), + [anon_sym_sprintf] = ACTIONS(893), + [anon_sym_sqrt] = ACTIONS(893), + [anon_sym_srand] = ACTIONS(893), + [anon_sym_strftime] = ACTIONS(893), + [anon_sym_strtonum] = ACTIONS(893), + [anon_sym_sub] = ACTIONS(893), + [anon_sym_substr] = ACTIONS(893), + [anon_sym_systime] = ACTIONS(893), + [anon_sym_tolower] = ACTIONS(893), + [anon_sym_toupper] = ACTIONS(893), + [anon_sym_typeof] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(895), + [sym_concatenating_space] = ACTIONS(895), + }, + [525] = { + [ts_builtin_sym_end] = ACTIONS(899), + [sym_identifier] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_BEGIN] = ACTIONS(897), + [anon_sym_END] = ACTIONS(897), + [anon_sym_BEGINFILE] = ACTIONS(897), + [anon_sym_ENDFILE] = ACTIONS(897), + [anon_sym_ATinclude] = ACTIONS(899), + [anon_sym_ATload] = ACTIONS(899), + [anon_sym_ATnamespace] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_in] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_getline] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_BANG_TILDE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_DASH_DASH] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_PLUS_EQ] = ACTIONS(899), + [anon_sym_DASH_EQ] = ACTIONS(899), + [anon_sym_STAR_EQ] = ACTIONS(899), + [anon_sym_SLASH_EQ] = ACTIONS(899), + [anon_sym_PERCENT_EQ] = ACTIONS(899), + [anon_sym_CARET_EQ] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(897), + [aux_sym_number_token1] = ACTIONS(897), + [aux_sym_number_token2] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [anon_sym_function] = ACTIONS(897), + [anon_sym_func] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_asort] = ACTIONS(897), + [anon_sym_asorti] = ACTIONS(897), + [anon_sym_bindtextdomain] = ACTIONS(897), + [anon_sym_compl] = ACTIONS(897), + [anon_sym_cos] = ACTIONS(897), + [anon_sym_dcgettext] = ACTIONS(897), + [anon_sym_dcngettext] = ACTIONS(897), + [anon_sym_exp] = ACTIONS(897), + [anon_sym_gensub] = ACTIONS(897), + [anon_sym_gsub] = ACTIONS(897), + [anon_sym_index] = ACTIONS(897), + [anon_sym_int] = ACTIONS(897), + [anon_sym_isarray] = ACTIONS(897), + [anon_sym_length] = ACTIONS(897), + [anon_sym_log] = ACTIONS(897), + [anon_sym_lshift] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_mktime] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_patsplit] = ACTIONS(897), + [anon_sym_rand] = ACTIONS(897), + [anon_sym_rshift] = ACTIONS(897), + [anon_sym_sin] = ACTIONS(897), + [anon_sym_split] = ACTIONS(897), + [anon_sym_sprintf] = ACTIONS(897), + [anon_sym_sqrt] = ACTIONS(897), + [anon_sym_srand] = ACTIONS(897), + [anon_sym_strftime] = ACTIONS(897), + [anon_sym_strtonum] = ACTIONS(897), + [anon_sym_sub] = ACTIONS(897), + [anon_sym_substr] = ACTIONS(897), + [anon_sym_systime] = ACTIONS(897), + [anon_sym_tolower] = ACTIONS(897), + [anon_sym_toupper] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(899), + [sym_concatenating_space] = ACTIONS(899), + }, + [526] = { + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_BEGIN] = ACTIONS(901), + [anon_sym_END] = ACTIONS(901), + [anon_sym_BEGINFILE] = ACTIONS(901), + [anon_sym_ENDFILE] = ACTIONS(901), + [anon_sym_ATinclude] = ACTIONS(903), + [anon_sym_ATload] = ACTIONS(903), + [anon_sym_ATnamespace] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_in] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_getline] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PIPE_AMP] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_BANG_TILDE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_DASH_EQ] = ACTIONS(903), + [anon_sym_STAR_EQ] = ACTIONS(903), + [anon_sym_SLASH_EQ] = ACTIONS(903), + [anon_sym_PERCENT_EQ] = ACTIONS(903), + [anon_sym_CARET_EQ] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(901), + [aux_sym_number_token1] = ACTIONS(901), + [aux_sym_number_token2] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [anon_sym_function] = ACTIONS(901), + [anon_sym_func] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_asort] = ACTIONS(901), + [anon_sym_asorti] = ACTIONS(901), + [anon_sym_bindtextdomain] = ACTIONS(901), + [anon_sym_compl] = ACTIONS(901), + [anon_sym_cos] = ACTIONS(901), + [anon_sym_dcgettext] = ACTIONS(901), + [anon_sym_dcngettext] = ACTIONS(901), + [anon_sym_exp] = ACTIONS(901), + [anon_sym_gensub] = ACTIONS(901), + [anon_sym_gsub] = ACTIONS(901), + [anon_sym_index] = ACTIONS(901), + [anon_sym_int] = ACTIONS(901), + [anon_sym_isarray] = ACTIONS(901), + [anon_sym_length] = ACTIONS(901), + [anon_sym_log] = ACTIONS(901), + [anon_sym_lshift] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mktime] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_patsplit] = ACTIONS(901), + [anon_sym_rand] = ACTIONS(901), + [anon_sym_rshift] = ACTIONS(901), + [anon_sym_sin] = ACTIONS(901), + [anon_sym_split] = ACTIONS(901), + [anon_sym_sprintf] = ACTIONS(901), + [anon_sym_sqrt] = ACTIONS(901), + [anon_sym_srand] = ACTIONS(901), + [anon_sym_strftime] = ACTIONS(901), + [anon_sym_strtonum] = ACTIONS(901), + [anon_sym_sub] = ACTIONS(901), + [anon_sym_substr] = ACTIONS(901), + [anon_sym_systime] = ACTIONS(901), + [anon_sym_tolower] = ACTIONS(901), + [anon_sym_toupper] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(903), + [sym_concatenating_space] = ACTIONS(903), + }, + [527] = { + [ts_builtin_sym_end] = ACTIONS(853), + [sym_identifier] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_BEGIN] = ACTIONS(851), + [anon_sym_END] = ACTIONS(851), + [anon_sym_BEGINFILE] = ACTIONS(851), + [anon_sym_ENDFILE] = ACTIONS(851), + [anon_sym_ATinclude] = ACTIONS(853), + [anon_sym_ATload] = ACTIONS(853), + [anon_sym_ATnamespace] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_in] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_getline] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_QMARK] = ACTIONS(853), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_STAR_STAR] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_BANG_TILDE] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_STAR_EQ] = ACTIONS(853), + [anon_sym_SLASH_EQ] = ACTIONS(853), + [anon_sym_PERCENT_EQ] = ACTIONS(853), + [anon_sym_CARET_EQ] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(851), + [aux_sym_number_token1] = ACTIONS(851), + [aux_sym_number_token2] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_function] = ACTIONS(851), + [anon_sym_func] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_asort] = ACTIONS(851), + [anon_sym_asorti] = ACTIONS(851), + [anon_sym_bindtextdomain] = ACTIONS(851), + [anon_sym_compl] = ACTIONS(851), + [anon_sym_cos] = ACTIONS(851), + [anon_sym_dcgettext] = ACTIONS(851), + [anon_sym_dcngettext] = ACTIONS(851), + [anon_sym_exp] = ACTIONS(851), + [anon_sym_gensub] = ACTIONS(851), + [anon_sym_gsub] = ACTIONS(851), + [anon_sym_index] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_isarray] = ACTIONS(851), + [anon_sym_length] = ACTIONS(851), + [anon_sym_log] = ACTIONS(851), + [anon_sym_lshift] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_mktime] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_patsplit] = ACTIONS(851), + [anon_sym_rand] = ACTIONS(851), + [anon_sym_rshift] = ACTIONS(851), + [anon_sym_sin] = ACTIONS(851), + [anon_sym_split] = ACTIONS(851), + [anon_sym_sprintf] = ACTIONS(851), + [anon_sym_sqrt] = ACTIONS(851), + [anon_sym_srand] = ACTIONS(851), + [anon_sym_strftime] = ACTIONS(851), + [anon_sym_strtonum] = ACTIONS(851), + [anon_sym_sub] = ACTIONS(851), + [anon_sym_substr] = ACTIONS(851), + [anon_sym_systime] = ACTIONS(851), + [anon_sym_tolower] = ACTIONS(851), + [anon_sym_toupper] = ACTIONS(851), + [anon_sym_typeof] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(853), + [sym_concatenating_space] = ACTIONS(853), + }, + [528] = { + [ts_builtin_sym_end] = ACTIONS(909), + [sym_identifier] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(909), + [anon_sym_BEGIN] = ACTIONS(907), + [anon_sym_END] = ACTIONS(907), + [anon_sym_BEGINFILE] = ACTIONS(907), + [anon_sym_ENDFILE] = ACTIONS(907), + [anon_sym_ATinclude] = ACTIONS(909), + [anon_sym_ATload] = ACTIONS(909), + [anon_sym_ATnamespace] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_in] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_getline] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(909), + [anon_sym_QMARK] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_BANG_TILDE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE_PIPE] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(909), + [anon_sym_DASH_EQ] = ACTIONS(909), + [anon_sym_STAR_EQ] = ACTIONS(909), + [anon_sym_SLASH_EQ] = ACTIONS(909), + [anon_sym_PERCENT_EQ] = ACTIONS(909), + [anon_sym_CARET_EQ] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_AT] = ACTIONS(907), + [aux_sym_number_token1] = ACTIONS(907), + [aux_sym_number_token2] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [anon_sym_function] = ACTIONS(907), + [anon_sym_func] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_asort] = ACTIONS(907), + [anon_sym_asorti] = ACTIONS(907), + [anon_sym_bindtextdomain] = ACTIONS(907), + [anon_sym_compl] = ACTIONS(907), + [anon_sym_cos] = ACTIONS(907), + [anon_sym_dcgettext] = ACTIONS(907), + [anon_sym_dcngettext] = ACTIONS(907), + [anon_sym_exp] = ACTIONS(907), + [anon_sym_gensub] = ACTIONS(907), + [anon_sym_gsub] = ACTIONS(907), + [anon_sym_index] = ACTIONS(907), + [anon_sym_int] = ACTIONS(907), + [anon_sym_isarray] = ACTIONS(907), + [anon_sym_length] = ACTIONS(907), + [anon_sym_log] = ACTIONS(907), + [anon_sym_lshift] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mktime] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_patsplit] = ACTIONS(907), + [anon_sym_rand] = ACTIONS(907), + [anon_sym_rshift] = ACTIONS(907), + [anon_sym_sin] = ACTIONS(907), + [anon_sym_split] = ACTIONS(907), + [anon_sym_sprintf] = ACTIONS(907), + [anon_sym_sqrt] = ACTIONS(907), + [anon_sym_srand] = ACTIONS(907), + [anon_sym_strftime] = ACTIONS(907), + [anon_sym_strtonum] = ACTIONS(907), + [anon_sym_sub] = ACTIONS(907), + [anon_sym_substr] = ACTIONS(907), + [anon_sym_systime] = ACTIONS(907), + [anon_sym_tolower] = ACTIONS(907), + [anon_sym_toupper] = ACTIONS(907), + [anon_sym_typeof] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(909), + [sym_concatenating_space] = ACTIONS(909), + }, + [529] = { + [sym_identifier] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_CR_LF] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1069), + [sym_break_statement] = ACTIONS(1213), + [sym_continue_statement] = ACTIONS(1213), + [anon_sym_delete] = ACTIONS(1213), + [anon_sym_exit] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_getline] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1071), + [sym_next_statement] = ACTIONS(1213), + [sym_nextfile_statement] = ACTIONS(1213), + [anon_sym_print] = ACTIONS(1213), + [anon_sym_printf] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_PIPE_AMP] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_BANG_TILDE] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_AT] = ACTIONS(1213), + [aux_sym_number_token1] = ACTIONS(1213), + [aux_sym_number_token2] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_asort] = ACTIONS(1213), + [anon_sym_asorti] = ACTIONS(1213), + [anon_sym_bindtextdomain] = ACTIONS(1213), + [anon_sym_compl] = ACTIONS(1213), + [anon_sym_cos] = ACTIONS(1213), + [anon_sym_dcgettext] = ACTIONS(1213), + [anon_sym_dcngettext] = ACTIONS(1213), + [anon_sym_exp] = ACTIONS(1213), + [anon_sym_gensub] = ACTIONS(1213), + [anon_sym_gsub] = ACTIONS(1213), + [anon_sym_index] = ACTIONS(1213), + [anon_sym_int] = ACTIONS(1213), + [anon_sym_isarray] = ACTIONS(1213), + [anon_sym_length] = ACTIONS(1213), + [anon_sym_log] = ACTIONS(1213), + [anon_sym_lshift] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_mktime] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_patsplit] = ACTIONS(1213), + [anon_sym_rand] = ACTIONS(1213), + [anon_sym_rshift] = ACTIONS(1213), + [anon_sym_sin] = ACTIONS(1213), + [anon_sym_split] = ACTIONS(1213), + [anon_sym_sprintf] = ACTIONS(1213), + [anon_sym_sqrt] = ACTIONS(1213), + [anon_sym_srand] = ACTIONS(1213), + [anon_sym_strftime] = ACTIONS(1213), + [anon_sym_strtonum] = ACTIONS(1213), + [anon_sym_sub] = ACTIONS(1213), + [anon_sym_substr] = ACTIONS(1213), + [anon_sym_systime] = ACTIONS(1213), + [anon_sym_tolower] = ACTIONS(1213), + [anon_sym_toupper] = ACTIONS(1213), + [anon_sym_typeof] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(1213), + [sym__if_else_separator] = ACTIONS(1215), + }, + [530] = { + [ts_builtin_sym_end] = ACTIONS(925), + [sym_identifier] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_BEGIN] = ACTIONS(923), + [anon_sym_END] = ACTIONS(923), + [anon_sym_BEGINFILE] = ACTIONS(923), + [anon_sym_ENDFILE] = ACTIONS(923), + [anon_sym_ATinclude] = ACTIONS(925), + [anon_sym_ATload] = ACTIONS(925), + [anon_sym_ATnamespace] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_in] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_getline] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_STAR_EQ] = ACTIONS(925), + [anon_sym_SLASH_EQ] = ACTIONS(925), + [anon_sym_PERCENT_EQ] = ACTIONS(925), + [anon_sym_CARET_EQ] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(923), + [aux_sym_number_token1] = ACTIONS(923), + [aux_sym_number_token2] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_function] = ACTIONS(923), + [anon_sym_func] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_asort] = ACTIONS(923), + [anon_sym_asorti] = ACTIONS(923), + [anon_sym_bindtextdomain] = ACTIONS(923), + [anon_sym_compl] = ACTIONS(923), + [anon_sym_cos] = ACTIONS(923), + [anon_sym_dcgettext] = ACTIONS(923), + [anon_sym_dcngettext] = ACTIONS(923), + [anon_sym_exp] = ACTIONS(923), + [anon_sym_gensub] = ACTIONS(923), + [anon_sym_gsub] = ACTIONS(923), + [anon_sym_index] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_isarray] = ACTIONS(923), + [anon_sym_length] = ACTIONS(923), + [anon_sym_log] = ACTIONS(923), + [anon_sym_lshift] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mktime] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_patsplit] = ACTIONS(923), + [anon_sym_rand] = ACTIONS(923), + [anon_sym_rshift] = ACTIONS(923), + [anon_sym_sin] = ACTIONS(923), + [anon_sym_split] = ACTIONS(923), + [anon_sym_sprintf] = ACTIONS(923), + [anon_sym_sqrt] = ACTIONS(923), + [anon_sym_srand] = ACTIONS(923), + [anon_sym_strftime] = ACTIONS(923), + [anon_sym_strtonum] = ACTIONS(923), + [anon_sym_sub] = ACTIONS(923), + [anon_sym_substr] = ACTIONS(923), + [anon_sym_systime] = ACTIONS(923), + [anon_sym_tolower] = ACTIONS(923), + [anon_sym_toupper] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(925), + [sym_concatenating_space] = ACTIONS(925), + }, + [531] = { + [ts_builtin_sym_end] = ACTIONS(837), + [sym_identifier] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_BEGIN] = ACTIONS(835), + [anon_sym_END] = ACTIONS(835), + [anon_sym_BEGINFILE] = ACTIONS(835), + [anon_sym_ENDFILE] = ACTIONS(835), + [anon_sym_ATinclude] = ACTIONS(837), + [anon_sym_ATload] = ACTIONS(837), + [anon_sym_ATnamespace] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_in] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_getline] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PIPE_AMP] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(837), + [anon_sym_GT_EQ] = ACTIONS(837), + [anon_sym_EQ_EQ] = ACTIONS(837), + [anon_sym_BANG_EQ] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(837), + [anon_sym_BANG_TILDE] = ACTIONS(837), + [anon_sym_AMP_AMP] = ACTIONS(837), + [anon_sym_PIPE_PIPE] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(837), + [anon_sym_DASH_DASH] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(835), + [anon_sym_PLUS_EQ] = ACTIONS(837), + [anon_sym_DASH_EQ] = ACTIONS(837), + [anon_sym_STAR_EQ] = ACTIONS(837), + [anon_sym_SLASH_EQ] = ACTIONS(837), + [anon_sym_PERCENT_EQ] = ACTIONS(837), + [anon_sym_CARET_EQ] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(835), + [aux_sym_number_token1] = ACTIONS(835), + [aux_sym_number_token2] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(837), + [anon_sym_function] = ACTIONS(835), + [anon_sym_func] = ACTIONS(835), + [anon_sym_and] = ACTIONS(835), + [anon_sym_asort] = ACTIONS(835), + [anon_sym_asorti] = ACTIONS(835), + [anon_sym_bindtextdomain] = ACTIONS(835), + [anon_sym_compl] = ACTIONS(835), + [anon_sym_cos] = ACTIONS(835), + [anon_sym_dcgettext] = ACTIONS(835), + [anon_sym_dcngettext] = ACTIONS(835), + [anon_sym_exp] = ACTIONS(835), + [anon_sym_gensub] = ACTIONS(835), + [anon_sym_gsub] = ACTIONS(835), + [anon_sym_index] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_isarray] = ACTIONS(835), + [anon_sym_length] = ACTIONS(835), + [anon_sym_log] = ACTIONS(835), + [anon_sym_lshift] = ACTIONS(835), + [anon_sym_match] = ACTIONS(835), + [anon_sym_mktime] = ACTIONS(835), + [anon_sym_or] = ACTIONS(835), + [anon_sym_patsplit] = ACTIONS(835), + [anon_sym_rand] = ACTIONS(835), + [anon_sym_rshift] = ACTIONS(835), + [anon_sym_sin] = ACTIONS(835), + [anon_sym_split] = ACTIONS(835), + [anon_sym_sprintf] = ACTIONS(835), + [anon_sym_sqrt] = ACTIONS(835), + [anon_sym_srand] = ACTIONS(835), + [anon_sym_strftime] = ACTIONS(835), + [anon_sym_strtonum] = ACTIONS(835), + [anon_sym_sub] = ACTIONS(835), + [anon_sym_substr] = ACTIONS(835), + [anon_sym_systime] = ACTIONS(835), + [anon_sym_tolower] = ACTIONS(835), + [anon_sym_toupper] = ACTIONS(835), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(835), + [anon_sym_POUND] = ACTIONS(837), + [sym_concatenating_space] = ACTIONS(837), + }, + [532] = { + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_BEGIN] = ACTIONS(855), + [anon_sym_END] = ACTIONS(855), + [anon_sym_BEGINFILE] = ACTIONS(855), + [anon_sym_ENDFILE] = ACTIONS(855), + [anon_sym_ATinclude] = ACTIONS(857), + [anon_sym_ATload] = ACTIONS(857), + [anon_sym_ATnamespace] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_in] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_getline] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_PIPE_AMP] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(857), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_BANG_TILDE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(857), + [anon_sym_PIPE_PIPE] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_PERCENT_EQ] = ACTIONS(857), + [anon_sym_CARET_EQ] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_AT] = ACTIONS(855), + [aux_sym_number_token1] = ACTIONS(855), + [aux_sym_number_token2] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [anon_sym_function] = ACTIONS(855), + [anon_sym_func] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_asort] = ACTIONS(855), + [anon_sym_asorti] = ACTIONS(855), + [anon_sym_bindtextdomain] = ACTIONS(855), + [anon_sym_compl] = ACTIONS(855), + [anon_sym_cos] = ACTIONS(855), + [anon_sym_dcgettext] = ACTIONS(855), + [anon_sym_dcngettext] = ACTIONS(855), + [anon_sym_exp] = ACTIONS(855), + [anon_sym_gensub] = ACTIONS(855), + [anon_sym_gsub] = ACTIONS(855), + [anon_sym_index] = ACTIONS(855), + [anon_sym_int] = ACTIONS(855), + [anon_sym_isarray] = ACTIONS(855), + [anon_sym_length] = ACTIONS(855), + [anon_sym_log] = ACTIONS(855), + [anon_sym_lshift] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_mktime] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_patsplit] = ACTIONS(855), + [anon_sym_rand] = ACTIONS(855), + [anon_sym_rshift] = ACTIONS(855), + [anon_sym_sin] = ACTIONS(855), + [anon_sym_split] = ACTIONS(855), + [anon_sym_sprintf] = ACTIONS(855), + [anon_sym_sqrt] = ACTIONS(855), + [anon_sym_srand] = ACTIONS(855), + [anon_sym_strftime] = ACTIONS(855), + [anon_sym_strtonum] = ACTIONS(855), + [anon_sym_sub] = ACTIONS(855), + [anon_sym_substr] = ACTIONS(855), + [anon_sym_systime] = ACTIONS(855), + [anon_sym_tolower] = ACTIONS(855), + [anon_sym_toupper] = ACTIONS(855), + [anon_sym_typeof] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(857), + [sym_concatenating_space] = ACTIONS(857), + }, + [533] = { + [ts_builtin_sym_end] = ACTIONS(841), + [sym_identifier] = ACTIONS(839), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_BEGIN] = ACTIONS(839), + [anon_sym_END] = ACTIONS(839), + [anon_sym_BEGINFILE] = ACTIONS(839), + [anon_sym_ENDFILE] = ACTIONS(839), + [anon_sym_ATinclude] = ACTIONS(841), + [anon_sym_ATload] = ACTIONS(841), + [anon_sym_ATnamespace] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_in] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_getline] = ACTIONS(839), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [anon_sym_PIPE] = ACTIONS(839), + [anon_sym_PIPE_AMP] = ACTIONS(841), + [anon_sym_QMARK] = ACTIONS(841), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(841), + [anon_sym_TILDE] = ACTIONS(841), + [anon_sym_BANG_TILDE] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(841), + [anon_sym_PIPE_PIPE] = ACTIONS(841), + [anon_sym_BANG] = ACTIONS(839), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_AT] = ACTIONS(839), + [aux_sym_number_token1] = ACTIONS(839), + [aux_sym_number_token2] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_function] = ACTIONS(839), + [anon_sym_func] = ACTIONS(839), + [anon_sym_and] = ACTIONS(839), + [anon_sym_asort] = ACTIONS(839), + [anon_sym_asorti] = ACTIONS(839), + [anon_sym_bindtextdomain] = ACTIONS(839), + [anon_sym_compl] = ACTIONS(839), + [anon_sym_cos] = ACTIONS(839), + [anon_sym_dcgettext] = ACTIONS(839), + [anon_sym_dcngettext] = ACTIONS(839), + [anon_sym_exp] = ACTIONS(839), + [anon_sym_gensub] = ACTIONS(839), + [anon_sym_gsub] = ACTIONS(839), + [anon_sym_index] = ACTIONS(839), + [anon_sym_int] = ACTIONS(839), + [anon_sym_isarray] = ACTIONS(839), + [anon_sym_length] = ACTIONS(839), + [anon_sym_log] = ACTIONS(839), + [anon_sym_lshift] = ACTIONS(839), + [anon_sym_match] = ACTIONS(839), + [anon_sym_mktime] = ACTIONS(839), + [anon_sym_or] = ACTIONS(839), + [anon_sym_patsplit] = ACTIONS(839), + [anon_sym_rand] = ACTIONS(839), + [anon_sym_rshift] = ACTIONS(839), + [anon_sym_sin] = ACTIONS(839), + [anon_sym_split] = ACTIONS(839), + [anon_sym_sprintf] = ACTIONS(839), + [anon_sym_sqrt] = ACTIONS(839), + [anon_sym_srand] = ACTIONS(839), + [anon_sym_strftime] = ACTIONS(839), + [anon_sym_strtonum] = ACTIONS(839), + [anon_sym_sub] = ACTIONS(839), + [anon_sym_substr] = ACTIONS(839), + [anon_sym_systime] = ACTIONS(839), + [anon_sym_tolower] = ACTIONS(839), + [anon_sym_toupper] = ACTIONS(839), + [anon_sym_typeof] = ACTIONS(839), + [anon_sym_xor] = ACTIONS(839), + [anon_sym_POUND] = ACTIONS(841), + [sym_concatenating_space] = ACTIONS(841), + }, + [534] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_BANG_TILDE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [535] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_BANG_TILDE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [536] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [537] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [538] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [539] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_STAR_STAR] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [540] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [541] = { + [sym_identifier] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LF] = ACTIONS(1175), + [anon_sym_CR_LF] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(1175), + [sym_continue_statement] = ACTIONS(1175), + [anon_sym_delete] = ACTIONS(1175), + [anon_sym_exit] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_getline] = ACTIONS(1175), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(1175), + [sym_nextfile_statement] = ACTIONS(1175), + [anon_sym_print] = ACTIONS(1175), + [anon_sym_printf] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(1175), + [aux_sym_number_token1] = ACTIONS(1175), + [aux_sym_number_token2] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_asort] = ACTIONS(1175), + [anon_sym_asorti] = ACTIONS(1175), + [anon_sym_bindtextdomain] = ACTIONS(1175), + [anon_sym_compl] = ACTIONS(1175), + [anon_sym_cos] = ACTIONS(1175), + [anon_sym_dcgettext] = ACTIONS(1175), + [anon_sym_dcngettext] = ACTIONS(1175), + [anon_sym_exp] = ACTIONS(1175), + [anon_sym_gensub] = ACTIONS(1175), + [anon_sym_gsub] = ACTIONS(1175), + [anon_sym_index] = ACTIONS(1175), + [anon_sym_int] = ACTIONS(1175), + [anon_sym_isarray] = ACTIONS(1175), + [anon_sym_length] = ACTIONS(1175), + [anon_sym_log] = ACTIONS(1175), + [anon_sym_lshift] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(1175), + [anon_sym_mktime] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [anon_sym_patsplit] = ACTIONS(1175), + [anon_sym_rand] = ACTIONS(1175), + [anon_sym_rshift] = ACTIONS(1175), + [anon_sym_sin] = ACTIONS(1175), + [anon_sym_split] = ACTIONS(1175), + [anon_sym_sprintf] = ACTIONS(1175), + [anon_sym_sqrt] = ACTIONS(1175), + [anon_sym_srand] = ACTIONS(1175), + [anon_sym_strftime] = ACTIONS(1175), + [anon_sym_strtonum] = ACTIONS(1175), + [anon_sym_sub] = ACTIONS(1175), + [anon_sym_substr] = ACTIONS(1175), + [anon_sym_systime] = ACTIONS(1175), + [anon_sym_tolower] = ACTIONS(1175), + [anon_sym_toupper] = ACTIONS(1175), + [anon_sym_typeof] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_POUND] = ACTIONS(1175), + }, + [542] = { + [sym_identifier] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_CR_LF] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(1179), + [sym_continue_statement] = ACTIONS(1179), + [anon_sym_delete] = ACTIONS(1179), + [anon_sym_exit] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_getline] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(1179), + [sym_nextfile_statement] = ACTIONS(1179), + [anon_sym_print] = ACTIONS(1179), + [anon_sym_printf] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_AT] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(1179), + [aux_sym_number_token2] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_asort] = ACTIONS(1179), + [anon_sym_asorti] = ACTIONS(1179), + [anon_sym_bindtextdomain] = ACTIONS(1179), + [anon_sym_compl] = ACTIONS(1179), + [anon_sym_cos] = ACTIONS(1179), + [anon_sym_dcgettext] = ACTIONS(1179), + [anon_sym_dcngettext] = ACTIONS(1179), + [anon_sym_exp] = ACTIONS(1179), + [anon_sym_gensub] = ACTIONS(1179), + [anon_sym_gsub] = ACTIONS(1179), + [anon_sym_index] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_isarray] = ACTIONS(1179), + [anon_sym_length] = ACTIONS(1179), + [anon_sym_log] = ACTIONS(1179), + [anon_sym_lshift] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_mktime] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_patsplit] = ACTIONS(1179), + [anon_sym_rand] = ACTIONS(1179), + [anon_sym_rshift] = ACTIONS(1179), + [anon_sym_sin] = ACTIONS(1179), + [anon_sym_split] = ACTIONS(1179), + [anon_sym_sprintf] = ACTIONS(1179), + [anon_sym_sqrt] = ACTIONS(1179), + [anon_sym_srand] = ACTIONS(1179), + [anon_sym_strftime] = ACTIONS(1179), + [anon_sym_strtonum] = ACTIONS(1179), + [anon_sym_sub] = ACTIONS(1179), + [anon_sym_substr] = ACTIONS(1179), + [anon_sym_systime] = ACTIONS(1179), + [anon_sym_tolower] = ACTIONS(1179), + [anon_sym_toupper] = ACTIONS(1179), + [anon_sym_typeof] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(1179), + }, + [543] = { + [sym__getline_exp] = STATE(1806), + [sym_getline_input] = STATE(1806), + [sym_getline_file] = STATE(1806), + [sym__print_args] = STATE(662), + [sym__exp] = STATE(1806), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1806), + [sym_assignment_exp] = STATE(1806), + [sym_piped_io_exp] = STATE(1806), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_exp_list] = STATE(662), + [sym_regex] = STATE(1806), + [sym_regex_constant] = STATE(1806), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1806), + [aux_sym_exp_list_repeat1] = STATE(820), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(679), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_CR_LF] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_while] = ACTIONS(679), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_LPAREN2] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_AT] = ACTIONS(663), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [sym__if_else_separator] = ACTIONS(695), + }, + [544] = { + [sym_identifier] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_CR_LF] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(1213), + [sym_continue_statement] = ACTIONS(1213), + [anon_sym_delete] = ACTIONS(1213), + [anon_sym_exit] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_getline] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(1213), + [sym_nextfile_statement] = ACTIONS(1213), + [anon_sym_print] = ACTIONS(1213), + [anon_sym_printf] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_AT] = ACTIONS(1213), + [aux_sym_number_token1] = ACTIONS(1213), + [aux_sym_number_token2] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_asort] = ACTIONS(1213), + [anon_sym_asorti] = ACTIONS(1213), + [anon_sym_bindtextdomain] = ACTIONS(1213), + [anon_sym_compl] = ACTIONS(1213), + [anon_sym_cos] = ACTIONS(1213), + [anon_sym_dcgettext] = ACTIONS(1213), + [anon_sym_dcngettext] = ACTIONS(1213), + [anon_sym_exp] = ACTIONS(1213), + [anon_sym_gensub] = ACTIONS(1213), + [anon_sym_gsub] = ACTIONS(1213), + [anon_sym_index] = ACTIONS(1213), + [anon_sym_int] = ACTIONS(1213), + [anon_sym_isarray] = ACTIONS(1213), + [anon_sym_length] = ACTIONS(1213), + [anon_sym_log] = ACTIONS(1213), + [anon_sym_lshift] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_mktime] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_patsplit] = ACTIONS(1213), + [anon_sym_rand] = ACTIONS(1213), + [anon_sym_rshift] = ACTIONS(1213), + [anon_sym_sin] = ACTIONS(1213), + [anon_sym_split] = ACTIONS(1213), + [anon_sym_sprintf] = ACTIONS(1213), + [anon_sym_sqrt] = ACTIONS(1213), + [anon_sym_srand] = ACTIONS(1213), + [anon_sym_strftime] = ACTIONS(1213), + [anon_sym_strtonum] = ACTIONS(1213), + [anon_sym_sub] = ACTIONS(1213), + [anon_sym_substr] = ACTIONS(1213), + [anon_sym_systime] = ACTIONS(1213), + [anon_sym_tolower] = ACTIONS(1213), + [anon_sym_toupper] = ACTIONS(1213), + [anon_sym_typeof] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(1213), + }, + [545] = { + [sym_identifier] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_CR_LF] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(1209), + [sym_continue_statement] = ACTIONS(1209), + [anon_sym_delete] = ACTIONS(1209), + [anon_sym_exit] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_switch] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_getline] = ACTIONS(1209), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(1209), + [sym_nextfile_statement] = ACTIONS(1209), + [anon_sym_print] = ACTIONS(1209), + [anon_sym_printf] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_AT] = ACTIONS(1209), + [aux_sym_number_token1] = ACTIONS(1209), + [aux_sym_number_token2] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_asort] = ACTIONS(1209), + [anon_sym_asorti] = ACTIONS(1209), + [anon_sym_bindtextdomain] = ACTIONS(1209), + [anon_sym_compl] = ACTIONS(1209), + [anon_sym_cos] = ACTIONS(1209), + [anon_sym_dcgettext] = ACTIONS(1209), + [anon_sym_dcngettext] = ACTIONS(1209), + [anon_sym_exp] = ACTIONS(1209), + [anon_sym_gensub] = ACTIONS(1209), + [anon_sym_gsub] = ACTIONS(1209), + [anon_sym_index] = ACTIONS(1209), + [anon_sym_int] = ACTIONS(1209), + [anon_sym_isarray] = ACTIONS(1209), + [anon_sym_length] = ACTIONS(1209), + [anon_sym_log] = ACTIONS(1209), + [anon_sym_lshift] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_mktime] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_patsplit] = ACTIONS(1209), + [anon_sym_rand] = ACTIONS(1209), + [anon_sym_rshift] = ACTIONS(1209), + [anon_sym_sin] = ACTIONS(1209), + [anon_sym_split] = ACTIONS(1209), + [anon_sym_sprintf] = ACTIONS(1209), + [anon_sym_sqrt] = ACTIONS(1209), + [anon_sym_srand] = ACTIONS(1209), + [anon_sym_strftime] = ACTIONS(1209), + [anon_sym_strtonum] = ACTIONS(1209), + [anon_sym_sub] = ACTIONS(1209), + [anon_sym_substr] = ACTIONS(1209), + [anon_sym_systime] = ACTIONS(1209), + [anon_sym_tolower] = ACTIONS(1209), + [anon_sym_toupper] = ACTIONS(1209), + [anon_sym_typeof] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_POUND] = ACTIONS(1209), + }, + [546] = { + [sym_identifier] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_LF] = ACTIONS(43), + [anon_sym_CR_LF] = ACTIONS(43), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(43), + [anon_sym_for] = ACTIONS(43), + [anon_sym_in] = ACTIONS(1143), + [sym_break_statement] = ACTIONS(43), + [sym_continue_statement] = ACTIONS(43), + [anon_sym_delete] = ACTIONS(43), + [anon_sym_exit] = ACTIONS(43), + [anon_sym_return] = ACTIONS(43), + [anon_sym_switch] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(43), + [anon_sym_getline] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(1145), + [sym_next_statement] = ACTIONS(43), + [sym_nextfile_statement] = ACTIONS(43), + [anon_sym_print] = ACTIONS(43), + [anon_sym_printf] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_AT] = ACTIONS(43), + [aux_sym_number_token1] = ACTIONS(43), + [aux_sym_number_token2] = ACTIONS(43), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_and] = ACTIONS(43), + [anon_sym_asort] = ACTIONS(43), + [anon_sym_asorti] = ACTIONS(43), + [anon_sym_bindtextdomain] = ACTIONS(43), + [anon_sym_compl] = ACTIONS(43), + [anon_sym_cos] = ACTIONS(43), + [anon_sym_dcgettext] = ACTIONS(43), + [anon_sym_dcngettext] = ACTIONS(43), + [anon_sym_exp] = ACTIONS(43), + [anon_sym_gensub] = ACTIONS(43), + [anon_sym_gsub] = ACTIONS(43), + [anon_sym_index] = ACTIONS(43), + [anon_sym_int] = ACTIONS(43), + [anon_sym_isarray] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_log] = ACTIONS(43), + [anon_sym_lshift] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_mktime] = ACTIONS(43), + [anon_sym_or] = ACTIONS(43), + [anon_sym_patsplit] = ACTIONS(43), + [anon_sym_rand] = ACTIONS(43), + [anon_sym_rshift] = ACTIONS(43), + [anon_sym_sin] = ACTIONS(43), + [anon_sym_split] = ACTIONS(43), + [anon_sym_sprintf] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_srand] = ACTIONS(43), + [anon_sym_strftime] = ACTIONS(43), + [anon_sym_strtonum] = ACTIONS(43), + [anon_sym_sub] = ACTIONS(43), + [anon_sym_substr] = ACTIONS(43), + [anon_sym_systime] = ACTIONS(43), + [anon_sym_tolower] = ACTIONS(43), + [anon_sym_toupper] = ACTIONS(43), + [anon_sym_typeof] = ACTIONS(43), + [anon_sym_xor] = ACTIONS(43), + [anon_sym_POUND] = ACTIONS(43), + }, + [547] = { + [sym__getline_exp] = STATE(1840), + [sym_getline_input] = STATE(1840), + [sym_getline_file] = STATE(1840), + [sym__print_args] = STATE(807), + [sym__exp] = STATE(1840), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1840), + [sym_assignment_exp] = STATE(1840), + [sym_piped_io_exp] = STATE(1840), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_exp_list] = STATE(807), + [sym_regex] = STATE(1840), + [sym_regex_constant] = STATE(1840), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1840), + [aux_sym_exp_list_repeat1] = STATE(806), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(679), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_CR_LF] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_while] = ACTIONS(679), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_LPAREN2] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(669), + [anon_sym_DASH_DASH] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(671), + [anon_sym_AT] = ACTIONS(673), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(177), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [548] = { + [sym_array_ref] = STATE(562), + [sym_namespace] = STATE(2489), + [sym_ns_qualified_name] = STATE(564), + [ts_builtin_sym_end] = ACTIONS(729), + [sym_identifier] = ACTIONS(1217), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_BEGIN] = ACTIONS(725), + [anon_sym_END] = ACTIONS(725), + [anon_sym_BEGINFILE] = ACTIONS(725), + [anon_sym_ENDFILE] = ACTIONS(725), + [anon_sym_ATinclude] = ACTIONS(729), + [anon_sym_ATload] = ACTIONS(729), + [anon_sym_ATnamespace] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_in] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_function] = ACTIONS(725), + [anon_sym_func] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(729), + [sym_concatenating_space] = ACTIONS(729), + }, + [549] = { + [sym_array_ref] = STATE(562), + [sym_namespace] = STATE(2489), + [sym_ns_qualified_name] = STATE(562), + [ts_builtin_sym_end] = ACTIONS(729), + [sym_identifier] = ACTIONS(1221), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_BEGIN] = ACTIONS(725), + [anon_sym_END] = ACTIONS(725), + [anon_sym_BEGINFILE] = ACTIONS(725), + [anon_sym_ENDFILE] = ACTIONS(725), + [anon_sym_ATinclude] = ACTIONS(729), + [anon_sym_ATload] = ACTIONS(729), + [anon_sym_ATnamespace] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_in] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_function] = ACTIONS(725), + [anon_sym_func] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(729), + [sym_concatenating_space] = ACTIONS(729), + }, + [550] = { + [sym_array_ref] = STATE(589), + [sym_namespace] = STATE(2467), + [sym_ns_qualified_name] = STATE(589), + [ts_builtin_sym_end] = ACTIONS(729), + [sym_identifier] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_BEGIN] = ACTIONS(725), + [anon_sym_END] = ACTIONS(725), + [anon_sym_BEGINFILE] = ACTIONS(725), + [anon_sym_ENDFILE] = ACTIONS(725), + [anon_sym_ATinclude] = ACTIONS(729), + [anon_sym_ATload] = ACTIONS(729), + [anon_sym_ATnamespace] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_in] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_function] = ACTIONS(725), + [anon_sym_func] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(729), + }, + [551] = { + [sym_array_ref] = STATE(589), + [sym_namespace] = STATE(2467), + [sym_ns_qualified_name] = STATE(590), + [ts_builtin_sym_end] = ACTIONS(729), + [sym_identifier] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_BEGIN] = ACTIONS(725), + [anon_sym_END] = ACTIONS(725), + [anon_sym_BEGINFILE] = ACTIONS(725), + [anon_sym_ENDFILE] = ACTIONS(725), + [anon_sym_ATinclude] = ACTIONS(729), + [anon_sym_ATload] = ACTIONS(729), + [anon_sym_ATnamespace] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_in] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_getline] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(725), + [aux_sym_number_token1] = ACTIONS(725), + [aux_sym_number_token2] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_function] = ACTIONS(725), + [anon_sym_func] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_asort] = ACTIONS(725), + [anon_sym_asorti] = ACTIONS(725), + [anon_sym_bindtextdomain] = ACTIONS(725), + [anon_sym_compl] = ACTIONS(725), + [anon_sym_cos] = ACTIONS(725), + [anon_sym_dcgettext] = ACTIONS(725), + [anon_sym_dcngettext] = ACTIONS(725), + [anon_sym_exp] = ACTIONS(725), + [anon_sym_gensub] = ACTIONS(725), + [anon_sym_gsub] = ACTIONS(725), + [anon_sym_index] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_isarray] = ACTIONS(725), + [anon_sym_length] = ACTIONS(725), + [anon_sym_log] = ACTIONS(725), + [anon_sym_lshift] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_mktime] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_patsplit] = ACTIONS(725), + [anon_sym_rand] = ACTIONS(725), + [anon_sym_rshift] = ACTIONS(725), + [anon_sym_sin] = ACTIONS(725), + [anon_sym_split] = ACTIONS(725), + [anon_sym_sprintf] = ACTIONS(725), + [anon_sym_sqrt] = ACTIONS(725), + [anon_sym_srand] = ACTIONS(725), + [anon_sym_strftime] = ACTIONS(725), + [anon_sym_strtonum] = ACTIONS(725), + [anon_sym_sub] = ACTIONS(725), + [anon_sym_substr] = ACTIONS(725), + [anon_sym_systime] = ACTIONS(725), + [anon_sym_tolower] = ACTIONS(725), + [anon_sym_toupper] = ACTIONS(725), + [anon_sym_typeof] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(729), + }, + [552] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_BEGIN] = ACTIONS(765), + [anon_sym_END] = ACTIONS(765), + [anon_sym_BEGINFILE] = ACTIONS(765), + [anon_sym_ENDFILE] = ACTIONS(765), + [anon_sym_ATinclude] = ACTIONS(767), + [anon_sym_ATload] = ACTIONS(767), + [anon_sym_ATnamespace] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_in] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_PERCENT] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_function] = ACTIONS(765), + [anon_sym_func] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + [sym_concatenating_space] = ACTIONS(767), + }, + [553] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + [sym_concatenating_space] = ACTIONS(759), + }, + [554] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + [sym_concatenating_space] = ACTIONS(759), + }, + [555] = { + [ts_builtin_sym_end] = ACTIONS(803), + [sym_identifier] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_BEGIN] = ACTIONS(801), + [anon_sym_END] = ACTIONS(801), + [anon_sym_BEGINFILE] = ACTIONS(801), + [anon_sym_ENDFILE] = ACTIONS(801), + [anon_sym_ATinclude] = ACTIONS(803), + [anon_sym_ATload] = ACTIONS(803), + [anon_sym_ATnamespace] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(803), + [anon_sym_getline] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_AMP_AMP] = ACTIONS(803), + [anon_sym_PIPE_PIPE] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_AT] = ACTIONS(801), + [aux_sym_number_token1] = ACTIONS(801), + [aux_sym_number_token2] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_function] = ACTIONS(801), + [anon_sym_func] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_asort] = ACTIONS(801), + [anon_sym_asorti] = ACTIONS(801), + [anon_sym_bindtextdomain] = ACTIONS(801), + [anon_sym_compl] = ACTIONS(801), + [anon_sym_cos] = ACTIONS(801), + [anon_sym_dcgettext] = ACTIONS(801), + [anon_sym_dcngettext] = ACTIONS(801), + [anon_sym_exp] = ACTIONS(801), + [anon_sym_gensub] = ACTIONS(801), + [anon_sym_gsub] = ACTIONS(801), + [anon_sym_index] = ACTIONS(801), + [anon_sym_int] = ACTIONS(801), + [anon_sym_isarray] = ACTIONS(801), + [anon_sym_length] = ACTIONS(801), + [anon_sym_log] = ACTIONS(801), + [anon_sym_lshift] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_mktime] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_patsplit] = ACTIONS(801), + [anon_sym_rand] = ACTIONS(801), + [anon_sym_rshift] = ACTIONS(801), + [anon_sym_sin] = ACTIONS(801), + [anon_sym_split] = ACTIONS(801), + [anon_sym_sprintf] = ACTIONS(801), + [anon_sym_sqrt] = ACTIONS(801), + [anon_sym_srand] = ACTIONS(801), + [anon_sym_strftime] = ACTIONS(801), + [anon_sym_strtonum] = ACTIONS(801), + [anon_sym_sub] = ACTIONS(801), + [anon_sym_substr] = ACTIONS(801), + [anon_sym_systime] = ACTIONS(801), + [anon_sym_tolower] = ACTIONS(801), + [anon_sym_toupper] = ACTIONS(801), + [anon_sym_typeof] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(803), + }, + [556] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_BEGIN] = ACTIONS(765), + [anon_sym_END] = ACTIONS(765), + [anon_sym_BEGINFILE] = ACTIONS(765), + [anon_sym_ENDFILE] = ACTIONS(765), + [anon_sym_ATinclude] = ACTIONS(767), + [anon_sym_ATload] = ACTIONS(767), + [anon_sym_ATnamespace] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_in] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_PERCENT] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_function] = ACTIONS(765), + [anon_sym_func] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + [sym_concatenating_space] = ACTIONS(767), + }, + [557] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + }, + [558] = { + [ts_builtin_sym_end] = ACTIONS(793), + [sym_identifier] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_BEGIN] = ACTIONS(789), + [anon_sym_END] = ACTIONS(789), + [anon_sym_BEGINFILE] = ACTIONS(789), + [anon_sym_ENDFILE] = ACTIONS(789), + [anon_sym_ATinclude] = ACTIONS(793), + [anon_sym_ATload] = ACTIONS(793), + [anon_sym_ATnamespace] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_in] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_getline] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_PIPE_AMP] = ACTIONS(793), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(793), + [sym_regex_flags] = ACTIONS(1237), + [anon_sym_AT] = ACTIONS(789), + [aux_sym_number_token1] = ACTIONS(789), + [aux_sym_number_token2] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(793), + [anon_sym_function] = ACTIONS(789), + [anon_sym_func] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_asort] = ACTIONS(789), + [anon_sym_asorti] = ACTIONS(789), + [anon_sym_bindtextdomain] = ACTIONS(789), + [anon_sym_compl] = ACTIONS(789), + [anon_sym_cos] = ACTIONS(789), + [anon_sym_dcgettext] = ACTIONS(789), + [anon_sym_dcngettext] = ACTIONS(789), + [anon_sym_exp] = ACTIONS(789), + [anon_sym_gensub] = ACTIONS(789), + [anon_sym_gsub] = ACTIONS(789), + [anon_sym_index] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_isarray] = ACTIONS(789), + [anon_sym_length] = ACTIONS(789), + [anon_sym_log] = ACTIONS(789), + [anon_sym_lshift] = ACTIONS(789), + [anon_sym_match] = ACTIONS(789), + [anon_sym_mktime] = ACTIONS(789), + [anon_sym_or] = ACTIONS(789), + [anon_sym_patsplit] = ACTIONS(789), + [anon_sym_rand] = ACTIONS(789), + [anon_sym_rshift] = ACTIONS(789), + [anon_sym_sin] = ACTIONS(789), + [anon_sym_split] = ACTIONS(789), + [anon_sym_sprintf] = ACTIONS(789), + [anon_sym_sqrt] = ACTIONS(789), + [anon_sym_srand] = ACTIONS(789), + [anon_sym_strftime] = ACTIONS(789), + [anon_sym_strtonum] = ACTIONS(789), + [anon_sym_sub] = ACTIONS(789), + [anon_sym_substr] = ACTIONS(789), + [anon_sym_systime] = ACTIONS(789), + [anon_sym_tolower] = ACTIONS(789), + [anon_sym_toupper] = ACTIONS(789), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(793), + [sym_concatenating_space] = ACTIONS(793), + }, + [559] = { + [ts_builtin_sym_end] = ACTIONS(771), + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_BEGIN] = ACTIONS(769), + [anon_sym_END] = ACTIONS(769), + [anon_sym_BEGINFILE] = ACTIONS(769), + [anon_sym_ENDFILE] = ACTIONS(769), + [anon_sym_ATinclude] = ACTIONS(771), + [anon_sym_ATload] = ACTIONS(771), + [anon_sym_ATnamespace] = ACTIONS(771), + [anon_sym_LPAREN] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_in] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_QMARK] = ACTIONS(771), + [anon_sym_CARET] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_BANG_TILDE] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_function] = ACTIONS(769), + [anon_sym_func] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(771), + }, + [560] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + }, + [561] = { + [ts_builtin_sym_end] = ACTIONS(771), + [sym_identifier] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_BEGIN] = ACTIONS(769), + [anon_sym_END] = ACTIONS(769), + [anon_sym_BEGINFILE] = ACTIONS(769), + [anon_sym_ENDFILE] = ACTIONS(769), + [anon_sym_ATinclude] = ACTIONS(771), + [anon_sym_ATload] = ACTIONS(771), + [anon_sym_ATnamespace] = ACTIONS(771), + [anon_sym_LPAREN] = ACTIONS(771), + [anon_sym_in] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_getline] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_QMARK] = ACTIONS(771), + [anon_sym_CARET] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_BANG_TILDE] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_AT] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(769), + [aux_sym_number_token2] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [anon_sym_function] = ACTIONS(769), + [anon_sym_func] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_asort] = ACTIONS(769), + [anon_sym_asorti] = ACTIONS(769), + [anon_sym_bindtextdomain] = ACTIONS(769), + [anon_sym_compl] = ACTIONS(769), + [anon_sym_cos] = ACTIONS(769), + [anon_sym_dcgettext] = ACTIONS(769), + [anon_sym_dcngettext] = ACTIONS(769), + [anon_sym_exp] = ACTIONS(769), + [anon_sym_gensub] = ACTIONS(769), + [anon_sym_gsub] = ACTIONS(769), + [anon_sym_index] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_isarray] = ACTIONS(769), + [anon_sym_length] = ACTIONS(769), + [anon_sym_log] = ACTIONS(769), + [anon_sym_lshift] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_mktime] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_patsplit] = ACTIONS(769), + [anon_sym_rand] = ACTIONS(769), + [anon_sym_rshift] = ACTIONS(769), + [anon_sym_sin] = ACTIONS(769), + [anon_sym_split] = ACTIONS(769), + [anon_sym_sprintf] = ACTIONS(769), + [anon_sym_sqrt] = ACTIONS(769), + [anon_sym_srand] = ACTIONS(769), + [anon_sym_strftime] = ACTIONS(769), + [anon_sym_strtonum] = ACTIONS(769), + [anon_sym_sub] = ACTIONS(769), + [anon_sym_substr] = ACTIONS(769), + [anon_sym_systime] = ACTIONS(769), + [anon_sym_tolower] = ACTIONS(769), + [anon_sym_toupper] = ACTIONS(769), + [anon_sym_typeof] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(771), + [sym_concatenating_space] = ACTIONS(771), + }, + [562] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + [sym_concatenating_space] = ACTIONS(759), + }, + [563] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_BEGIN] = ACTIONS(765), + [anon_sym_END] = ACTIONS(765), + [anon_sym_BEGINFILE] = ACTIONS(765), + [anon_sym_ENDFILE] = ACTIONS(765), + [anon_sym_ATinclude] = ACTIONS(767), + [anon_sym_ATload] = ACTIONS(767), + [anon_sym_ATnamespace] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_in] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_PERCENT] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_function] = ACTIONS(765), + [anon_sym_func] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + }, + [564] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + [sym_concatenating_space] = ACTIONS(759), + }, + [565] = { + [ts_builtin_sym_end] = ACTIONS(803), + [sym_identifier] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_BEGIN] = ACTIONS(801), + [anon_sym_END] = ACTIONS(801), + [anon_sym_BEGINFILE] = ACTIONS(801), + [anon_sym_ENDFILE] = ACTIONS(801), + [anon_sym_ATinclude] = ACTIONS(803), + [anon_sym_ATload] = ACTIONS(803), + [anon_sym_ATnamespace] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(803), + [anon_sym_getline] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_AMP_AMP] = ACTIONS(803), + [anon_sym_PIPE_PIPE] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_AT] = ACTIONS(801), + [aux_sym_number_token1] = ACTIONS(801), + [aux_sym_number_token2] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_function] = ACTIONS(801), + [anon_sym_func] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_asort] = ACTIONS(801), + [anon_sym_asorti] = ACTIONS(801), + [anon_sym_bindtextdomain] = ACTIONS(801), + [anon_sym_compl] = ACTIONS(801), + [anon_sym_cos] = ACTIONS(801), + [anon_sym_dcgettext] = ACTIONS(801), + [anon_sym_dcngettext] = ACTIONS(801), + [anon_sym_exp] = ACTIONS(801), + [anon_sym_gensub] = ACTIONS(801), + [anon_sym_gsub] = ACTIONS(801), + [anon_sym_index] = ACTIONS(801), + [anon_sym_int] = ACTIONS(801), + [anon_sym_isarray] = ACTIONS(801), + [anon_sym_length] = ACTIONS(801), + [anon_sym_log] = ACTIONS(801), + [anon_sym_lshift] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_mktime] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_patsplit] = ACTIONS(801), + [anon_sym_rand] = ACTIONS(801), + [anon_sym_rshift] = ACTIONS(801), + [anon_sym_sin] = ACTIONS(801), + [anon_sym_split] = ACTIONS(801), + [anon_sym_sprintf] = ACTIONS(801), + [anon_sym_sqrt] = ACTIONS(801), + [anon_sym_srand] = ACTIONS(801), + [anon_sym_strftime] = ACTIONS(801), + [anon_sym_strtonum] = ACTIONS(801), + [anon_sym_sub] = ACTIONS(801), + [anon_sym_substr] = ACTIONS(801), + [anon_sym_systime] = ACTIONS(801), + [anon_sym_tolower] = ACTIONS(801), + [anon_sym_toupper] = ACTIONS(801), + [anon_sym_typeof] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(803), + [sym_concatenating_space] = ACTIONS(803), + }, + [566] = { + [sym__getline_exp] = STATE(1774), + [sym_getline_input] = STATE(1774), + [sym_getline_file] = STATE(1774), + [sym__exp] = STATE(1774), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1774), + [sym_assignment_exp] = STATE(1774), + [sym_piped_io_exp] = STATE(1774), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1774), + [sym_regex_constant] = STATE(1774), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1774), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(963), + [anon_sym_CR_LF] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_case] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(963), + [sym__if_else_separator] = ACTIONS(965), + }, + [567] = { + [sym__getline_exp] = STATE(1775), + [sym_getline_input] = STATE(1775), + [sym_getline_file] = STATE(1775), + [sym__exp] = STATE(1775), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1775), + [sym_assignment_exp] = STATE(1775), + [sym_piped_io_exp] = STATE(1775), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1775), + [sym_regex_constant] = STATE(1775), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1775), + [sym_identifier] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1025), + [anon_sym_CR_LF] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_case] = ACTIONS(1025), + [anon_sym_default] = ACTIONS(1025), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(1025), + [sym__if_else_separator] = ACTIONS(1027), + }, + [568] = { + [ts_builtin_sym_end] = ACTIONS(799), + [sym_identifier] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(799), + [anon_sym_BEGIN] = ACTIONS(795), + [anon_sym_END] = ACTIONS(795), + [anon_sym_BEGINFILE] = ACTIONS(795), + [anon_sym_ENDFILE] = ACTIONS(795), + [anon_sym_ATinclude] = ACTIONS(799), + [anon_sym_ATload] = ACTIONS(799), + [anon_sym_ATnamespace] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_in] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_getline] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_PIPE_AMP] = ACTIONS(799), + [anon_sym_QMARK] = ACTIONS(799), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_STAR_STAR] = ACTIONS(799), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(799), + [anon_sym_PERCENT] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(799), + [anon_sym_GT_EQ] = ACTIONS(799), + [anon_sym_EQ_EQ] = ACTIONS(799), + [anon_sym_BANG_EQ] = ACTIONS(799), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_BANG_TILDE] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(799), + [anon_sym_DASH_DASH] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(799), + [sym_regex_flags] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(795), + [aux_sym_number_token1] = ACTIONS(795), + [aux_sym_number_token2] = ACTIONS(799), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_function] = ACTIONS(795), + [anon_sym_func] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_asort] = ACTIONS(795), + [anon_sym_asorti] = ACTIONS(795), + [anon_sym_bindtextdomain] = ACTIONS(795), + [anon_sym_compl] = ACTIONS(795), + [anon_sym_cos] = ACTIONS(795), + [anon_sym_dcgettext] = ACTIONS(795), + [anon_sym_dcngettext] = ACTIONS(795), + [anon_sym_exp] = ACTIONS(795), + [anon_sym_gensub] = ACTIONS(795), + [anon_sym_gsub] = ACTIONS(795), + [anon_sym_index] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_isarray] = ACTIONS(795), + [anon_sym_length] = ACTIONS(795), + [anon_sym_log] = ACTIONS(795), + [anon_sym_lshift] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_mktime] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_patsplit] = ACTIONS(795), + [anon_sym_rand] = ACTIONS(795), + [anon_sym_rshift] = ACTIONS(795), + [anon_sym_sin] = ACTIONS(795), + [anon_sym_split] = ACTIONS(795), + [anon_sym_sprintf] = ACTIONS(795), + [anon_sym_sqrt] = ACTIONS(795), + [anon_sym_srand] = ACTIONS(795), + [anon_sym_strftime] = ACTIONS(795), + [anon_sym_strtonum] = ACTIONS(795), + [anon_sym_sub] = ACTIONS(795), + [anon_sym_substr] = ACTIONS(795), + [anon_sym_systime] = ACTIONS(795), + [anon_sym_tolower] = ACTIONS(795), + [anon_sym_toupper] = ACTIONS(795), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(799), + [sym_concatenating_space] = ACTIONS(799), + }, + [569] = { + [ts_builtin_sym_end] = ACTIONS(865), + [sym_identifier] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_BEGIN] = ACTIONS(863), + [anon_sym_END] = ACTIONS(863), + [anon_sym_BEGINFILE] = ACTIONS(863), + [anon_sym_ENDFILE] = ACTIONS(863), + [anon_sym_ATinclude] = ACTIONS(865), + [anon_sym_ATload] = ACTIONS(865), + [anon_sym_ATnamespace] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_in] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_getline] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(863), + [aux_sym_number_token1] = ACTIONS(863), + [aux_sym_number_token2] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_function] = ACTIONS(863), + [anon_sym_func] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_asort] = ACTIONS(863), + [anon_sym_asorti] = ACTIONS(863), + [anon_sym_bindtextdomain] = ACTIONS(863), + [anon_sym_compl] = ACTIONS(863), + [anon_sym_cos] = ACTIONS(863), + [anon_sym_dcgettext] = ACTIONS(863), + [anon_sym_dcngettext] = ACTIONS(863), + [anon_sym_exp] = ACTIONS(863), + [anon_sym_gensub] = ACTIONS(863), + [anon_sym_gsub] = ACTIONS(863), + [anon_sym_index] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_isarray] = ACTIONS(863), + [anon_sym_length] = ACTIONS(863), + [anon_sym_log] = ACTIONS(863), + [anon_sym_lshift] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mktime] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_patsplit] = ACTIONS(863), + [anon_sym_rand] = ACTIONS(863), + [anon_sym_rshift] = ACTIONS(863), + [anon_sym_sin] = ACTIONS(863), + [anon_sym_split] = ACTIONS(863), + [anon_sym_sprintf] = ACTIONS(863), + [anon_sym_sqrt] = ACTIONS(863), + [anon_sym_srand] = ACTIONS(863), + [anon_sym_strftime] = ACTIONS(863), + [anon_sym_strtonum] = ACTIONS(863), + [anon_sym_sub] = ACTIONS(863), + [anon_sym_substr] = ACTIONS(863), + [anon_sym_systime] = ACTIONS(863), + [anon_sym_tolower] = ACTIONS(863), + [anon_sym_toupper] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(865), + [sym_concatenating_space] = ACTIONS(865), + }, + [570] = { + [ts_builtin_sym_end] = ACTIONS(875), + [sym_identifier] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_BEGIN] = ACTIONS(871), + [anon_sym_END] = ACTIONS(871), + [anon_sym_BEGINFILE] = ACTIONS(871), + [anon_sym_ENDFILE] = ACTIONS(871), + [anon_sym_ATinclude] = ACTIONS(875), + [anon_sym_ATload] = ACTIONS(875), + [anon_sym_ATnamespace] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_getline] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(871), + [aux_sym_number_token2] = ACTIONS(875), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_function] = ACTIONS(871), + [anon_sym_func] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_asort] = ACTIONS(871), + [anon_sym_asorti] = ACTIONS(871), + [anon_sym_bindtextdomain] = ACTIONS(871), + [anon_sym_compl] = ACTIONS(871), + [anon_sym_cos] = ACTIONS(871), + [anon_sym_dcgettext] = ACTIONS(871), + [anon_sym_dcngettext] = ACTIONS(871), + [anon_sym_exp] = ACTIONS(871), + [anon_sym_gensub] = ACTIONS(871), + [anon_sym_gsub] = ACTIONS(871), + [anon_sym_index] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_isarray] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_log] = ACTIONS(871), + [anon_sym_lshift] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mktime] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_patsplit] = ACTIONS(871), + [anon_sym_rand] = ACTIONS(871), + [anon_sym_rshift] = ACTIONS(871), + [anon_sym_sin] = ACTIONS(871), + [anon_sym_split] = ACTIONS(871), + [anon_sym_sprintf] = ACTIONS(871), + [anon_sym_sqrt] = ACTIONS(871), + [anon_sym_srand] = ACTIONS(871), + [anon_sym_strftime] = ACTIONS(871), + [anon_sym_strtonum] = ACTIONS(871), + [anon_sym_sub] = ACTIONS(871), + [anon_sym_substr] = ACTIONS(871), + [anon_sym_systime] = ACTIONS(871), + [anon_sym_tolower] = ACTIONS(871), + [anon_sym_toupper] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_POUND] = ACTIONS(875), + [sym_concatenating_space] = ACTIONS(875), + }, + [571] = { + [ts_builtin_sym_end] = ACTIONS(833), + [sym_identifier] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(833), + [anon_sym_BEGIN] = ACTIONS(831), + [anon_sym_END] = ACTIONS(831), + [anon_sym_BEGINFILE] = ACTIONS(831), + [anon_sym_ENDFILE] = ACTIONS(831), + [anon_sym_ATinclude] = ACTIONS(833), + [anon_sym_ATload] = ACTIONS(833), + [anon_sym_ATnamespace] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_in] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_getline] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_PIPE_AMP] = ACTIONS(833), + [anon_sym_QMARK] = ACTIONS(833), + [anon_sym_CARET] = ACTIONS(833), + [anon_sym_STAR_STAR] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_PERCENT] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [anon_sym_AMP_AMP] = ACTIONS(833), + [anon_sym_PIPE_PIPE] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_AT] = ACTIONS(831), + [aux_sym_number_token1] = ACTIONS(831), + [aux_sym_number_token2] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_function] = ACTIONS(831), + [anon_sym_func] = ACTIONS(831), + [anon_sym_and] = ACTIONS(831), + [anon_sym_asort] = ACTIONS(831), + [anon_sym_asorti] = ACTIONS(831), + [anon_sym_bindtextdomain] = ACTIONS(831), + [anon_sym_compl] = ACTIONS(831), + [anon_sym_cos] = ACTIONS(831), + [anon_sym_dcgettext] = ACTIONS(831), + [anon_sym_dcngettext] = ACTIONS(831), + [anon_sym_exp] = ACTIONS(831), + [anon_sym_gensub] = ACTIONS(831), + [anon_sym_gsub] = ACTIONS(831), + [anon_sym_index] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_isarray] = ACTIONS(831), + [anon_sym_length] = ACTIONS(831), + [anon_sym_log] = ACTIONS(831), + [anon_sym_lshift] = ACTIONS(831), + [anon_sym_match] = ACTIONS(831), + [anon_sym_mktime] = ACTIONS(831), + [anon_sym_or] = ACTIONS(831), + [anon_sym_patsplit] = ACTIONS(831), + [anon_sym_rand] = ACTIONS(831), + [anon_sym_rshift] = ACTIONS(831), + [anon_sym_sin] = ACTIONS(831), + [anon_sym_split] = ACTIONS(831), + [anon_sym_sprintf] = ACTIONS(831), + [anon_sym_sqrt] = ACTIONS(831), + [anon_sym_srand] = ACTIONS(831), + [anon_sym_strftime] = ACTIONS(831), + [anon_sym_strtonum] = ACTIONS(831), + [anon_sym_sub] = ACTIONS(831), + [anon_sym_substr] = ACTIONS(831), + [anon_sym_systime] = ACTIONS(831), + [anon_sym_tolower] = ACTIONS(831), + [anon_sym_toupper] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(833), + [sym_concatenating_space] = ACTIONS(833), + }, + [572] = { + [ts_builtin_sym_end] = ACTIONS(829), + [sym_identifier] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(829), + [anon_sym_BEGIN] = ACTIONS(809), + [anon_sym_END] = ACTIONS(809), + [anon_sym_BEGINFILE] = ACTIONS(809), + [anon_sym_ENDFILE] = ACTIONS(809), + [anon_sym_ATinclude] = ACTIONS(829), + [anon_sym_ATload] = ACTIONS(829), + [anon_sym_ATnamespace] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_getline] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(829), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_AT] = ACTIONS(809), + [aux_sym_number_token1] = ACTIONS(809), + [aux_sym_number_token2] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [anon_sym_function] = ACTIONS(809), + [anon_sym_func] = ACTIONS(809), + [anon_sym_and] = ACTIONS(809), + [anon_sym_asort] = ACTIONS(809), + [anon_sym_asorti] = ACTIONS(809), + [anon_sym_bindtextdomain] = ACTIONS(809), + [anon_sym_compl] = ACTIONS(809), + [anon_sym_cos] = ACTIONS(809), + [anon_sym_dcgettext] = ACTIONS(809), + [anon_sym_dcngettext] = ACTIONS(809), + [anon_sym_exp] = ACTIONS(809), + [anon_sym_gensub] = ACTIONS(809), + [anon_sym_gsub] = ACTIONS(809), + [anon_sym_index] = ACTIONS(809), + [anon_sym_int] = ACTIONS(809), + [anon_sym_isarray] = ACTIONS(809), + [anon_sym_length] = ACTIONS(809), + [anon_sym_log] = ACTIONS(809), + [anon_sym_lshift] = ACTIONS(809), + [anon_sym_match] = ACTIONS(809), + [anon_sym_mktime] = ACTIONS(809), + [anon_sym_or] = ACTIONS(809), + [anon_sym_patsplit] = ACTIONS(809), + [anon_sym_rand] = ACTIONS(809), + [anon_sym_rshift] = ACTIONS(809), + [anon_sym_sin] = ACTIONS(809), + [anon_sym_split] = ACTIONS(809), + [anon_sym_sprintf] = ACTIONS(809), + [anon_sym_sqrt] = ACTIONS(809), + [anon_sym_srand] = ACTIONS(809), + [anon_sym_strftime] = ACTIONS(809), + [anon_sym_strtonum] = ACTIONS(809), + [anon_sym_sub] = ACTIONS(809), + [anon_sym_substr] = ACTIONS(809), + [anon_sym_systime] = ACTIONS(809), + [anon_sym_tolower] = ACTIONS(809), + [anon_sym_toupper] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(809), + [anon_sym_xor] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(829), + [sym_concatenating_space] = ACTIONS(829), + }, + [573] = { + [ts_builtin_sym_end] = ACTIONS(895), + [sym_identifier] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_BEGIN] = ACTIONS(893), + [anon_sym_END] = ACTIONS(893), + [anon_sym_BEGINFILE] = ACTIONS(893), + [anon_sym_ENDFILE] = ACTIONS(893), + [anon_sym_ATinclude] = ACTIONS(895), + [anon_sym_ATload] = ACTIONS(895), + [anon_sym_ATnamespace] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_getline] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_DASH_DASH] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(893), + [aux_sym_number_token1] = ACTIONS(893), + [aux_sym_number_token2] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [anon_sym_function] = ACTIONS(893), + [anon_sym_func] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_asort] = ACTIONS(893), + [anon_sym_asorti] = ACTIONS(893), + [anon_sym_bindtextdomain] = ACTIONS(893), + [anon_sym_compl] = ACTIONS(893), + [anon_sym_cos] = ACTIONS(893), + [anon_sym_dcgettext] = ACTIONS(893), + [anon_sym_dcngettext] = ACTIONS(893), + [anon_sym_exp] = ACTIONS(893), + [anon_sym_gensub] = ACTIONS(893), + [anon_sym_gsub] = ACTIONS(893), + [anon_sym_index] = ACTIONS(893), + [anon_sym_int] = ACTIONS(893), + [anon_sym_isarray] = ACTIONS(893), + [anon_sym_length] = ACTIONS(893), + [anon_sym_log] = ACTIONS(893), + [anon_sym_lshift] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_mktime] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_patsplit] = ACTIONS(893), + [anon_sym_rand] = ACTIONS(893), + [anon_sym_rshift] = ACTIONS(893), + [anon_sym_sin] = ACTIONS(893), + [anon_sym_split] = ACTIONS(893), + [anon_sym_sprintf] = ACTIONS(893), + [anon_sym_sqrt] = ACTIONS(893), + [anon_sym_srand] = ACTIONS(893), + [anon_sym_strftime] = ACTIONS(893), + [anon_sym_strtonum] = ACTIONS(893), + [anon_sym_sub] = ACTIONS(893), + [anon_sym_substr] = ACTIONS(893), + [anon_sym_systime] = ACTIONS(893), + [anon_sym_tolower] = ACTIONS(893), + [anon_sym_toupper] = ACTIONS(893), + [anon_sym_typeof] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(895), + [sym_concatenating_space] = ACTIONS(895), + }, + [574] = { + [ts_builtin_sym_end] = ACTIONS(899), + [sym_identifier] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_BEGIN] = ACTIONS(897), + [anon_sym_END] = ACTIONS(897), + [anon_sym_BEGINFILE] = ACTIONS(897), + [anon_sym_ENDFILE] = ACTIONS(897), + [anon_sym_ATinclude] = ACTIONS(899), + [anon_sym_ATload] = ACTIONS(899), + [anon_sym_ATnamespace] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_getline] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_DASH_DASH] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(897), + [aux_sym_number_token1] = ACTIONS(897), + [aux_sym_number_token2] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [anon_sym_function] = ACTIONS(897), + [anon_sym_func] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_asort] = ACTIONS(897), + [anon_sym_asorti] = ACTIONS(897), + [anon_sym_bindtextdomain] = ACTIONS(897), + [anon_sym_compl] = ACTIONS(897), + [anon_sym_cos] = ACTIONS(897), + [anon_sym_dcgettext] = ACTIONS(897), + [anon_sym_dcngettext] = ACTIONS(897), + [anon_sym_exp] = ACTIONS(897), + [anon_sym_gensub] = ACTIONS(897), + [anon_sym_gsub] = ACTIONS(897), + [anon_sym_index] = ACTIONS(897), + [anon_sym_int] = ACTIONS(897), + [anon_sym_isarray] = ACTIONS(897), + [anon_sym_length] = ACTIONS(897), + [anon_sym_log] = ACTIONS(897), + [anon_sym_lshift] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_mktime] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_patsplit] = ACTIONS(897), + [anon_sym_rand] = ACTIONS(897), + [anon_sym_rshift] = ACTIONS(897), + [anon_sym_sin] = ACTIONS(897), + [anon_sym_split] = ACTIONS(897), + [anon_sym_sprintf] = ACTIONS(897), + [anon_sym_sqrt] = ACTIONS(897), + [anon_sym_srand] = ACTIONS(897), + [anon_sym_strftime] = ACTIONS(897), + [anon_sym_strtonum] = ACTIONS(897), + [anon_sym_sub] = ACTIONS(897), + [anon_sym_substr] = ACTIONS(897), + [anon_sym_systime] = ACTIONS(897), + [anon_sym_tolower] = ACTIONS(897), + [anon_sym_toupper] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(899), + [sym_concatenating_space] = ACTIONS(899), + }, + [575] = { + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_BEGIN] = ACTIONS(901), + [anon_sym_END] = ACTIONS(901), + [anon_sym_BEGINFILE] = ACTIONS(901), + [anon_sym_ENDFILE] = ACTIONS(901), + [anon_sym_ATinclude] = ACTIONS(903), + [anon_sym_ATload] = ACTIONS(903), + [anon_sym_ATnamespace] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_getline] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PIPE_AMP] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(901), + [aux_sym_number_token1] = ACTIONS(901), + [aux_sym_number_token2] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [anon_sym_function] = ACTIONS(901), + [anon_sym_func] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_asort] = ACTIONS(901), + [anon_sym_asorti] = ACTIONS(901), + [anon_sym_bindtextdomain] = ACTIONS(901), + [anon_sym_compl] = ACTIONS(901), + [anon_sym_cos] = ACTIONS(901), + [anon_sym_dcgettext] = ACTIONS(901), + [anon_sym_dcngettext] = ACTIONS(901), + [anon_sym_exp] = ACTIONS(901), + [anon_sym_gensub] = ACTIONS(901), + [anon_sym_gsub] = ACTIONS(901), + [anon_sym_index] = ACTIONS(901), + [anon_sym_int] = ACTIONS(901), + [anon_sym_isarray] = ACTIONS(901), + [anon_sym_length] = ACTIONS(901), + [anon_sym_log] = ACTIONS(901), + [anon_sym_lshift] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mktime] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_patsplit] = ACTIONS(901), + [anon_sym_rand] = ACTIONS(901), + [anon_sym_rshift] = ACTIONS(901), + [anon_sym_sin] = ACTIONS(901), + [anon_sym_split] = ACTIONS(901), + [anon_sym_sprintf] = ACTIONS(901), + [anon_sym_sqrt] = ACTIONS(901), + [anon_sym_srand] = ACTIONS(901), + [anon_sym_strftime] = ACTIONS(901), + [anon_sym_strtonum] = ACTIONS(901), + [anon_sym_sub] = ACTIONS(901), + [anon_sym_substr] = ACTIONS(901), + [anon_sym_systime] = ACTIONS(901), + [anon_sym_tolower] = ACTIONS(901), + [anon_sym_toupper] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(903), + [sym_concatenating_space] = ACTIONS(903), + }, + [576] = { + [ts_builtin_sym_end] = ACTIONS(853), + [sym_identifier] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_BEGIN] = ACTIONS(851), + [anon_sym_END] = ACTIONS(851), + [anon_sym_BEGINFILE] = ACTIONS(851), + [anon_sym_ENDFILE] = ACTIONS(851), + [anon_sym_ATinclude] = ACTIONS(853), + [anon_sym_ATload] = ACTIONS(853), + [anon_sym_ATnamespace] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_in] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_getline] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_QMARK] = ACTIONS(853), + [anon_sym_CARET] = ACTIONS(853), + [anon_sym_STAR_STAR] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_PERCENT] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_BANG_TILDE] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(851), + [aux_sym_number_token1] = ACTIONS(851), + [aux_sym_number_token2] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_function] = ACTIONS(851), + [anon_sym_func] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_asort] = ACTIONS(851), + [anon_sym_asorti] = ACTIONS(851), + [anon_sym_bindtextdomain] = ACTIONS(851), + [anon_sym_compl] = ACTIONS(851), + [anon_sym_cos] = ACTIONS(851), + [anon_sym_dcgettext] = ACTIONS(851), + [anon_sym_dcngettext] = ACTIONS(851), + [anon_sym_exp] = ACTIONS(851), + [anon_sym_gensub] = ACTIONS(851), + [anon_sym_gsub] = ACTIONS(851), + [anon_sym_index] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_isarray] = ACTIONS(851), + [anon_sym_length] = ACTIONS(851), + [anon_sym_log] = ACTIONS(851), + [anon_sym_lshift] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_mktime] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_patsplit] = ACTIONS(851), + [anon_sym_rand] = ACTIONS(851), + [anon_sym_rshift] = ACTIONS(851), + [anon_sym_sin] = ACTIONS(851), + [anon_sym_split] = ACTIONS(851), + [anon_sym_sprintf] = ACTIONS(851), + [anon_sym_sqrt] = ACTIONS(851), + [anon_sym_srand] = ACTIONS(851), + [anon_sym_strftime] = ACTIONS(851), + [anon_sym_strtonum] = ACTIONS(851), + [anon_sym_sub] = ACTIONS(851), + [anon_sym_substr] = ACTIONS(851), + [anon_sym_systime] = ACTIONS(851), + [anon_sym_tolower] = ACTIONS(851), + [anon_sym_toupper] = ACTIONS(851), + [anon_sym_typeof] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(853), + [sym_concatenating_space] = ACTIONS(853), + }, + [577] = { + [ts_builtin_sym_end] = ACTIONS(909), + [sym_identifier] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(909), + [anon_sym_BEGIN] = ACTIONS(907), + [anon_sym_END] = ACTIONS(907), + [anon_sym_BEGINFILE] = ACTIONS(907), + [anon_sym_ENDFILE] = ACTIONS(907), + [anon_sym_ATinclude] = ACTIONS(909), + [anon_sym_ATload] = ACTIONS(909), + [anon_sym_ATnamespace] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_in] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_getline] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(909), + [anon_sym_QMARK] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE_PIPE] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_AT] = ACTIONS(907), + [aux_sym_number_token1] = ACTIONS(907), + [aux_sym_number_token2] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [anon_sym_function] = ACTIONS(907), + [anon_sym_func] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_asort] = ACTIONS(907), + [anon_sym_asorti] = ACTIONS(907), + [anon_sym_bindtextdomain] = ACTIONS(907), + [anon_sym_compl] = ACTIONS(907), + [anon_sym_cos] = ACTIONS(907), + [anon_sym_dcgettext] = ACTIONS(907), + [anon_sym_dcngettext] = ACTIONS(907), + [anon_sym_exp] = ACTIONS(907), + [anon_sym_gensub] = ACTIONS(907), + [anon_sym_gsub] = ACTIONS(907), + [anon_sym_index] = ACTIONS(907), + [anon_sym_int] = ACTIONS(907), + [anon_sym_isarray] = ACTIONS(907), + [anon_sym_length] = ACTIONS(907), + [anon_sym_log] = ACTIONS(907), + [anon_sym_lshift] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mktime] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_patsplit] = ACTIONS(907), + [anon_sym_rand] = ACTIONS(907), + [anon_sym_rshift] = ACTIONS(907), + [anon_sym_sin] = ACTIONS(907), + [anon_sym_split] = ACTIONS(907), + [anon_sym_sprintf] = ACTIONS(907), + [anon_sym_sqrt] = ACTIONS(907), + [anon_sym_srand] = ACTIONS(907), + [anon_sym_strftime] = ACTIONS(907), + [anon_sym_strtonum] = ACTIONS(907), + [anon_sym_sub] = ACTIONS(907), + [anon_sym_substr] = ACTIONS(907), + [anon_sym_systime] = ACTIONS(907), + [anon_sym_tolower] = ACTIONS(907), + [anon_sym_toupper] = ACTIONS(907), + [anon_sym_typeof] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(909), + [sym_concatenating_space] = ACTIONS(909), + }, + [578] = { + [ts_builtin_sym_end] = ACTIONS(837), + [sym_identifier] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_BEGIN] = ACTIONS(835), + [anon_sym_END] = ACTIONS(835), + [anon_sym_BEGINFILE] = ACTIONS(835), + [anon_sym_ENDFILE] = ACTIONS(835), + [anon_sym_ATinclude] = ACTIONS(837), + [anon_sym_ATload] = ACTIONS(837), + [anon_sym_ATnamespace] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_in] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_getline] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PIPE_AMP] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(837), + [anon_sym_STAR_STAR] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_PERCENT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(837), + [anon_sym_GT_EQ] = ACTIONS(837), + [anon_sym_EQ_EQ] = ACTIONS(837), + [anon_sym_BANG_EQ] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(837), + [anon_sym_BANG_TILDE] = ACTIONS(837), + [anon_sym_AMP_AMP] = ACTIONS(837), + [anon_sym_PIPE_PIPE] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(837), + [anon_sym_DASH_DASH] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(835), + [aux_sym_number_token1] = ACTIONS(835), + [aux_sym_number_token2] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(837), + [anon_sym_function] = ACTIONS(835), + [anon_sym_func] = ACTIONS(835), + [anon_sym_and] = ACTIONS(835), + [anon_sym_asort] = ACTIONS(835), + [anon_sym_asorti] = ACTIONS(835), + [anon_sym_bindtextdomain] = ACTIONS(835), + [anon_sym_compl] = ACTIONS(835), + [anon_sym_cos] = ACTIONS(835), + [anon_sym_dcgettext] = ACTIONS(835), + [anon_sym_dcngettext] = ACTIONS(835), + [anon_sym_exp] = ACTIONS(835), + [anon_sym_gensub] = ACTIONS(835), + [anon_sym_gsub] = ACTIONS(835), + [anon_sym_index] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_isarray] = ACTIONS(835), + [anon_sym_length] = ACTIONS(835), + [anon_sym_log] = ACTIONS(835), + [anon_sym_lshift] = ACTIONS(835), + [anon_sym_match] = ACTIONS(835), + [anon_sym_mktime] = ACTIONS(835), + [anon_sym_or] = ACTIONS(835), + [anon_sym_patsplit] = ACTIONS(835), + [anon_sym_rand] = ACTIONS(835), + [anon_sym_rshift] = ACTIONS(835), + [anon_sym_sin] = ACTIONS(835), + [anon_sym_split] = ACTIONS(835), + [anon_sym_sprintf] = ACTIONS(835), + [anon_sym_sqrt] = ACTIONS(835), + [anon_sym_srand] = ACTIONS(835), + [anon_sym_strftime] = ACTIONS(835), + [anon_sym_strtonum] = ACTIONS(835), + [anon_sym_sub] = ACTIONS(835), + [anon_sym_substr] = ACTIONS(835), + [anon_sym_systime] = ACTIONS(835), + [anon_sym_tolower] = ACTIONS(835), + [anon_sym_toupper] = ACTIONS(835), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(835), + [anon_sym_POUND] = ACTIONS(837), + [sym_concatenating_space] = ACTIONS(837), + }, + [579] = { + [sym__getline_exp] = STATE(1832), + [sym_getline_input] = STATE(1832), + [sym_getline_file] = STATE(1832), + [sym__exp] = STATE(1832), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1832), + [sym_assignment_exp] = STATE(1832), + [sym_piped_io_exp] = STATE(1832), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1832), + [sym_regex_constant] = STATE(1832), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1832), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(963), + [anon_sym_CR_LF] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_case] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [anon_sym_AT] = ACTIONS(173), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(177), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(963), + }, + [580] = { + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_BEGIN] = ACTIONS(713), + [anon_sym_END] = ACTIONS(713), + [anon_sym_BEGINFILE] = ACTIONS(713), + [anon_sym_ENDFILE] = ACTIONS(713), + [anon_sym_ATinclude] = ACTIONS(733), + [anon_sym_ATload] = ACTIONS(733), + [anon_sym_ATnamespace] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_getline] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(733), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(733), + [anon_sym_PERCENT] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(733), + [anon_sym_DASH_DASH] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(713), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_function] = ACTIONS(713), + [anon_sym_func] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_asort] = ACTIONS(713), + [anon_sym_asorti] = ACTIONS(713), + [anon_sym_bindtextdomain] = ACTIONS(713), + [anon_sym_compl] = ACTIONS(713), + [anon_sym_cos] = ACTIONS(713), + [anon_sym_dcgettext] = ACTIONS(713), + [anon_sym_dcngettext] = ACTIONS(713), + [anon_sym_exp] = ACTIONS(713), + [anon_sym_gensub] = ACTIONS(713), + [anon_sym_gsub] = ACTIONS(713), + [anon_sym_index] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_isarray] = ACTIONS(713), + [anon_sym_length] = ACTIONS(713), + [anon_sym_log] = ACTIONS(713), + [anon_sym_lshift] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mktime] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_patsplit] = ACTIONS(713), + [anon_sym_rand] = ACTIONS(713), + [anon_sym_rshift] = ACTIONS(713), + [anon_sym_sin] = ACTIONS(713), + [anon_sym_split] = ACTIONS(713), + [anon_sym_sprintf] = ACTIONS(713), + [anon_sym_sqrt] = ACTIONS(713), + [anon_sym_srand] = ACTIONS(713), + [anon_sym_strftime] = ACTIONS(713), + [anon_sym_strtonum] = ACTIONS(713), + [anon_sym_sub] = ACTIONS(713), + [anon_sym_substr] = ACTIONS(713), + [anon_sym_systime] = ACTIONS(713), + [anon_sym_tolower] = ACTIONS(713), + [anon_sym_toupper] = ACTIONS(713), + [anon_sym_typeof] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(733), + [sym_concatenating_space] = ACTIONS(1093), + }, + [581] = { + [ts_builtin_sym_end] = ACTIONS(845), + [sym_identifier] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(845), + [anon_sym_BEGIN] = ACTIONS(843), + [anon_sym_END] = ACTIONS(843), + [anon_sym_BEGINFILE] = ACTIONS(843), + [anon_sym_ENDFILE] = ACTIONS(843), + [anon_sym_ATinclude] = ACTIONS(845), + [anon_sym_ATload] = ACTIONS(845), + [anon_sym_ATnamespace] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_in] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_getline] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_CARET] = ACTIONS(845), + [anon_sym_STAR_STAR] = ACTIONS(845), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(845), + [anon_sym_BANG_TILDE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_PLUS_PLUS] = ACTIONS(845), + [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_AT] = ACTIONS(843), + [aux_sym_number_token1] = ACTIONS(843), + [aux_sym_number_token2] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_function] = ACTIONS(843), + [anon_sym_func] = ACTIONS(843), + [anon_sym_and] = ACTIONS(843), + [anon_sym_asort] = ACTIONS(843), + [anon_sym_asorti] = ACTIONS(843), + [anon_sym_bindtextdomain] = ACTIONS(843), + [anon_sym_compl] = ACTIONS(843), + [anon_sym_cos] = ACTIONS(843), + [anon_sym_dcgettext] = ACTIONS(843), + [anon_sym_dcngettext] = ACTIONS(843), + [anon_sym_exp] = ACTIONS(843), + [anon_sym_gensub] = ACTIONS(843), + [anon_sym_gsub] = ACTIONS(843), + [anon_sym_index] = ACTIONS(843), + [anon_sym_int] = ACTIONS(843), + [anon_sym_isarray] = ACTIONS(843), + [anon_sym_length] = ACTIONS(843), + [anon_sym_log] = ACTIONS(843), + [anon_sym_lshift] = ACTIONS(843), + [anon_sym_match] = ACTIONS(843), + [anon_sym_mktime] = ACTIONS(843), + [anon_sym_or] = ACTIONS(843), + [anon_sym_patsplit] = ACTIONS(843), + [anon_sym_rand] = ACTIONS(843), + [anon_sym_rshift] = ACTIONS(843), + [anon_sym_sin] = ACTIONS(843), + [anon_sym_split] = ACTIONS(843), + [anon_sym_sprintf] = ACTIONS(843), + [anon_sym_sqrt] = ACTIONS(843), + [anon_sym_srand] = ACTIONS(843), + [anon_sym_strftime] = ACTIONS(843), + [anon_sym_strtonum] = ACTIONS(843), + [anon_sym_sub] = ACTIONS(843), + [anon_sym_substr] = ACTIONS(843), + [anon_sym_systime] = ACTIONS(843), + [anon_sym_tolower] = ACTIONS(843), + [anon_sym_toupper] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(843), + [anon_sym_xor] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(845), + [sym_concatenating_space] = ACTIONS(845), + }, + [582] = { + [sym__getline_exp] = STATE(1816), + [sym_getline_input] = STATE(1816), + [sym_getline_file] = STATE(1816), + [sym__exp] = STATE(1816), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1816), + [sym_assignment_exp] = STATE(1816), + [sym_piped_io_exp] = STATE(1816), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1816), + [sym_regex_constant] = STATE(1816), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1816), + [sym_identifier] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1025), + [anon_sym_CR_LF] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_case] = ACTIONS(1025), + [anon_sym_default] = ACTIONS(1025), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [anon_sym_AT] = ACTIONS(173), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(177), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(1025), + }, + [583] = { + [ts_builtin_sym_end] = ACTIONS(879), + [sym_identifier] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(879), + [anon_sym_BEGIN] = ACTIONS(877), + [anon_sym_END] = ACTIONS(877), + [anon_sym_BEGINFILE] = ACTIONS(877), + [anon_sym_ENDFILE] = ACTIONS(877), + [anon_sym_ATinclude] = ACTIONS(879), + [anon_sym_ATload] = ACTIONS(879), + [anon_sym_ATnamespace] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_getline] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(879), + [anon_sym_QMARK] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(879), + [anon_sym_STAR_STAR] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_PERCENT] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_TILDE] = ACTIONS(879), + [anon_sym_BANG_TILDE] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(879), + [anon_sym_PIPE_PIPE] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(877), + [aux_sym_number_token1] = ACTIONS(877), + [aux_sym_number_token2] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(879), + [anon_sym_function] = ACTIONS(877), + [anon_sym_func] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_asort] = ACTIONS(877), + [anon_sym_asorti] = ACTIONS(877), + [anon_sym_bindtextdomain] = ACTIONS(877), + [anon_sym_compl] = ACTIONS(877), + [anon_sym_cos] = ACTIONS(877), + [anon_sym_dcgettext] = ACTIONS(877), + [anon_sym_dcngettext] = ACTIONS(877), + [anon_sym_exp] = ACTIONS(877), + [anon_sym_gensub] = ACTIONS(877), + [anon_sym_gsub] = ACTIONS(877), + [anon_sym_index] = ACTIONS(877), + [anon_sym_int] = ACTIONS(877), + [anon_sym_isarray] = ACTIONS(877), + [anon_sym_length] = ACTIONS(877), + [anon_sym_log] = ACTIONS(877), + [anon_sym_lshift] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mktime] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_patsplit] = ACTIONS(877), + [anon_sym_rand] = ACTIONS(877), + [anon_sym_rshift] = ACTIONS(877), + [anon_sym_sin] = ACTIONS(877), + [anon_sym_split] = ACTIONS(877), + [anon_sym_sprintf] = ACTIONS(877), + [anon_sym_sqrt] = ACTIONS(877), + [anon_sym_srand] = ACTIONS(877), + [anon_sym_strftime] = ACTIONS(877), + [anon_sym_strtonum] = ACTIONS(877), + [anon_sym_sub] = ACTIONS(877), + [anon_sym_substr] = ACTIONS(877), + [anon_sym_systime] = ACTIONS(877), + [anon_sym_tolower] = ACTIONS(877), + [anon_sym_toupper] = ACTIONS(877), + [anon_sym_typeof] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(879), + [sym_concatenating_space] = ACTIONS(879), + }, + [584] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_BEGIN] = ACTIONS(935), + [anon_sym_END] = ACTIONS(935), + [anon_sym_BEGINFILE] = ACTIONS(935), + [anon_sym_ENDFILE] = ACTIONS(935), + [anon_sym_ATinclude] = ACTIONS(937), + [anon_sym_ATload] = ACTIONS(937), + [anon_sym_ATnamespace] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_in] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_getline] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PIPE_AMP] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_STAR_STAR] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_BANG_TILDE] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(935), + [aux_sym_number_token1] = ACTIONS(935), + [aux_sym_number_token2] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_function] = ACTIONS(935), + [anon_sym_func] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_asort] = ACTIONS(935), + [anon_sym_asorti] = ACTIONS(935), + [anon_sym_bindtextdomain] = ACTIONS(935), + [anon_sym_compl] = ACTIONS(935), + [anon_sym_cos] = ACTIONS(935), + [anon_sym_dcgettext] = ACTIONS(935), + [anon_sym_dcngettext] = ACTIONS(935), + [anon_sym_exp] = ACTIONS(935), + [anon_sym_gensub] = ACTIONS(935), + [anon_sym_gsub] = ACTIONS(935), + [anon_sym_index] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_isarray] = ACTIONS(935), + [anon_sym_length] = ACTIONS(935), + [anon_sym_log] = ACTIONS(935), + [anon_sym_lshift] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mktime] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_patsplit] = ACTIONS(935), + [anon_sym_rand] = ACTIONS(935), + [anon_sym_rshift] = ACTIONS(935), + [anon_sym_sin] = ACTIONS(935), + [anon_sym_split] = ACTIONS(935), + [anon_sym_sprintf] = ACTIONS(935), + [anon_sym_sqrt] = ACTIONS(935), + [anon_sym_srand] = ACTIONS(935), + [anon_sym_strftime] = ACTIONS(935), + [anon_sym_strtonum] = ACTIONS(935), + [anon_sym_sub] = ACTIONS(935), + [anon_sym_substr] = ACTIONS(935), + [anon_sym_systime] = ACTIONS(935), + [anon_sym_tolower] = ACTIONS(935), + [anon_sym_toupper] = ACTIONS(935), + [anon_sym_typeof] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(937), + [sym_concatenating_space] = ACTIONS(937), + }, + [585] = { + [ts_builtin_sym_end] = ACTIONS(869), + [sym_identifier] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_BEGIN] = ACTIONS(867), + [anon_sym_END] = ACTIONS(867), + [anon_sym_BEGINFILE] = ACTIONS(867), + [anon_sym_ENDFILE] = ACTIONS(867), + [anon_sym_ATinclude] = ACTIONS(869), + [anon_sym_ATload] = ACTIONS(869), + [anon_sym_ATnamespace] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_in] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_getline] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_PIPE_AMP] = ACTIONS(869), + [anon_sym_QMARK] = ACTIONS(869), + [anon_sym_CARET] = ACTIONS(869), + [anon_sym_STAR_STAR] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(869), + [anon_sym_PERCENT] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_TILDE] = ACTIONS(869), + [anon_sym_BANG_TILDE] = ACTIONS(869), + [anon_sym_AMP_AMP] = ACTIONS(869), + [anon_sym_PIPE_PIPE] = ACTIONS(869), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(869), + [anon_sym_AT] = ACTIONS(867), + [aux_sym_number_token1] = ACTIONS(867), + [aux_sym_number_token2] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_function] = ACTIONS(867), + [anon_sym_func] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_asort] = ACTIONS(867), + [anon_sym_asorti] = ACTIONS(867), + [anon_sym_bindtextdomain] = ACTIONS(867), + [anon_sym_compl] = ACTIONS(867), + [anon_sym_cos] = ACTIONS(867), + [anon_sym_dcgettext] = ACTIONS(867), + [anon_sym_dcngettext] = ACTIONS(867), + [anon_sym_exp] = ACTIONS(867), + [anon_sym_gensub] = ACTIONS(867), + [anon_sym_gsub] = ACTIONS(867), + [anon_sym_index] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_isarray] = ACTIONS(867), + [anon_sym_length] = ACTIONS(867), + [anon_sym_log] = ACTIONS(867), + [anon_sym_lshift] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mktime] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_patsplit] = ACTIONS(867), + [anon_sym_rand] = ACTIONS(867), + [anon_sym_rshift] = ACTIONS(867), + [anon_sym_sin] = ACTIONS(867), + [anon_sym_split] = ACTIONS(867), + [anon_sym_sprintf] = ACTIONS(867), + [anon_sym_sqrt] = ACTIONS(867), + [anon_sym_srand] = ACTIONS(867), + [anon_sym_strftime] = ACTIONS(867), + [anon_sym_strtonum] = ACTIONS(867), + [anon_sym_sub] = ACTIONS(867), + [anon_sym_substr] = ACTIONS(867), + [anon_sym_systime] = ACTIONS(867), + [anon_sym_tolower] = ACTIONS(867), + [anon_sym_toupper] = ACTIONS(867), + [anon_sym_typeof] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(869), + }, + [586] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [587] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [588] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [589] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + }, + [590] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_BEGIN] = ACTIONS(755), + [anon_sym_END] = ACTIONS(755), + [anon_sym_BEGINFILE] = ACTIONS(755), + [anon_sym_ENDFILE] = ACTIONS(755), + [anon_sym_ATinclude] = ACTIONS(759), + [anon_sym_ATload] = ACTIONS(759), + [anon_sym_ATnamespace] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_getline] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_PIPE_AMP] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_BANG_TILDE] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(755), + [aux_sym_number_token1] = ACTIONS(755), + [aux_sym_number_token2] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_function] = ACTIONS(755), + [anon_sym_func] = ACTIONS(755), + [anon_sym_and] = ACTIONS(755), + [anon_sym_asort] = ACTIONS(755), + [anon_sym_asorti] = ACTIONS(755), + [anon_sym_bindtextdomain] = ACTIONS(755), + [anon_sym_compl] = ACTIONS(755), + [anon_sym_cos] = ACTIONS(755), + [anon_sym_dcgettext] = ACTIONS(755), + [anon_sym_dcngettext] = ACTIONS(755), + [anon_sym_exp] = ACTIONS(755), + [anon_sym_gensub] = ACTIONS(755), + [anon_sym_gsub] = ACTIONS(755), + [anon_sym_index] = ACTIONS(755), + [anon_sym_int] = ACTIONS(755), + [anon_sym_isarray] = ACTIONS(755), + [anon_sym_length] = ACTIONS(755), + [anon_sym_log] = ACTIONS(755), + [anon_sym_lshift] = ACTIONS(755), + [anon_sym_match] = ACTIONS(755), + [anon_sym_mktime] = ACTIONS(755), + [anon_sym_or] = ACTIONS(755), + [anon_sym_patsplit] = ACTIONS(755), + [anon_sym_rand] = ACTIONS(755), + [anon_sym_rshift] = ACTIONS(755), + [anon_sym_sin] = ACTIONS(755), + [anon_sym_split] = ACTIONS(755), + [anon_sym_sprintf] = ACTIONS(755), + [anon_sym_sqrt] = ACTIONS(755), + [anon_sym_srand] = ACTIONS(755), + [anon_sym_strftime] = ACTIONS(755), + [anon_sym_strtonum] = ACTIONS(755), + [anon_sym_sub] = ACTIONS(755), + [anon_sym_substr] = ACTIONS(755), + [anon_sym_systime] = ACTIONS(755), + [anon_sym_tolower] = ACTIONS(755), + [anon_sym_toupper] = ACTIONS(755), + [anon_sym_typeof] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(759), + }, + [591] = { + [ts_builtin_sym_end] = ACTIONS(799), + [sym_identifier] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(799), + [anon_sym_BEGIN] = ACTIONS(795), + [anon_sym_END] = ACTIONS(795), + [anon_sym_BEGINFILE] = ACTIONS(795), + [anon_sym_ENDFILE] = ACTIONS(795), + [anon_sym_ATinclude] = ACTIONS(799), + [anon_sym_ATload] = ACTIONS(799), + [anon_sym_ATnamespace] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_in] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_getline] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_PIPE_AMP] = ACTIONS(799), + [anon_sym_QMARK] = ACTIONS(799), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_STAR_STAR] = ACTIONS(799), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(799), + [anon_sym_PERCENT] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(799), + [anon_sym_GT_EQ] = ACTIONS(799), + [anon_sym_EQ_EQ] = ACTIONS(799), + [anon_sym_BANG_EQ] = ACTIONS(799), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_BANG_TILDE] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(799), + [anon_sym_DASH_DASH] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(799), + [sym_regex_flags] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(795), + [aux_sym_number_token1] = ACTIONS(795), + [aux_sym_number_token2] = ACTIONS(799), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_function] = ACTIONS(795), + [anon_sym_func] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_asort] = ACTIONS(795), + [anon_sym_asorti] = ACTIONS(795), + [anon_sym_bindtextdomain] = ACTIONS(795), + [anon_sym_compl] = ACTIONS(795), + [anon_sym_cos] = ACTIONS(795), + [anon_sym_dcgettext] = ACTIONS(795), + [anon_sym_dcngettext] = ACTIONS(795), + [anon_sym_exp] = ACTIONS(795), + [anon_sym_gensub] = ACTIONS(795), + [anon_sym_gsub] = ACTIONS(795), + [anon_sym_index] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_isarray] = ACTIONS(795), + [anon_sym_length] = ACTIONS(795), + [anon_sym_log] = ACTIONS(795), + [anon_sym_lshift] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_mktime] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_patsplit] = ACTIONS(795), + [anon_sym_rand] = ACTIONS(795), + [anon_sym_rshift] = ACTIONS(795), + [anon_sym_sin] = ACTIONS(795), + [anon_sym_split] = ACTIONS(795), + [anon_sym_sprintf] = ACTIONS(795), + [anon_sym_sqrt] = ACTIONS(795), + [anon_sym_srand] = ACTIONS(795), + [anon_sym_strftime] = ACTIONS(795), + [anon_sym_strtonum] = ACTIONS(795), + [anon_sym_sub] = ACTIONS(795), + [anon_sym_substr] = ACTIONS(795), + [anon_sym_systime] = ACTIONS(795), + [anon_sym_tolower] = ACTIONS(795), + [anon_sym_toupper] = ACTIONS(795), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(799), + }, + [592] = { + [ts_builtin_sym_end] = ACTIONS(849), + [sym_identifier] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_BEGIN] = ACTIONS(847), + [anon_sym_END] = ACTIONS(847), + [anon_sym_BEGINFILE] = ACTIONS(847), + [anon_sym_ENDFILE] = ACTIONS(847), + [anon_sym_ATinclude] = ACTIONS(849), + [anon_sym_ATload] = ACTIONS(849), + [anon_sym_ATnamespace] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_in] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_getline] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(849), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym_STAR_STAR] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_PERCENT] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_BANG_TILDE] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(847), + [aux_sym_number_token1] = ACTIONS(847), + [aux_sym_number_token2] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_function] = ACTIONS(847), + [anon_sym_func] = ACTIONS(847), + [anon_sym_and] = ACTIONS(847), + [anon_sym_asort] = ACTIONS(847), + [anon_sym_asorti] = ACTIONS(847), + [anon_sym_bindtextdomain] = ACTIONS(847), + [anon_sym_compl] = ACTIONS(847), + [anon_sym_cos] = ACTIONS(847), + [anon_sym_dcgettext] = ACTIONS(847), + [anon_sym_dcngettext] = ACTIONS(847), + [anon_sym_exp] = ACTIONS(847), + [anon_sym_gensub] = ACTIONS(847), + [anon_sym_gsub] = ACTIONS(847), + [anon_sym_index] = ACTIONS(847), + [anon_sym_int] = ACTIONS(847), + [anon_sym_isarray] = ACTIONS(847), + [anon_sym_length] = ACTIONS(847), + [anon_sym_log] = ACTIONS(847), + [anon_sym_lshift] = ACTIONS(847), + [anon_sym_match] = ACTIONS(847), + [anon_sym_mktime] = ACTIONS(847), + [anon_sym_or] = ACTIONS(847), + [anon_sym_patsplit] = ACTIONS(847), + [anon_sym_rand] = ACTIONS(847), + [anon_sym_rshift] = ACTIONS(847), + [anon_sym_sin] = ACTIONS(847), + [anon_sym_split] = ACTIONS(847), + [anon_sym_sprintf] = ACTIONS(847), + [anon_sym_sqrt] = ACTIONS(847), + [anon_sym_srand] = ACTIONS(847), + [anon_sym_strftime] = ACTIONS(847), + [anon_sym_strtonum] = ACTIONS(847), + [anon_sym_sub] = ACTIONS(847), + [anon_sym_substr] = ACTIONS(847), + [anon_sym_systime] = ACTIONS(847), + [anon_sym_tolower] = ACTIONS(847), + [anon_sym_toupper] = ACTIONS(847), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_xor] = ACTIONS(847), + [anon_sym_POUND] = ACTIONS(849), + [sym_concatenating_space] = ACTIONS(849), + }, + [593] = { + [ts_builtin_sym_end] = ACTIONS(841), + [sym_identifier] = ACTIONS(839), + [anon_sym_COMMA] = ACTIONS(841), + [anon_sym_BEGIN] = ACTIONS(839), + [anon_sym_END] = ACTIONS(839), + [anon_sym_BEGINFILE] = ACTIONS(839), + [anon_sym_ENDFILE] = ACTIONS(839), + [anon_sym_ATinclude] = ACTIONS(841), + [anon_sym_ATload] = ACTIONS(841), + [anon_sym_ATnamespace] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_in] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_getline] = ACTIONS(839), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [anon_sym_PIPE] = ACTIONS(839), + [anon_sym_PIPE_AMP] = ACTIONS(841), + [anon_sym_QMARK] = ACTIONS(841), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(841), + [anon_sym_TILDE] = ACTIONS(841), + [anon_sym_BANG_TILDE] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(841), + [anon_sym_PIPE_PIPE] = ACTIONS(841), + [anon_sym_BANG] = ACTIONS(839), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_AT] = ACTIONS(839), + [aux_sym_number_token1] = ACTIONS(839), + [aux_sym_number_token2] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_function] = ACTIONS(839), + [anon_sym_func] = ACTIONS(839), + [anon_sym_and] = ACTIONS(839), + [anon_sym_asort] = ACTIONS(839), + [anon_sym_asorti] = ACTIONS(839), + [anon_sym_bindtextdomain] = ACTIONS(839), + [anon_sym_compl] = ACTIONS(839), + [anon_sym_cos] = ACTIONS(839), + [anon_sym_dcgettext] = ACTIONS(839), + [anon_sym_dcngettext] = ACTIONS(839), + [anon_sym_exp] = ACTIONS(839), + [anon_sym_gensub] = ACTIONS(839), + [anon_sym_gsub] = ACTIONS(839), + [anon_sym_index] = ACTIONS(839), + [anon_sym_int] = ACTIONS(839), + [anon_sym_isarray] = ACTIONS(839), + [anon_sym_length] = ACTIONS(839), + [anon_sym_log] = ACTIONS(839), + [anon_sym_lshift] = ACTIONS(839), + [anon_sym_match] = ACTIONS(839), + [anon_sym_mktime] = ACTIONS(839), + [anon_sym_or] = ACTIONS(839), + [anon_sym_patsplit] = ACTIONS(839), + [anon_sym_rand] = ACTIONS(839), + [anon_sym_rshift] = ACTIONS(839), + [anon_sym_sin] = ACTIONS(839), + [anon_sym_split] = ACTIONS(839), + [anon_sym_sprintf] = ACTIONS(839), + [anon_sym_sqrt] = ACTIONS(839), + [anon_sym_srand] = ACTIONS(839), + [anon_sym_strftime] = ACTIONS(839), + [anon_sym_strtonum] = ACTIONS(839), + [anon_sym_sub] = ACTIONS(839), + [anon_sym_substr] = ACTIONS(839), + [anon_sym_systime] = ACTIONS(839), + [anon_sym_tolower] = ACTIONS(839), + [anon_sym_toupper] = ACTIONS(839), + [anon_sym_typeof] = ACTIONS(839), + [anon_sym_xor] = ACTIONS(839), + [anon_sym_POUND] = ACTIONS(841), + [sym_concatenating_space] = ACTIONS(841), + }, + [594] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [595] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [596] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym_STAR_STAR] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [597] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_BEGIN] = ACTIONS(919), + [anon_sym_END] = ACTIONS(919), + [anon_sym_BEGINFILE] = ACTIONS(919), + [anon_sym_ENDFILE] = ACTIONS(919), + [anon_sym_ATinclude] = ACTIONS(921), + [anon_sym_ATload] = ACTIONS(921), + [anon_sym_ATnamespace] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_in] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_getline] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG_TILDE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [aux_sym_number_token1] = ACTIONS(919), + [aux_sym_number_token2] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_function] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_asort] = ACTIONS(919), + [anon_sym_asorti] = ACTIONS(919), + [anon_sym_bindtextdomain] = ACTIONS(919), + [anon_sym_compl] = ACTIONS(919), + [anon_sym_cos] = ACTIONS(919), + [anon_sym_dcgettext] = ACTIONS(919), + [anon_sym_dcngettext] = ACTIONS(919), + [anon_sym_exp] = ACTIONS(919), + [anon_sym_gensub] = ACTIONS(919), + [anon_sym_gsub] = ACTIONS(919), + [anon_sym_index] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_isarray] = ACTIONS(919), + [anon_sym_length] = ACTIONS(919), + [anon_sym_log] = ACTIONS(919), + [anon_sym_lshift] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mktime] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_patsplit] = ACTIONS(919), + [anon_sym_rand] = ACTIONS(919), + [anon_sym_rshift] = ACTIONS(919), + [anon_sym_sin] = ACTIONS(919), + [anon_sym_split] = ACTIONS(919), + [anon_sym_sprintf] = ACTIONS(919), + [anon_sym_sqrt] = ACTIONS(919), + [anon_sym_srand] = ACTIONS(919), + [anon_sym_strftime] = ACTIONS(919), + [anon_sym_strtonum] = ACTIONS(919), + [anon_sym_sub] = ACTIONS(919), + [anon_sym_substr] = ACTIONS(919), + [anon_sym_systime] = ACTIONS(919), + [anon_sym_tolower] = ACTIONS(919), + [anon_sym_toupper] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(921), + [sym_concatenating_space] = ACTIONS(921), + }, + [598] = { + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_BEGIN] = ACTIONS(855), + [anon_sym_END] = ACTIONS(855), + [anon_sym_BEGINFILE] = ACTIONS(855), + [anon_sym_ENDFILE] = ACTIONS(855), + [anon_sym_ATinclude] = ACTIONS(857), + [anon_sym_ATload] = ACTIONS(857), + [anon_sym_ATnamespace] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_in] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_getline] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_PIPE_AMP] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(857), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(857), + [anon_sym_PIPE_PIPE] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_AT] = ACTIONS(855), + [aux_sym_number_token1] = ACTIONS(855), + [aux_sym_number_token2] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [anon_sym_function] = ACTIONS(855), + [anon_sym_func] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_asort] = ACTIONS(855), + [anon_sym_asorti] = ACTIONS(855), + [anon_sym_bindtextdomain] = ACTIONS(855), + [anon_sym_compl] = ACTIONS(855), + [anon_sym_cos] = ACTIONS(855), + [anon_sym_dcgettext] = ACTIONS(855), + [anon_sym_dcngettext] = ACTIONS(855), + [anon_sym_exp] = ACTIONS(855), + [anon_sym_gensub] = ACTIONS(855), + [anon_sym_gsub] = ACTIONS(855), + [anon_sym_index] = ACTIONS(855), + [anon_sym_int] = ACTIONS(855), + [anon_sym_isarray] = ACTIONS(855), + [anon_sym_length] = ACTIONS(855), + [anon_sym_log] = ACTIONS(855), + [anon_sym_lshift] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_mktime] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_patsplit] = ACTIONS(855), + [anon_sym_rand] = ACTIONS(855), + [anon_sym_rshift] = ACTIONS(855), + [anon_sym_sin] = ACTIONS(855), + [anon_sym_split] = ACTIONS(855), + [anon_sym_sprintf] = ACTIONS(855), + [anon_sym_sqrt] = ACTIONS(855), + [anon_sym_srand] = ACTIONS(855), + [anon_sym_strftime] = ACTIONS(855), + [anon_sym_strtonum] = ACTIONS(855), + [anon_sym_sub] = ACTIONS(855), + [anon_sym_substr] = ACTIONS(855), + [anon_sym_systime] = ACTIONS(855), + [anon_sym_tolower] = ACTIONS(855), + [anon_sym_toupper] = ACTIONS(855), + [anon_sym_typeof] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(857), + [sym_concatenating_space] = ACTIONS(857), + }, + [599] = { + [ts_builtin_sym_end] = ACTIONS(925), + [sym_identifier] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_BEGIN] = ACTIONS(923), + [anon_sym_END] = ACTIONS(923), + [anon_sym_BEGINFILE] = ACTIONS(923), + [anon_sym_ENDFILE] = ACTIONS(923), + [anon_sym_ATinclude] = ACTIONS(925), + [anon_sym_ATload] = ACTIONS(925), + [anon_sym_ATnamespace] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_in] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_getline] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(923), + [aux_sym_number_token1] = ACTIONS(923), + [aux_sym_number_token2] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_function] = ACTIONS(923), + [anon_sym_func] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_asort] = ACTIONS(923), + [anon_sym_asorti] = ACTIONS(923), + [anon_sym_bindtextdomain] = ACTIONS(923), + [anon_sym_compl] = ACTIONS(923), + [anon_sym_cos] = ACTIONS(923), + [anon_sym_dcgettext] = ACTIONS(923), + [anon_sym_dcngettext] = ACTIONS(923), + [anon_sym_exp] = ACTIONS(923), + [anon_sym_gensub] = ACTIONS(923), + [anon_sym_gsub] = ACTIONS(923), + [anon_sym_index] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_isarray] = ACTIONS(923), + [anon_sym_length] = ACTIONS(923), + [anon_sym_log] = ACTIONS(923), + [anon_sym_lshift] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mktime] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_patsplit] = ACTIONS(923), + [anon_sym_rand] = ACTIONS(923), + [anon_sym_rshift] = ACTIONS(923), + [anon_sym_sin] = ACTIONS(923), + [anon_sym_split] = ACTIONS(923), + [anon_sym_sprintf] = ACTIONS(923), + [anon_sym_sqrt] = ACTIONS(923), + [anon_sym_srand] = ACTIONS(923), + [anon_sym_strftime] = ACTIONS(923), + [anon_sym_strtonum] = ACTIONS(923), + [anon_sym_sub] = ACTIONS(923), + [anon_sym_substr] = ACTIONS(923), + [anon_sym_systime] = ACTIONS(923), + [anon_sym_tolower] = ACTIONS(923), + [anon_sym_toupper] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(925), + [sym_concatenating_space] = ACTIONS(925), + }, + [600] = { + [ts_builtin_sym_end] = ACTIONS(883), + [sym_identifier] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_BEGIN] = ACTIONS(881), + [anon_sym_END] = ACTIONS(881), + [anon_sym_BEGINFILE] = ACTIONS(881), + [anon_sym_ENDFILE] = ACTIONS(881), + [anon_sym_ATinclude] = ACTIONS(883), + [anon_sym_ATload] = ACTIONS(883), + [anon_sym_ATnamespace] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_in] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_getline] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_PIPE_AMP] = ACTIONS(883), + [anon_sym_QMARK] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(883), + [anon_sym_STAR_STAR] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(883), + [anon_sym_GT_EQ] = ACTIONS(883), + [anon_sym_EQ_EQ] = ACTIONS(883), + [anon_sym_BANG_EQ] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(883), + [anon_sym_BANG_TILDE] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(883), + [anon_sym_PIPE_PIPE] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(883), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_AT] = ACTIONS(881), + [aux_sym_number_token1] = ACTIONS(881), + [aux_sym_number_token2] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(883), + [anon_sym_function] = ACTIONS(881), + [anon_sym_func] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_asort] = ACTIONS(881), + [anon_sym_asorti] = ACTIONS(881), + [anon_sym_bindtextdomain] = ACTIONS(881), + [anon_sym_compl] = ACTIONS(881), + [anon_sym_cos] = ACTIONS(881), + [anon_sym_dcgettext] = ACTIONS(881), + [anon_sym_dcngettext] = ACTIONS(881), + [anon_sym_exp] = ACTIONS(881), + [anon_sym_gensub] = ACTIONS(881), + [anon_sym_gsub] = ACTIONS(881), + [anon_sym_index] = ACTIONS(881), + [anon_sym_int] = ACTIONS(881), + [anon_sym_isarray] = ACTIONS(881), + [anon_sym_length] = ACTIONS(881), + [anon_sym_log] = ACTIONS(881), + [anon_sym_lshift] = ACTIONS(881), + [anon_sym_match] = ACTIONS(881), + [anon_sym_mktime] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_patsplit] = ACTIONS(881), + [anon_sym_rand] = ACTIONS(881), + [anon_sym_rshift] = ACTIONS(881), + [anon_sym_sin] = ACTIONS(881), + [anon_sym_split] = ACTIONS(881), + [anon_sym_sprintf] = ACTIONS(881), + [anon_sym_sqrt] = ACTIONS(881), + [anon_sym_srand] = ACTIONS(881), + [anon_sym_strftime] = ACTIONS(881), + [anon_sym_strtonum] = ACTIONS(881), + [anon_sym_sub] = ACTIONS(881), + [anon_sym_substr] = ACTIONS(881), + [anon_sym_systime] = ACTIONS(881), + [anon_sym_tolower] = ACTIONS(881), + [anon_sym_toupper] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(883), + [sym_concatenating_space] = ACTIONS(883), + }, + [601] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_BEGIN] = ACTIONS(711), + [anon_sym_END] = ACTIONS(711), + [anon_sym_BEGINFILE] = ACTIONS(711), + [anon_sym_ENDFILE] = ACTIONS(711), + [anon_sym_ATinclude] = ACTIONS(719), + [anon_sym_ATload] = ACTIONS(719), + [anon_sym_ATnamespace] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_getline] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(733), + [anon_sym_STAR_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(733), + [anon_sym_PERCENT] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_BANG_TILDE] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(711), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_function] = ACTIONS(711), + [anon_sym_func] = ACTIONS(711), + [anon_sym_and] = ACTIONS(711), + [anon_sym_asort] = ACTIONS(711), + [anon_sym_asorti] = ACTIONS(711), + [anon_sym_bindtextdomain] = ACTIONS(711), + [anon_sym_compl] = ACTIONS(711), + [anon_sym_cos] = ACTIONS(711), + [anon_sym_dcgettext] = ACTIONS(711), + [anon_sym_dcngettext] = ACTIONS(711), + [anon_sym_exp] = ACTIONS(711), + [anon_sym_gensub] = ACTIONS(711), + [anon_sym_gsub] = ACTIONS(711), + [anon_sym_index] = ACTIONS(711), + [anon_sym_int] = ACTIONS(711), + [anon_sym_isarray] = ACTIONS(711), + [anon_sym_length] = ACTIONS(711), + [anon_sym_log] = ACTIONS(711), + [anon_sym_lshift] = ACTIONS(711), + [anon_sym_match] = ACTIONS(711), + [anon_sym_mktime] = ACTIONS(711), + [anon_sym_or] = ACTIONS(711), + [anon_sym_patsplit] = ACTIONS(711), + [anon_sym_rand] = ACTIONS(711), + [anon_sym_rshift] = ACTIONS(711), + [anon_sym_sin] = ACTIONS(711), + [anon_sym_split] = ACTIONS(711), + [anon_sym_sprintf] = ACTIONS(711), + [anon_sym_sqrt] = ACTIONS(711), + [anon_sym_srand] = ACTIONS(711), + [anon_sym_strftime] = ACTIONS(711), + [anon_sym_strtonum] = ACTIONS(711), + [anon_sym_sub] = ACTIONS(711), + [anon_sym_substr] = ACTIONS(711), + [anon_sym_systime] = ACTIONS(711), + [anon_sym_tolower] = ACTIONS(711), + [anon_sym_toupper] = ACTIONS(711), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_xor] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(719), + [sym_concatenating_space] = ACTIONS(719), + }, + [602] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_BEGIN] = ACTIONS(765), + [anon_sym_END] = ACTIONS(765), + [anon_sym_BEGINFILE] = ACTIONS(765), + [anon_sym_ENDFILE] = ACTIONS(765), + [anon_sym_ATinclude] = ACTIONS(767), + [anon_sym_ATload] = ACTIONS(767), + [anon_sym_ATnamespace] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_in] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_PERCENT] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_function] = ACTIONS(765), + [anon_sym_func] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + }, + [603] = { + [ts_builtin_sym_end] = ACTIONS(793), + [sym_identifier] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_BEGIN] = ACTIONS(789), + [anon_sym_END] = ACTIONS(789), + [anon_sym_BEGINFILE] = ACTIONS(789), + [anon_sym_ENDFILE] = ACTIONS(789), + [anon_sym_ATinclude] = ACTIONS(793), + [anon_sym_ATload] = ACTIONS(793), + [anon_sym_ATnamespace] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_in] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_getline] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_PIPE_AMP] = ACTIONS(793), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(793), + [sym_regex_flags] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(789), + [aux_sym_number_token1] = ACTIONS(789), + [aux_sym_number_token2] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(793), + [anon_sym_function] = ACTIONS(789), + [anon_sym_func] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_asort] = ACTIONS(789), + [anon_sym_asorti] = ACTIONS(789), + [anon_sym_bindtextdomain] = ACTIONS(789), + [anon_sym_compl] = ACTIONS(789), + [anon_sym_cos] = ACTIONS(789), + [anon_sym_dcgettext] = ACTIONS(789), + [anon_sym_dcngettext] = ACTIONS(789), + [anon_sym_exp] = ACTIONS(789), + [anon_sym_gensub] = ACTIONS(789), + [anon_sym_gsub] = ACTIONS(789), + [anon_sym_index] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_isarray] = ACTIONS(789), + [anon_sym_length] = ACTIONS(789), + [anon_sym_log] = ACTIONS(789), + [anon_sym_lshift] = ACTIONS(789), + [anon_sym_match] = ACTIONS(789), + [anon_sym_mktime] = ACTIONS(789), + [anon_sym_or] = ACTIONS(789), + [anon_sym_patsplit] = ACTIONS(789), + [anon_sym_rand] = ACTIONS(789), + [anon_sym_rshift] = ACTIONS(789), + [anon_sym_sin] = ACTIONS(789), + [anon_sym_split] = ACTIONS(789), + [anon_sym_sprintf] = ACTIONS(789), + [anon_sym_sqrt] = ACTIONS(789), + [anon_sym_srand] = ACTIONS(789), + [anon_sym_strftime] = ACTIONS(789), + [anon_sym_strtonum] = ACTIONS(789), + [anon_sym_sub] = ACTIONS(789), + [anon_sym_substr] = ACTIONS(789), + [anon_sym_systime] = ACTIONS(789), + [anon_sym_tolower] = ACTIONS(789), + [anon_sym_toupper] = ACTIONS(789), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(793), + }, + [604] = { + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_BEGIN] = ACTIONS(911), + [anon_sym_END] = ACTIONS(911), + [anon_sym_BEGINFILE] = ACTIONS(911), + [anon_sym_ENDFILE] = ACTIONS(911), + [anon_sym_ATinclude] = ACTIONS(913), + [anon_sym_ATload] = ACTIONS(913), + [anon_sym_ATnamespace] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_COLON] = ACTIONS(913), + [anon_sym_getline] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(913), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_PERCENT] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_AMP_AMP] = ACTIONS(913), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [anon_sym_function] = ACTIONS(911), + [anon_sym_func] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_asort] = ACTIONS(911), + [anon_sym_asorti] = ACTIONS(911), + [anon_sym_bindtextdomain] = ACTIONS(911), + [anon_sym_compl] = ACTIONS(911), + [anon_sym_cos] = ACTIONS(911), + [anon_sym_dcgettext] = ACTIONS(911), + [anon_sym_dcngettext] = ACTIONS(911), + [anon_sym_exp] = ACTIONS(911), + [anon_sym_gensub] = ACTIONS(911), + [anon_sym_gsub] = ACTIONS(911), + [anon_sym_index] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_isarray] = ACTIONS(911), + [anon_sym_length] = ACTIONS(911), + [anon_sym_log] = ACTIONS(911), + [anon_sym_lshift] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mktime] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_patsplit] = ACTIONS(911), + [anon_sym_rand] = ACTIONS(911), + [anon_sym_rshift] = ACTIONS(911), + [anon_sym_sin] = ACTIONS(911), + [anon_sym_split] = ACTIONS(911), + [anon_sym_sprintf] = ACTIONS(911), + [anon_sym_sqrt] = ACTIONS(911), + [anon_sym_srand] = ACTIONS(911), + [anon_sym_strftime] = ACTIONS(911), + [anon_sym_strtonum] = ACTIONS(911), + [anon_sym_sub] = ACTIONS(911), + [anon_sym_substr] = ACTIONS(911), + [anon_sym_systime] = ACTIONS(911), + [anon_sym_tolower] = ACTIONS(911), + [anon_sym_toupper] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(913), + }, + [605] = { + [ts_builtin_sym_end] = ACTIONS(869), + [sym_identifier] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_BEGIN] = ACTIONS(867), + [anon_sym_END] = ACTIONS(867), + [anon_sym_BEGINFILE] = ACTIONS(867), + [anon_sym_ENDFILE] = ACTIONS(867), + [anon_sym_ATinclude] = ACTIONS(869), + [anon_sym_ATload] = ACTIONS(869), + [anon_sym_ATnamespace] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_in] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_getline] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_PIPE_AMP] = ACTIONS(869), + [anon_sym_QMARK] = ACTIONS(869), + [anon_sym_CARET] = ACTIONS(869), + [anon_sym_STAR_STAR] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(869), + [anon_sym_PERCENT] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_TILDE] = ACTIONS(869), + [anon_sym_BANG_TILDE] = ACTIONS(869), + [anon_sym_AMP_AMP] = ACTIONS(869), + [anon_sym_PIPE_PIPE] = ACTIONS(869), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(869), + [anon_sym_AT] = ACTIONS(867), + [aux_sym_number_token1] = ACTIONS(867), + [aux_sym_number_token2] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_function] = ACTIONS(867), + [anon_sym_func] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_asort] = ACTIONS(867), + [anon_sym_asorti] = ACTIONS(867), + [anon_sym_bindtextdomain] = ACTIONS(867), + [anon_sym_compl] = ACTIONS(867), + [anon_sym_cos] = ACTIONS(867), + [anon_sym_dcgettext] = ACTIONS(867), + [anon_sym_dcngettext] = ACTIONS(867), + [anon_sym_exp] = ACTIONS(867), + [anon_sym_gensub] = ACTIONS(867), + [anon_sym_gsub] = ACTIONS(867), + [anon_sym_index] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_isarray] = ACTIONS(867), + [anon_sym_length] = ACTIONS(867), + [anon_sym_log] = ACTIONS(867), + [anon_sym_lshift] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mktime] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_patsplit] = ACTIONS(867), + [anon_sym_rand] = ACTIONS(867), + [anon_sym_rshift] = ACTIONS(867), + [anon_sym_sin] = ACTIONS(867), + [anon_sym_split] = ACTIONS(867), + [anon_sym_sprintf] = ACTIONS(867), + [anon_sym_sqrt] = ACTIONS(867), + [anon_sym_srand] = ACTIONS(867), + [anon_sym_strftime] = ACTIONS(867), + [anon_sym_strtonum] = ACTIONS(867), + [anon_sym_sub] = ACTIONS(867), + [anon_sym_substr] = ACTIONS(867), + [anon_sym_systime] = ACTIONS(867), + [anon_sym_tolower] = ACTIONS(867), + [anon_sym_toupper] = ACTIONS(867), + [anon_sym_typeof] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(869), + [sym_concatenating_space] = ACTIONS(869), + }, + [606] = { + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_BEGIN] = ACTIONS(915), + [anon_sym_END] = ACTIONS(915), + [anon_sym_BEGINFILE] = ACTIONS(915), + [anon_sym_ENDFILE] = ACTIONS(915), + [anon_sym_ATinclude] = ACTIONS(917), + [anon_sym_ATload] = ACTIONS(917), + [anon_sym_ATnamespace] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_in] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_getline] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_PERCENT] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_AT] = ACTIONS(915), + [aux_sym_number_token1] = ACTIONS(915), + [aux_sym_number_token2] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [anon_sym_function] = ACTIONS(915), + [anon_sym_func] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_asort] = ACTIONS(915), + [anon_sym_asorti] = ACTIONS(915), + [anon_sym_bindtextdomain] = ACTIONS(915), + [anon_sym_compl] = ACTIONS(915), + [anon_sym_cos] = ACTIONS(915), + [anon_sym_dcgettext] = ACTIONS(915), + [anon_sym_dcngettext] = ACTIONS(915), + [anon_sym_exp] = ACTIONS(915), + [anon_sym_gensub] = ACTIONS(915), + [anon_sym_gsub] = ACTIONS(915), + [anon_sym_index] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_isarray] = ACTIONS(915), + [anon_sym_length] = ACTIONS(915), + [anon_sym_log] = ACTIONS(915), + [anon_sym_lshift] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mktime] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_patsplit] = ACTIONS(915), + [anon_sym_rand] = ACTIONS(915), + [anon_sym_rshift] = ACTIONS(915), + [anon_sym_sin] = ACTIONS(915), + [anon_sym_split] = ACTIONS(915), + [anon_sym_sprintf] = ACTIONS(915), + [anon_sym_sqrt] = ACTIONS(915), + [anon_sym_srand] = ACTIONS(915), + [anon_sym_strftime] = ACTIONS(915), + [anon_sym_strtonum] = ACTIONS(915), + [anon_sym_sub] = ACTIONS(915), + [anon_sym_substr] = ACTIONS(915), + [anon_sym_systime] = ACTIONS(915), + [anon_sym_tolower] = ACTIONS(915), + [anon_sym_toupper] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(917), + [sym_concatenating_space] = ACTIONS(917), + }, + [607] = { + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_BEGIN] = ACTIONS(859), + [anon_sym_END] = ACTIONS(859), + [anon_sym_BEGINFILE] = ACTIONS(859), + [anon_sym_ENDFILE] = ACTIONS(859), + [anon_sym_ATinclude] = ACTIONS(861), + [anon_sym_ATload] = ACTIONS(861), + [anon_sym_ATnamespace] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_in] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_getline] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_BANG_TILDE] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(859), + [aux_sym_number_token1] = ACTIONS(859), + [aux_sym_number_token2] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [anon_sym_function] = ACTIONS(859), + [anon_sym_func] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_asort] = ACTIONS(859), + [anon_sym_asorti] = ACTIONS(859), + [anon_sym_bindtextdomain] = ACTIONS(859), + [anon_sym_compl] = ACTIONS(859), + [anon_sym_cos] = ACTIONS(859), + [anon_sym_dcgettext] = ACTIONS(859), + [anon_sym_dcngettext] = ACTIONS(859), + [anon_sym_exp] = ACTIONS(859), + [anon_sym_gensub] = ACTIONS(859), + [anon_sym_gsub] = ACTIONS(859), + [anon_sym_index] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_isarray] = ACTIONS(859), + [anon_sym_length] = ACTIONS(859), + [anon_sym_log] = ACTIONS(859), + [anon_sym_lshift] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mktime] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_patsplit] = ACTIONS(859), + [anon_sym_rand] = ACTIONS(859), + [anon_sym_rshift] = ACTIONS(859), + [anon_sym_sin] = ACTIONS(859), + [anon_sym_split] = ACTIONS(859), + [anon_sym_sprintf] = ACTIONS(859), + [anon_sym_sqrt] = ACTIONS(859), + [anon_sym_srand] = ACTIONS(859), + [anon_sym_strftime] = ACTIONS(859), + [anon_sym_strtonum] = ACTIONS(859), + [anon_sym_sub] = ACTIONS(859), + [anon_sym_substr] = ACTIONS(859), + [anon_sym_systime] = ACTIONS(859), + [anon_sym_tolower] = ACTIONS(859), + [anon_sym_toupper] = ACTIONS(859), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(861), + [sym_concatenating_space] = ACTIONS(861), + }, + [608] = { + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_BEGIN] = ACTIONS(911), + [anon_sym_END] = ACTIONS(911), + [anon_sym_BEGINFILE] = ACTIONS(911), + [anon_sym_ENDFILE] = ACTIONS(911), + [anon_sym_ATinclude] = ACTIONS(913), + [anon_sym_ATload] = ACTIONS(913), + [anon_sym_ATnamespace] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_getline] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_PIPE_AMP] = ACTIONS(913), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_PERCENT] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_AMP_AMP] = ACTIONS(913), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [anon_sym_function] = ACTIONS(911), + [anon_sym_func] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_asort] = ACTIONS(911), + [anon_sym_asorti] = ACTIONS(911), + [anon_sym_bindtextdomain] = ACTIONS(911), + [anon_sym_compl] = ACTIONS(911), + [anon_sym_cos] = ACTIONS(911), + [anon_sym_dcgettext] = ACTIONS(911), + [anon_sym_dcngettext] = ACTIONS(911), + [anon_sym_exp] = ACTIONS(911), + [anon_sym_gensub] = ACTIONS(911), + [anon_sym_gsub] = ACTIONS(911), + [anon_sym_index] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_isarray] = ACTIONS(911), + [anon_sym_length] = ACTIONS(911), + [anon_sym_log] = ACTIONS(911), + [anon_sym_lshift] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mktime] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_patsplit] = ACTIONS(911), + [anon_sym_rand] = ACTIONS(911), + [anon_sym_rshift] = ACTIONS(911), + [anon_sym_sin] = ACTIONS(911), + [anon_sym_split] = ACTIONS(911), + [anon_sym_sprintf] = ACTIONS(911), + [anon_sym_sqrt] = ACTIONS(911), + [anon_sym_srand] = ACTIONS(911), + [anon_sym_strftime] = ACTIONS(911), + [anon_sym_strtonum] = ACTIONS(911), + [anon_sym_sub] = ACTIONS(911), + [anon_sym_substr] = ACTIONS(911), + [anon_sym_systime] = ACTIONS(911), + [anon_sym_tolower] = ACTIONS(911), + [anon_sym_toupper] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(913), + [sym_concatenating_space] = ACTIONS(913), + }, + [609] = { + [ts_builtin_sym_end] = ACTIONS(891), + [sym_identifier] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_BEGIN] = ACTIONS(889), + [anon_sym_END] = ACTIONS(889), + [anon_sym_BEGINFILE] = ACTIONS(889), + [anon_sym_ENDFILE] = ACTIONS(889), + [anon_sym_ATinclude] = ACTIONS(891), + [anon_sym_ATload] = ACTIONS(891), + [anon_sym_ATnamespace] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_in] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_getline] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_PIPE_AMP] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_CARET] = ACTIONS(891), + [anon_sym_STAR_STAR] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(891), + [anon_sym_GT_EQ] = ACTIONS(891), + [anon_sym_EQ_EQ] = ACTIONS(891), + [anon_sym_BANG_EQ] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_BANG_TILDE] = ACTIONS(891), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(889), + [aux_sym_number_token1] = ACTIONS(889), + [aux_sym_number_token2] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_function] = ACTIONS(889), + [anon_sym_func] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_asort] = ACTIONS(889), + [anon_sym_asorti] = ACTIONS(889), + [anon_sym_bindtextdomain] = ACTIONS(889), + [anon_sym_compl] = ACTIONS(889), + [anon_sym_cos] = ACTIONS(889), + [anon_sym_dcgettext] = ACTIONS(889), + [anon_sym_dcngettext] = ACTIONS(889), + [anon_sym_exp] = ACTIONS(889), + [anon_sym_gensub] = ACTIONS(889), + [anon_sym_gsub] = ACTIONS(889), + [anon_sym_index] = ACTIONS(889), + [anon_sym_int] = ACTIONS(889), + [anon_sym_isarray] = ACTIONS(889), + [anon_sym_length] = ACTIONS(889), + [anon_sym_log] = ACTIONS(889), + [anon_sym_lshift] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_mktime] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_patsplit] = ACTIONS(889), + [anon_sym_rand] = ACTIONS(889), + [anon_sym_rshift] = ACTIONS(889), + [anon_sym_sin] = ACTIONS(889), + [anon_sym_split] = ACTIONS(889), + [anon_sym_sprintf] = ACTIONS(889), + [anon_sym_sqrt] = ACTIONS(889), + [anon_sym_srand] = ACTIONS(889), + [anon_sym_strftime] = ACTIONS(889), + [anon_sym_strtonum] = ACTIONS(889), + [anon_sym_sub] = ACTIONS(889), + [anon_sym_substr] = ACTIONS(889), + [anon_sym_systime] = ACTIONS(889), + [anon_sym_tolower] = ACTIONS(889), + [anon_sym_toupper] = ACTIONS(889), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(891), + [sym_concatenating_space] = ACTIONS(891), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_BEGIN] = ACTIONS(765), + [anon_sym_END] = ACTIONS(765), + [anon_sym_BEGINFILE] = ACTIONS(765), + [anon_sym_ENDFILE] = ACTIONS(765), + [anon_sym_ATinclude] = ACTIONS(767), + [anon_sym_ATload] = ACTIONS(767), + [anon_sym_ATnamespace] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_in] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_PERCENT] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_function] = ACTIONS(765), + [anon_sym_func] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + [sym_concatenating_space] = ACTIONS(767), + }, + [611] = { + [ts_builtin_sym_end] = ACTIONS(887), + [sym_identifier] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_BEGIN] = ACTIONS(885), + [anon_sym_END] = ACTIONS(885), + [anon_sym_BEGINFILE] = ACTIONS(885), + [anon_sym_ENDFILE] = ACTIONS(885), + [anon_sym_ATinclude] = ACTIONS(887), + [anon_sym_ATload] = ACTIONS(887), + [anon_sym_ATnamespace] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_in] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_getline] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_CARET] = ACTIONS(887), + [anon_sym_STAR_STAR] = ACTIONS(887), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(887), + [anon_sym_GT_EQ] = ACTIONS(887), + [anon_sym_EQ_EQ] = ACTIONS(887), + [anon_sym_BANG_EQ] = ACTIONS(887), + [anon_sym_TILDE] = ACTIONS(887), + [anon_sym_BANG_TILDE] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(887), + [anon_sym_DASH_DASH] = ACTIONS(887), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(885), + [aux_sym_number_token1] = ACTIONS(885), + [aux_sym_number_token2] = ACTIONS(887), + [anon_sym_DQUOTE] = ACTIONS(887), + [anon_sym_function] = ACTIONS(885), + [anon_sym_func] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_asort] = ACTIONS(885), + [anon_sym_asorti] = ACTIONS(885), + [anon_sym_bindtextdomain] = ACTIONS(885), + [anon_sym_compl] = ACTIONS(885), + [anon_sym_cos] = ACTIONS(885), + [anon_sym_dcgettext] = ACTIONS(885), + [anon_sym_dcngettext] = ACTIONS(885), + [anon_sym_exp] = ACTIONS(885), + [anon_sym_gensub] = ACTIONS(885), + [anon_sym_gsub] = ACTIONS(885), + [anon_sym_index] = ACTIONS(885), + [anon_sym_int] = ACTIONS(885), + [anon_sym_isarray] = ACTIONS(885), + [anon_sym_length] = ACTIONS(885), + [anon_sym_log] = ACTIONS(885), + [anon_sym_lshift] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mktime] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_patsplit] = ACTIONS(885), + [anon_sym_rand] = ACTIONS(885), + [anon_sym_rshift] = ACTIONS(885), + [anon_sym_sin] = ACTIONS(885), + [anon_sym_split] = ACTIONS(885), + [anon_sym_sprintf] = ACTIONS(885), + [anon_sym_sqrt] = ACTIONS(885), + [anon_sym_srand] = ACTIONS(885), + [anon_sym_strftime] = ACTIONS(885), + [anon_sym_strtonum] = ACTIONS(885), + [anon_sym_sub] = ACTIONS(885), + [anon_sym_substr] = ACTIONS(885), + [anon_sym_systime] = ACTIONS(885), + [anon_sym_tolower] = ACTIONS(885), + [anon_sym_toupper] = ACTIONS(885), + [anon_sym_typeof] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(887), + [sym_concatenating_space] = ACTIONS(887), + }, + [612] = { + [ts_builtin_sym_end] = ACTIONS(941), + [sym_identifier] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_BEGIN] = ACTIONS(939), + [anon_sym_END] = ACTIONS(939), + [anon_sym_BEGINFILE] = ACTIONS(939), + [anon_sym_ENDFILE] = ACTIONS(939), + [anon_sym_ATinclude] = ACTIONS(941), + [anon_sym_ATload] = ACTIONS(941), + [anon_sym_ATnamespace] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_in] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_getline] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_STAR_STAR] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_BANG_TILDE] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(941), + [anon_sym_PIPE_PIPE] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(939), + [aux_sym_number_token1] = ACTIONS(939), + [aux_sym_number_token2] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_function] = ACTIONS(939), + [anon_sym_func] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_asort] = ACTIONS(939), + [anon_sym_asorti] = ACTIONS(939), + [anon_sym_bindtextdomain] = ACTIONS(939), + [anon_sym_compl] = ACTIONS(939), + [anon_sym_cos] = ACTIONS(939), + [anon_sym_dcgettext] = ACTIONS(939), + [anon_sym_dcngettext] = ACTIONS(939), + [anon_sym_exp] = ACTIONS(939), + [anon_sym_gensub] = ACTIONS(939), + [anon_sym_gsub] = ACTIONS(939), + [anon_sym_index] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_isarray] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_log] = ACTIONS(939), + [anon_sym_lshift] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mktime] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_patsplit] = ACTIONS(939), + [anon_sym_rand] = ACTIONS(939), + [anon_sym_rshift] = ACTIONS(939), + [anon_sym_sin] = ACTIONS(939), + [anon_sym_split] = ACTIONS(939), + [anon_sym_sprintf] = ACTIONS(939), + [anon_sym_sqrt] = ACTIONS(939), + [anon_sym_srand] = ACTIONS(939), + [anon_sym_strftime] = ACTIONS(939), + [anon_sym_strtonum] = ACTIONS(939), + [anon_sym_sub] = ACTIONS(939), + [anon_sym_substr] = ACTIONS(939), + [anon_sym_systime] = ACTIONS(939), + [anon_sym_tolower] = ACTIONS(939), + [anon_sym_toupper] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(941), + [sym_concatenating_space] = ACTIONS(941), + }, + [613] = { + [ts_builtin_sym_end] = ACTIONS(933), + [sym_identifier] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_BEGIN] = ACTIONS(931), + [anon_sym_END] = ACTIONS(931), + [anon_sym_BEGINFILE] = ACTIONS(931), + [anon_sym_ENDFILE] = ACTIONS(931), + [anon_sym_ATinclude] = ACTIONS(933), + [anon_sym_ATload] = ACTIONS(933), + [anon_sym_ATnamespace] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_in] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_getline] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(931), + [aux_sym_number_token1] = ACTIONS(931), + [aux_sym_number_token2] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_function] = ACTIONS(931), + [anon_sym_func] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_asort] = ACTIONS(931), + [anon_sym_asorti] = ACTIONS(931), + [anon_sym_bindtextdomain] = ACTIONS(931), + [anon_sym_compl] = ACTIONS(931), + [anon_sym_cos] = ACTIONS(931), + [anon_sym_dcgettext] = ACTIONS(931), + [anon_sym_dcngettext] = ACTIONS(931), + [anon_sym_exp] = ACTIONS(931), + [anon_sym_gensub] = ACTIONS(931), + [anon_sym_gsub] = ACTIONS(931), + [anon_sym_index] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_isarray] = ACTIONS(931), + [anon_sym_length] = ACTIONS(931), + [anon_sym_log] = ACTIONS(931), + [anon_sym_lshift] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mktime] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_patsplit] = ACTIONS(931), + [anon_sym_rand] = ACTIONS(931), + [anon_sym_rshift] = ACTIONS(931), + [anon_sym_sin] = ACTIONS(931), + [anon_sym_split] = ACTIONS(931), + [anon_sym_sprintf] = ACTIONS(931), + [anon_sym_sqrt] = ACTIONS(931), + [anon_sym_srand] = ACTIONS(931), + [anon_sym_strftime] = ACTIONS(931), + [anon_sym_strtonum] = ACTIONS(931), + [anon_sym_sub] = ACTIONS(931), + [anon_sym_substr] = ACTIONS(931), + [anon_sym_systime] = ACTIONS(931), + [anon_sym_tolower] = ACTIONS(931), + [anon_sym_toupper] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(933), + [sym_concatenating_space] = ACTIONS(933), + }, + [614] = { + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_BEGIN] = ACTIONS(927), + [anon_sym_END] = ACTIONS(927), + [anon_sym_BEGINFILE] = ACTIONS(927), + [anon_sym_ENDFILE] = ACTIONS(927), + [anon_sym_ATinclude] = ACTIONS(929), + [anon_sym_ATload] = ACTIONS(929), + [anon_sym_ATnamespace] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_in] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_getline] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(927), + [aux_sym_number_token1] = ACTIONS(927), + [aux_sym_number_token2] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_function] = ACTIONS(927), + [anon_sym_func] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_asort] = ACTIONS(927), + [anon_sym_asorti] = ACTIONS(927), + [anon_sym_bindtextdomain] = ACTIONS(927), + [anon_sym_compl] = ACTIONS(927), + [anon_sym_cos] = ACTIONS(927), + [anon_sym_dcgettext] = ACTIONS(927), + [anon_sym_dcngettext] = ACTIONS(927), + [anon_sym_exp] = ACTIONS(927), + [anon_sym_gensub] = ACTIONS(927), + [anon_sym_gsub] = ACTIONS(927), + [anon_sym_index] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_isarray] = ACTIONS(927), + [anon_sym_length] = ACTIONS(927), + [anon_sym_log] = ACTIONS(927), + [anon_sym_lshift] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mktime] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_patsplit] = ACTIONS(927), + [anon_sym_rand] = ACTIONS(927), + [anon_sym_rshift] = ACTIONS(927), + [anon_sym_sin] = ACTIONS(927), + [anon_sym_split] = ACTIONS(927), + [anon_sym_sprintf] = ACTIONS(927), + [anon_sym_sqrt] = ACTIONS(927), + [anon_sym_srand] = ACTIONS(927), + [anon_sym_strftime] = ACTIONS(927), + [anon_sym_strtonum] = ACTIONS(927), + [anon_sym_sub] = ACTIONS(927), + [anon_sym_substr] = ACTIONS(927), + [anon_sym_systime] = ACTIONS(927), + [anon_sym_tolower] = ACTIONS(927), + [anon_sym_toupper] = ACTIONS(927), + [anon_sym_typeof] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(929), + [sym_concatenating_space] = ACTIONS(929), + }, + [615] = { + [ts_builtin_sym_end] = ACTIONS(875), + [sym_identifier] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_BEGIN] = ACTIONS(871), + [anon_sym_END] = ACTIONS(871), + [anon_sym_BEGINFILE] = ACTIONS(871), + [anon_sym_ENDFILE] = ACTIONS(871), + [anon_sym_ATinclude] = ACTIONS(875), + [anon_sym_ATload] = ACTIONS(875), + [anon_sym_ATnamespace] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_getline] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(871), + [aux_sym_number_token2] = ACTIONS(875), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_function] = ACTIONS(871), + [anon_sym_func] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_asort] = ACTIONS(871), + [anon_sym_asorti] = ACTIONS(871), + [anon_sym_bindtextdomain] = ACTIONS(871), + [anon_sym_compl] = ACTIONS(871), + [anon_sym_cos] = ACTIONS(871), + [anon_sym_dcgettext] = ACTIONS(871), + [anon_sym_dcngettext] = ACTIONS(871), + [anon_sym_exp] = ACTIONS(871), + [anon_sym_gensub] = ACTIONS(871), + [anon_sym_gsub] = ACTIONS(871), + [anon_sym_index] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_isarray] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_log] = ACTIONS(871), + [anon_sym_lshift] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mktime] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_patsplit] = ACTIONS(871), + [anon_sym_rand] = ACTIONS(871), + [anon_sym_rshift] = ACTIONS(871), + [anon_sym_sin] = ACTIONS(871), + [anon_sym_split] = ACTIONS(871), + [anon_sym_sprintf] = ACTIONS(871), + [anon_sym_sqrt] = ACTIONS(871), + [anon_sym_srand] = ACTIONS(871), + [anon_sym_strftime] = ACTIONS(871), + [anon_sym_strtonum] = ACTIONS(871), + [anon_sym_sub] = ACTIONS(871), + [anon_sym_substr] = ACTIONS(871), + [anon_sym_systime] = ACTIONS(871), + [anon_sym_tolower] = ACTIONS(871), + [anon_sym_toupper] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_POUND] = ACTIONS(875), + }, + [616] = { + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_BEGIN] = ACTIONS(915), + [anon_sym_END] = ACTIONS(915), + [anon_sym_BEGINFILE] = ACTIONS(915), + [anon_sym_ENDFILE] = ACTIONS(915), + [anon_sym_ATinclude] = ACTIONS(917), + [anon_sym_ATload] = ACTIONS(917), + [anon_sym_ATnamespace] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_in] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_getline] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(917), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_PERCENT] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_AT] = ACTIONS(915), + [aux_sym_number_token1] = ACTIONS(915), + [aux_sym_number_token2] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [anon_sym_function] = ACTIONS(915), + [anon_sym_func] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_asort] = ACTIONS(915), + [anon_sym_asorti] = ACTIONS(915), + [anon_sym_bindtextdomain] = ACTIONS(915), + [anon_sym_compl] = ACTIONS(915), + [anon_sym_cos] = ACTIONS(915), + [anon_sym_dcgettext] = ACTIONS(915), + [anon_sym_dcngettext] = ACTIONS(915), + [anon_sym_exp] = ACTIONS(915), + [anon_sym_gensub] = ACTIONS(915), + [anon_sym_gsub] = ACTIONS(915), + [anon_sym_index] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_isarray] = ACTIONS(915), + [anon_sym_length] = ACTIONS(915), + [anon_sym_log] = ACTIONS(915), + [anon_sym_lshift] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mktime] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_patsplit] = ACTIONS(915), + [anon_sym_rand] = ACTIONS(915), + [anon_sym_rshift] = ACTIONS(915), + [anon_sym_sin] = ACTIONS(915), + [anon_sym_split] = ACTIONS(915), + [anon_sym_sprintf] = ACTIONS(915), + [anon_sym_sqrt] = ACTIONS(915), + [anon_sym_srand] = ACTIONS(915), + [anon_sym_strftime] = ACTIONS(915), + [anon_sym_strtonum] = ACTIONS(915), + [anon_sym_sub] = ACTIONS(915), + [anon_sym_substr] = ACTIONS(915), + [anon_sym_systime] = ACTIONS(915), + [anon_sym_tolower] = ACTIONS(915), + [anon_sym_toupper] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(917), + }, + [617] = { + [ts_builtin_sym_end] = ACTIONS(925), + [sym_identifier] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_BEGIN] = ACTIONS(923), + [anon_sym_END] = ACTIONS(923), + [anon_sym_BEGINFILE] = ACTIONS(923), + [anon_sym_ENDFILE] = ACTIONS(923), + [anon_sym_ATinclude] = ACTIONS(925), + [anon_sym_ATload] = ACTIONS(925), + [anon_sym_ATnamespace] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_in] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_getline] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PIPE_AMP] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(923), + [aux_sym_number_token1] = ACTIONS(923), + [aux_sym_number_token2] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_function] = ACTIONS(923), + [anon_sym_func] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_asort] = ACTIONS(923), + [anon_sym_asorti] = ACTIONS(923), + [anon_sym_bindtextdomain] = ACTIONS(923), + [anon_sym_compl] = ACTIONS(923), + [anon_sym_cos] = ACTIONS(923), + [anon_sym_dcgettext] = ACTIONS(923), + [anon_sym_dcngettext] = ACTIONS(923), + [anon_sym_exp] = ACTIONS(923), + [anon_sym_gensub] = ACTIONS(923), + [anon_sym_gsub] = ACTIONS(923), + [anon_sym_index] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_isarray] = ACTIONS(923), + [anon_sym_length] = ACTIONS(923), + [anon_sym_log] = ACTIONS(923), + [anon_sym_lshift] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mktime] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_patsplit] = ACTIONS(923), + [anon_sym_rand] = ACTIONS(923), + [anon_sym_rshift] = ACTIONS(923), + [anon_sym_sin] = ACTIONS(923), + [anon_sym_split] = ACTIONS(923), + [anon_sym_sprintf] = ACTIONS(923), + [anon_sym_sqrt] = ACTIONS(923), + [anon_sym_srand] = ACTIONS(923), + [anon_sym_strftime] = ACTIONS(923), + [anon_sym_strtonum] = ACTIONS(923), + [anon_sym_sub] = ACTIONS(923), + [anon_sym_substr] = ACTIONS(923), + [anon_sym_systime] = ACTIONS(923), + [anon_sym_tolower] = ACTIONS(923), + [anon_sym_toupper] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(925), + }, + [618] = { + [ts_builtin_sym_end] = ACTIONS(1275), + [sym_identifier] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(1279), + [anon_sym_BEGIN] = ACTIONS(1277), + [anon_sym_END] = ACTIONS(1277), + [anon_sym_BEGINFILE] = ACTIONS(1277), + [anon_sym_ENDFILE] = ACTIONS(1277), + [anon_sym_ATinclude] = ACTIONS(1275), + [anon_sym_ATload] = ACTIONS(1275), + [anon_sym_ATnamespace] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_getline] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(1277), + [aux_sym_number_token1] = ACTIONS(1277), + [aux_sym_number_token2] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [anon_sym_function] = ACTIONS(1277), + [anon_sym_func] = ACTIONS(1277), + [anon_sym_and] = ACTIONS(1277), + [anon_sym_asort] = ACTIONS(1277), + [anon_sym_asorti] = ACTIONS(1277), + [anon_sym_bindtextdomain] = ACTIONS(1277), + [anon_sym_compl] = ACTIONS(1277), + [anon_sym_cos] = ACTIONS(1277), + [anon_sym_dcgettext] = ACTIONS(1277), + [anon_sym_dcngettext] = ACTIONS(1277), + [anon_sym_exp] = ACTIONS(1277), + [anon_sym_gensub] = ACTIONS(1277), + [anon_sym_gsub] = ACTIONS(1277), + [anon_sym_index] = ACTIONS(1277), + [anon_sym_int] = ACTIONS(1277), + [anon_sym_isarray] = ACTIONS(1277), + [anon_sym_length] = ACTIONS(1277), + [anon_sym_log] = ACTIONS(1277), + [anon_sym_lshift] = ACTIONS(1277), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_mktime] = ACTIONS(1277), + [anon_sym_or] = ACTIONS(1277), + [anon_sym_patsplit] = ACTIONS(1277), + [anon_sym_rand] = ACTIONS(1277), + [anon_sym_rshift] = ACTIONS(1277), + [anon_sym_sin] = ACTIONS(1277), + [anon_sym_split] = ACTIONS(1277), + [anon_sym_sprintf] = ACTIONS(1277), + [anon_sym_sqrt] = ACTIONS(1277), + [anon_sym_srand] = ACTIONS(1277), + [anon_sym_strftime] = ACTIONS(1277), + [anon_sym_strtonum] = ACTIONS(1277), + [anon_sym_sub] = ACTIONS(1277), + [anon_sym_substr] = ACTIONS(1277), + [anon_sym_systime] = ACTIONS(1277), + [anon_sym_tolower] = ACTIONS(1277), + [anon_sym_toupper] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_xor] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(1275), + }, + [619] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_BEGIN] = ACTIONS(935), + [anon_sym_END] = ACTIONS(935), + [anon_sym_BEGINFILE] = ACTIONS(935), + [anon_sym_ENDFILE] = ACTIONS(935), + [anon_sym_ATinclude] = ACTIONS(937), + [anon_sym_ATload] = ACTIONS(937), + [anon_sym_ATnamespace] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_in] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_getline] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PIPE_AMP] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_STAR_STAR] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_BANG_TILDE] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(935), + [aux_sym_number_token1] = ACTIONS(935), + [aux_sym_number_token2] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_function] = ACTIONS(935), + [anon_sym_func] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_asort] = ACTIONS(935), + [anon_sym_asorti] = ACTIONS(935), + [anon_sym_bindtextdomain] = ACTIONS(935), + [anon_sym_compl] = ACTIONS(935), + [anon_sym_cos] = ACTIONS(935), + [anon_sym_dcgettext] = ACTIONS(935), + [anon_sym_dcngettext] = ACTIONS(935), + [anon_sym_exp] = ACTIONS(935), + [anon_sym_gensub] = ACTIONS(935), + [anon_sym_gsub] = ACTIONS(935), + [anon_sym_index] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_isarray] = ACTIONS(935), + [anon_sym_length] = ACTIONS(935), + [anon_sym_log] = ACTIONS(935), + [anon_sym_lshift] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mktime] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_patsplit] = ACTIONS(935), + [anon_sym_rand] = ACTIONS(935), + [anon_sym_rshift] = ACTIONS(935), + [anon_sym_sin] = ACTIONS(935), + [anon_sym_split] = ACTIONS(935), + [anon_sym_sprintf] = ACTIONS(935), + [anon_sym_sqrt] = ACTIONS(935), + [anon_sym_srand] = ACTIONS(935), + [anon_sym_strftime] = ACTIONS(935), + [anon_sym_strtonum] = ACTIONS(935), + [anon_sym_sub] = ACTIONS(935), + [anon_sym_substr] = ACTIONS(935), + [anon_sym_systime] = ACTIONS(935), + [anon_sym_tolower] = ACTIONS(935), + [anon_sym_toupper] = ACTIONS(935), + [anon_sym_typeof] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(937), + }, + [620] = { + [ts_builtin_sym_end] = ACTIONS(865), + [sym_identifier] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_BEGIN] = ACTIONS(863), + [anon_sym_END] = ACTIONS(863), + [anon_sym_BEGINFILE] = ACTIONS(863), + [anon_sym_ENDFILE] = ACTIONS(863), + [anon_sym_ATinclude] = ACTIONS(865), + [anon_sym_ATload] = ACTIONS(865), + [anon_sym_ATnamespace] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_in] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_getline] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(863), + [aux_sym_number_token1] = ACTIONS(863), + [aux_sym_number_token2] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_function] = ACTIONS(863), + [anon_sym_func] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_asort] = ACTIONS(863), + [anon_sym_asorti] = ACTIONS(863), + [anon_sym_bindtextdomain] = ACTIONS(863), + [anon_sym_compl] = ACTIONS(863), + [anon_sym_cos] = ACTIONS(863), + [anon_sym_dcgettext] = ACTIONS(863), + [anon_sym_dcngettext] = ACTIONS(863), + [anon_sym_exp] = ACTIONS(863), + [anon_sym_gensub] = ACTIONS(863), + [anon_sym_gsub] = ACTIONS(863), + [anon_sym_index] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_isarray] = ACTIONS(863), + [anon_sym_length] = ACTIONS(863), + [anon_sym_log] = ACTIONS(863), + [anon_sym_lshift] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mktime] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_patsplit] = ACTIONS(863), + [anon_sym_rand] = ACTIONS(863), + [anon_sym_rshift] = ACTIONS(863), + [anon_sym_sin] = ACTIONS(863), + [anon_sym_split] = ACTIONS(863), + [anon_sym_sprintf] = ACTIONS(863), + [anon_sym_sqrt] = ACTIONS(863), + [anon_sym_srand] = ACTIONS(863), + [anon_sym_strftime] = ACTIONS(863), + [anon_sym_strtonum] = ACTIONS(863), + [anon_sym_sub] = ACTIONS(863), + [anon_sym_substr] = ACTIONS(863), + [anon_sym_systime] = ACTIONS(863), + [anon_sym_tolower] = ACTIONS(863), + [anon_sym_toupper] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(865), + }, + [621] = { + [ts_builtin_sym_end] = ACTIONS(833), + [sym_identifier] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(833), + [anon_sym_BEGIN] = ACTIONS(831), + [anon_sym_END] = ACTIONS(831), + [anon_sym_BEGINFILE] = ACTIONS(831), + [anon_sym_ENDFILE] = ACTIONS(831), + [anon_sym_ATinclude] = ACTIONS(833), + [anon_sym_ATload] = ACTIONS(833), + [anon_sym_ATnamespace] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_in] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_getline] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_PIPE_AMP] = ACTIONS(833), + [anon_sym_QMARK] = ACTIONS(833), + [anon_sym_CARET] = ACTIONS(833), + [anon_sym_STAR_STAR] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_PERCENT] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [anon_sym_AMP_AMP] = ACTIONS(833), + [anon_sym_PIPE_PIPE] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_AT] = ACTIONS(831), + [aux_sym_number_token1] = ACTIONS(831), + [aux_sym_number_token2] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_function] = ACTIONS(831), + [anon_sym_func] = ACTIONS(831), + [anon_sym_and] = ACTIONS(831), + [anon_sym_asort] = ACTIONS(831), + [anon_sym_asorti] = ACTIONS(831), + [anon_sym_bindtextdomain] = ACTIONS(831), + [anon_sym_compl] = ACTIONS(831), + [anon_sym_cos] = ACTIONS(831), + [anon_sym_dcgettext] = ACTIONS(831), + [anon_sym_dcngettext] = ACTIONS(831), + [anon_sym_exp] = ACTIONS(831), + [anon_sym_gensub] = ACTIONS(831), + [anon_sym_gsub] = ACTIONS(831), + [anon_sym_index] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_isarray] = ACTIONS(831), + [anon_sym_length] = ACTIONS(831), + [anon_sym_log] = ACTIONS(831), + [anon_sym_lshift] = ACTIONS(831), + [anon_sym_match] = ACTIONS(831), + [anon_sym_mktime] = ACTIONS(831), + [anon_sym_or] = ACTIONS(831), + [anon_sym_patsplit] = ACTIONS(831), + [anon_sym_rand] = ACTIONS(831), + [anon_sym_rshift] = ACTIONS(831), + [anon_sym_sin] = ACTIONS(831), + [anon_sym_split] = ACTIONS(831), + [anon_sym_sprintf] = ACTIONS(831), + [anon_sym_sqrt] = ACTIONS(831), + [anon_sym_srand] = ACTIONS(831), + [anon_sym_strftime] = ACTIONS(831), + [anon_sym_strtonum] = ACTIONS(831), + [anon_sym_sub] = ACTIONS(831), + [anon_sym_substr] = ACTIONS(831), + [anon_sym_systime] = ACTIONS(831), + [anon_sym_tolower] = ACTIONS(831), + [anon_sym_toupper] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(833), + }, + [622] = { + [ts_builtin_sym_end] = ACTIONS(837), + [sym_identifier] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_BEGIN] = ACTIONS(835), + [anon_sym_END] = ACTIONS(835), + [anon_sym_BEGINFILE] = ACTIONS(835), + [anon_sym_ENDFILE] = ACTIONS(835), + [anon_sym_ATinclude] = ACTIONS(837), + [anon_sym_ATload] = ACTIONS(837), + [anon_sym_ATnamespace] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_in] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_getline] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PIPE_AMP] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(837), + [anon_sym_STAR_STAR] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_PERCENT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(837), + [anon_sym_GT_EQ] = ACTIONS(837), + [anon_sym_EQ_EQ] = ACTIONS(837), + [anon_sym_BANG_EQ] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(837), + [anon_sym_BANG_TILDE] = ACTIONS(837), + [anon_sym_AMP_AMP] = ACTIONS(837), + [anon_sym_PIPE_PIPE] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(837), + [anon_sym_DASH_DASH] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(835), + [aux_sym_number_token1] = ACTIONS(835), + [aux_sym_number_token2] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(837), + [anon_sym_function] = ACTIONS(835), + [anon_sym_func] = ACTIONS(835), + [anon_sym_and] = ACTIONS(835), + [anon_sym_asort] = ACTIONS(835), + [anon_sym_asorti] = ACTIONS(835), + [anon_sym_bindtextdomain] = ACTIONS(835), + [anon_sym_compl] = ACTIONS(835), + [anon_sym_cos] = ACTIONS(835), + [anon_sym_dcgettext] = ACTIONS(835), + [anon_sym_dcngettext] = ACTIONS(835), + [anon_sym_exp] = ACTIONS(835), + [anon_sym_gensub] = ACTIONS(835), + [anon_sym_gsub] = ACTIONS(835), + [anon_sym_index] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_isarray] = ACTIONS(835), + [anon_sym_length] = ACTIONS(835), + [anon_sym_log] = ACTIONS(835), + [anon_sym_lshift] = ACTIONS(835), + [anon_sym_match] = ACTIONS(835), + [anon_sym_mktime] = ACTIONS(835), + [anon_sym_or] = ACTIONS(835), + [anon_sym_patsplit] = ACTIONS(835), + [anon_sym_rand] = ACTIONS(835), + [anon_sym_rshift] = ACTIONS(835), + [anon_sym_sin] = ACTIONS(835), + [anon_sym_split] = ACTIONS(835), + [anon_sym_sprintf] = ACTIONS(835), + [anon_sym_sqrt] = ACTIONS(835), + [anon_sym_srand] = ACTIONS(835), + [anon_sym_strftime] = ACTIONS(835), + [anon_sym_strtonum] = ACTIONS(835), + [anon_sym_sub] = ACTIONS(835), + [anon_sym_substr] = ACTIONS(835), + [anon_sym_systime] = ACTIONS(835), + [anon_sym_tolower] = ACTIONS(835), + [anon_sym_toupper] = ACTIONS(835), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(835), + [anon_sym_POUND] = ACTIONS(837), + }, + [623] = { + [ts_builtin_sym_end] = ACTIONS(933), + [sym_identifier] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_BEGIN] = ACTIONS(931), + [anon_sym_END] = ACTIONS(931), + [anon_sym_BEGINFILE] = ACTIONS(931), + [anon_sym_ENDFILE] = ACTIONS(931), + [anon_sym_ATinclude] = ACTIONS(933), + [anon_sym_ATload] = ACTIONS(933), + [anon_sym_ATnamespace] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_in] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_getline] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(931), + [aux_sym_number_token1] = ACTIONS(931), + [aux_sym_number_token2] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_function] = ACTIONS(931), + [anon_sym_func] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_asort] = ACTIONS(931), + [anon_sym_asorti] = ACTIONS(931), + [anon_sym_bindtextdomain] = ACTIONS(931), + [anon_sym_compl] = ACTIONS(931), + [anon_sym_cos] = ACTIONS(931), + [anon_sym_dcgettext] = ACTIONS(931), + [anon_sym_dcngettext] = ACTIONS(931), + [anon_sym_exp] = ACTIONS(931), + [anon_sym_gensub] = ACTIONS(931), + [anon_sym_gsub] = ACTIONS(931), + [anon_sym_index] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_isarray] = ACTIONS(931), + [anon_sym_length] = ACTIONS(931), + [anon_sym_log] = ACTIONS(931), + [anon_sym_lshift] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mktime] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_patsplit] = ACTIONS(931), + [anon_sym_rand] = ACTIONS(931), + [anon_sym_rshift] = ACTIONS(931), + [anon_sym_sin] = ACTIONS(931), + [anon_sym_split] = ACTIONS(931), + [anon_sym_sprintf] = ACTIONS(931), + [anon_sym_sqrt] = ACTIONS(931), + [anon_sym_srand] = ACTIONS(931), + [anon_sym_strftime] = ACTIONS(931), + [anon_sym_strtonum] = ACTIONS(931), + [anon_sym_sub] = ACTIONS(931), + [anon_sym_substr] = ACTIONS(931), + [anon_sym_systime] = ACTIONS(931), + [anon_sym_tolower] = ACTIONS(931), + [anon_sym_toupper] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(933), + }, + [624] = { + [ts_builtin_sym_end] = ACTIONS(853), + [sym_identifier] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_BEGIN] = ACTIONS(851), + [anon_sym_END] = ACTIONS(851), + [anon_sym_BEGINFILE] = ACTIONS(851), + [anon_sym_ENDFILE] = ACTIONS(851), + [anon_sym_ATinclude] = ACTIONS(853), + [anon_sym_ATload] = ACTIONS(853), + [anon_sym_ATnamespace] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_in] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_getline] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_QMARK] = ACTIONS(853), + [anon_sym_CARET] = ACTIONS(853), + [anon_sym_STAR_STAR] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_PERCENT] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_BANG_TILDE] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(851), + [aux_sym_number_token1] = ACTIONS(851), + [aux_sym_number_token2] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_function] = ACTIONS(851), + [anon_sym_func] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_asort] = ACTIONS(851), + [anon_sym_asorti] = ACTIONS(851), + [anon_sym_bindtextdomain] = ACTIONS(851), + [anon_sym_compl] = ACTIONS(851), + [anon_sym_cos] = ACTIONS(851), + [anon_sym_dcgettext] = ACTIONS(851), + [anon_sym_dcngettext] = ACTIONS(851), + [anon_sym_exp] = ACTIONS(851), + [anon_sym_gensub] = ACTIONS(851), + [anon_sym_gsub] = ACTIONS(851), + [anon_sym_index] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_isarray] = ACTIONS(851), + [anon_sym_length] = ACTIONS(851), + [anon_sym_log] = ACTIONS(851), + [anon_sym_lshift] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_mktime] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_patsplit] = ACTIONS(851), + [anon_sym_rand] = ACTIONS(851), + [anon_sym_rshift] = ACTIONS(851), + [anon_sym_sin] = ACTIONS(851), + [anon_sym_split] = ACTIONS(851), + [anon_sym_sprintf] = ACTIONS(851), + [anon_sym_sqrt] = ACTIONS(851), + [anon_sym_srand] = ACTIONS(851), + [anon_sym_strftime] = ACTIONS(851), + [anon_sym_strtonum] = ACTIONS(851), + [anon_sym_sub] = ACTIONS(851), + [anon_sym_substr] = ACTIONS(851), + [anon_sym_systime] = ACTIONS(851), + [anon_sym_tolower] = ACTIONS(851), + [anon_sym_toupper] = ACTIONS(851), + [anon_sym_typeof] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(853), + }, + [625] = { + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_BEGIN] = ACTIONS(859), + [anon_sym_END] = ACTIONS(859), + [anon_sym_BEGINFILE] = ACTIONS(859), + [anon_sym_ENDFILE] = ACTIONS(859), + [anon_sym_ATinclude] = ACTIONS(861), + [anon_sym_ATload] = ACTIONS(861), + [anon_sym_ATnamespace] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_in] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_getline] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_BANG_TILDE] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(859), + [aux_sym_number_token1] = ACTIONS(859), + [aux_sym_number_token2] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [anon_sym_function] = ACTIONS(859), + [anon_sym_func] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_asort] = ACTIONS(859), + [anon_sym_asorti] = ACTIONS(859), + [anon_sym_bindtextdomain] = ACTIONS(859), + [anon_sym_compl] = ACTIONS(859), + [anon_sym_cos] = ACTIONS(859), + [anon_sym_dcgettext] = ACTIONS(859), + [anon_sym_dcngettext] = ACTIONS(859), + [anon_sym_exp] = ACTIONS(859), + [anon_sym_gensub] = ACTIONS(859), + [anon_sym_gsub] = ACTIONS(859), + [anon_sym_index] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_isarray] = ACTIONS(859), + [anon_sym_length] = ACTIONS(859), + [anon_sym_log] = ACTIONS(859), + [anon_sym_lshift] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mktime] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_patsplit] = ACTIONS(859), + [anon_sym_rand] = ACTIONS(859), + [anon_sym_rshift] = ACTIONS(859), + [anon_sym_sin] = ACTIONS(859), + [anon_sym_split] = ACTIONS(859), + [anon_sym_sprintf] = ACTIONS(859), + [anon_sym_sqrt] = ACTIONS(859), + [anon_sym_srand] = ACTIONS(859), + [anon_sym_strftime] = ACTIONS(859), + [anon_sym_strtonum] = ACTIONS(859), + [anon_sym_sub] = ACTIONS(859), + [anon_sym_substr] = ACTIONS(859), + [anon_sym_systime] = ACTIONS(859), + [anon_sym_tolower] = ACTIONS(859), + [anon_sym_toupper] = ACTIONS(859), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(861), + }, + [626] = { + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_BEGIN] = ACTIONS(927), + [anon_sym_END] = ACTIONS(927), + [anon_sym_BEGINFILE] = ACTIONS(927), + [anon_sym_ENDFILE] = ACTIONS(927), + [anon_sym_ATinclude] = ACTIONS(929), + [anon_sym_ATload] = ACTIONS(929), + [anon_sym_ATnamespace] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_in] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_getline] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(927), + [aux_sym_number_token1] = ACTIONS(927), + [aux_sym_number_token2] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_function] = ACTIONS(927), + [anon_sym_func] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_asort] = ACTIONS(927), + [anon_sym_asorti] = ACTIONS(927), + [anon_sym_bindtextdomain] = ACTIONS(927), + [anon_sym_compl] = ACTIONS(927), + [anon_sym_cos] = ACTIONS(927), + [anon_sym_dcgettext] = ACTIONS(927), + [anon_sym_dcngettext] = ACTIONS(927), + [anon_sym_exp] = ACTIONS(927), + [anon_sym_gensub] = ACTIONS(927), + [anon_sym_gsub] = ACTIONS(927), + [anon_sym_index] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_isarray] = ACTIONS(927), + [anon_sym_length] = ACTIONS(927), + [anon_sym_log] = ACTIONS(927), + [anon_sym_lshift] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mktime] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_patsplit] = ACTIONS(927), + [anon_sym_rand] = ACTIONS(927), + [anon_sym_rshift] = ACTIONS(927), + [anon_sym_sin] = ACTIONS(927), + [anon_sym_split] = ACTIONS(927), + [anon_sym_sprintf] = ACTIONS(927), + [anon_sym_sqrt] = ACTIONS(927), + [anon_sym_srand] = ACTIONS(927), + [anon_sym_strftime] = ACTIONS(927), + [anon_sym_strtonum] = ACTIONS(927), + [anon_sym_sub] = ACTIONS(927), + [anon_sym_substr] = ACTIONS(927), + [anon_sym_systime] = ACTIONS(927), + [anon_sym_tolower] = ACTIONS(927), + [anon_sym_toupper] = ACTIONS(927), + [anon_sym_typeof] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(929), + }, + [627] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_BEGIN] = ACTIONS(765), + [anon_sym_END] = ACTIONS(765), + [anon_sym_BEGINFILE] = ACTIONS(765), + [anon_sym_ENDFILE] = ACTIONS(765), + [anon_sym_ATinclude] = ACTIONS(767), + [anon_sym_ATload] = ACTIONS(767), + [anon_sym_ATnamespace] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_in] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_getline] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_PERCENT] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(765), + [aux_sym_number_token1] = ACTIONS(765), + [aux_sym_number_token2] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_function] = ACTIONS(765), + [anon_sym_func] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_asort] = ACTIONS(765), + [anon_sym_asorti] = ACTIONS(765), + [anon_sym_bindtextdomain] = ACTIONS(765), + [anon_sym_compl] = ACTIONS(765), + [anon_sym_cos] = ACTIONS(765), + [anon_sym_dcgettext] = ACTIONS(765), + [anon_sym_dcngettext] = ACTIONS(765), + [anon_sym_exp] = ACTIONS(765), + [anon_sym_gensub] = ACTIONS(765), + [anon_sym_gsub] = ACTIONS(765), + [anon_sym_index] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_isarray] = ACTIONS(765), + [anon_sym_length] = ACTIONS(765), + [anon_sym_log] = ACTIONS(765), + [anon_sym_lshift] = ACTIONS(765), + [anon_sym_match] = ACTIONS(765), + [anon_sym_mktime] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_patsplit] = ACTIONS(765), + [anon_sym_rand] = ACTIONS(765), + [anon_sym_rshift] = ACTIONS(765), + [anon_sym_sin] = ACTIONS(765), + [anon_sym_split] = ACTIONS(765), + [anon_sym_sprintf] = ACTIONS(765), + [anon_sym_sqrt] = ACTIONS(765), + [anon_sym_srand] = ACTIONS(765), + [anon_sym_strftime] = ACTIONS(765), + [anon_sym_strtonum] = ACTIONS(765), + [anon_sym_sub] = ACTIONS(765), + [anon_sym_substr] = ACTIONS(765), + [anon_sym_systime] = ACTIONS(765), + [anon_sym_tolower] = ACTIONS(765), + [anon_sym_toupper] = ACTIONS(765), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + }, + [628] = { + [ts_builtin_sym_end] = ACTIONS(879), + [sym_identifier] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(879), + [anon_sym_BEGIN] = ACTIONS(877), + [anon_sym_END] = ACTIONS(877), + [anon_sym_BEGINFILE] = ACTIONS(877), + [anon_sym_ENDFILE] = ACTIONS(877), + [anon_sym_ATinclude] = ACTIONS(879), + [anon_sym_ATload] = ACTIONS(879), + [anon_sym_ATnamespace] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_getline] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(879), + [anon_sym_QMARK] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(879), + [anon_sym_STAR_STAR] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_PERCENT] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_TILDE] = ACTIONS(879), + [anon_sym_BANG_TILDE] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(879), + [anon_sym_PIPE_PIPE] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(877), + [aux_sym_number_token1] = ACTIONS(877), + [aux_sym_number_token2] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(879), + [anon_sym_function] = ACTIONS(877), + [anon_sym_func] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_asort] = ACTIONS(877), + [anon_sym_asorti] = ACTIONS(877), + [anon_sym_bindtextdomain] = ACTIONS(877), + [anon_sym_compl] = ACTIONS(877), + [anon_sym_cos] = ACTIONS(877), + [anon_sym_dcgettext] = ACTIONS(877), + [anon_sym_dcngettext] = ACTIONS(877), + [anon_sym_exp] = ACTIONS(877), + [anon_sym_gensub] = ACTIONS(877), + [anon_sym_gsub] = ACTIONS(877), + [anon_sym_index] = ACTIONS(877), + [anon_sym_int] = ACTIONS(877), + [anon_sym_isarray] = ACTIONS(877), + [anon_sym_length] = ACTIONS(877), + [anon_sym_log] = ACTIONS(877), + [anon_sym_lshift] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mktime] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_patsplit] = ACTIONS(877), + [anon_sym_rand] = ACTIONS(877), + [anon_sym_rshift] = ACTIONS(877), + [anon_sym_sin] = ACTIONS(877), + [anon_sym_split] = ACTIONS(877), + [anon_sym_sprintf] = ACTIONS(877), + [anon_sym_sqrt] = ACTIONS(877), + [anon_sym_srand] = ACTIONS(877), + [anon_sym_strftime] = ACTIONS(877), + [anon_sym_strtonum] = ACTIONS(877), + [anon_sym_sub] = ACTIONS(877), + [anon_sym_substr] = ACTIONS(877), + [anon_sym_systime] = ACTIONS(877), + [anon_sym_tolower] = ACTIONS(877), + [anon_sym_toupper] = ACTIONS(877), + [anon_sym_typeof] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(879), + }, + [629] = { + [ts_builtin_sym_end] = ACTIONS(941), + [sym_identifier] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_BEGIN] = ACTIONS(939), + [anon_sym_END] = ACTIONS(939), + [anon_sym_BEGINFILE] = ACTIONS(939), + [anon_sym_ENDFILE] = ACTIONS(939), + [anon_sym_ATinclude] = ACTIONS(941), + [anon_sym_ATload] = ACTIONS(941), + [anon_sym_ATnamespace] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_in] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_getline] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_STAR_STAR] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_BANG_TILDE] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(941), + [anon_sym_PIPE_PIPE] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(939), + [aux_sym_number_token1] = ACTIONS(939), + [aux_sym_number_token2] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_function] = ACTIONS(939), + [anon_sym_func] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_asort] = ACTIONS(939), + [anon_sym_asorti] = ACTIONS(939), + [anon_sym_bindtextdomain] = ACTIONS(939), + [anon_sym_compl] = ACTIONS(939), + [anon_sym_cos] = ACTIONS(939), + [anon_sym_dcgettext] = ACTIONS(939), + [anon_sym_dcngettext] = ACTIONS(939), + [anon_sym_exp] = ACTIONS(939), + [anon_sym_gensub] = ACTIONS(939), + [anon_sym_gsub] = ACTIONS(939), + [anon_sym_index] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_isarray] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_log] = ACTIONS(939), + [anon_sym_lshift] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mktime] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_patsplit] = ACTIONS(939), + [anon_sym_rand] = ACTIONS(939), + [anon_sym_rshift] = ACTIONS(939), + [anon_sym_sin] = ACTIONS(939), + [anon_sym_split] = ACTIONS(939), + [anon_sym_sprintf] = ACTIONS(939), + [anon_sym_sqrt] = ACTIONS(939), + [anon_sym_srand] = ACTIONS(939), + [anon_sym_strftime] = ACTIONS(939), + [anon_sym_strtonum] = ACTIONS(939), + [anon_sym_sub] = ACTIONS(939), + [anon_sym_substr] = ACTIONS(939), + [anon_sym_systime] = ACTIONS(939), + [anon_sym_tolower] = ACTIONS(939), + [anon_sym_toupper] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(941), + }, + [630] = { + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [anon_sym_BEGIN] = ACTIONS(1283), + [anon_sym_END] = ACTIONS(1283), + [anon_sym_BEGINFILE] = ACTIONS(1283), + [anon_sym_ENDFILE] = ACTIONS(1283), + [anon_sym_ATinclude] = ACTIONS(1281), + [anon_sym_ATload] = ACTIONS(1281), + [anon_sym_ATnamespace] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_getline] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [anon_sym_AT] = ACTIONS(1283), + [aux_sym_number_token1] = ACTIONS(1283), + [aux_sym_number_token2] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(1283), + [anon_sym_func] = ACTIONS(1283), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_asort] = ACTIONS(1283), + [anon_sym_asorti] = ACTIONS(1283), + [anon_sym_bindtextdomain] = ACTIONS(1283), + [anon_sym_compl] = ACTIONS(1283), + [anon_sym_cos] = ACTIONS(1283), + [anon_sym_dcgettext] = ACTIONS(1283), + [anon_sym_dcngettext] = ACTIONS(1283), + [anon_sym_exp] = ACTIONS(1283), + [anon_sym_gensub] = ACTIONS(1283), + [anon_sym_gsub] = ACTIONS(1283), + [anon_sym_index] = ACTIONS(1283), + [anon_sym_int] = ACTIONS(1283), + [anon_sym_isarray] = ACTIONS(1283), + [anon_sym_length] = ACTIONS(1283), + [anon_sym_log] = ACTIONS(1283), + [anon_sym_lshift] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_mktime] = ACTIONS(1283), + [anon_sym_or] = ACTIONS(1283), + [anon_sym_patsplit] = ACTIONS(1283), + [anon_sym_rand] = ACTIONS(1283), + [anon_sym_rshift] = ACTIONS(1283), + [anon_sym_sin] = ACTIONS(1283), + [anon_sym_split] = ACTIONS(1283), + [anon_sym_sprintf] = ACTIONS(1283), + [anon_sym_sqrt] = ACTIONS(1283), + [anon_sym_srand] = ACTIONS(1283), + [anon_sym_strftime] = ACTIONS(1283), + [anon_sym_strtonum] = ACTIONS(1283), + [anon_sym_sub] = ACTIONS(1283), + [anon_sym_substr] = ACTIONS(1283), + [anon_sym_systime] = ACTIONS(1283), + [anon_sym_tolower] = ACTIONS(1283), + [anon_sym_toupper] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(1281), + }, + [631] = { + [sym__getline_exp] = STATE(1884), + [sym_getline_input] = STATE(1884), + [sym_getline_file] = STATE(1884), + [sym__exp] = STATE(1884), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1884), + [sym_assignment_exp] = STATE(1884), + [sym_piped_io_exp] = STATE(1884), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1884), + [sym_regex_constant] = STATE(1884), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1884), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(963), + [anon_sym_CR_LF] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_while] = ACTIONS(963), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_AT] = ACTIONS(663), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [sym__if_else_separator] = ACTIONS(965), + }, + [632] = { + [sym__getline_exp] = STATE(1883), + [sym_getline_input] = STATE(1883), + [sym_getline_file] = STATE(1883), + [sym__exp] = STATE(1883), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1883), + [sym_assignment_exp] = STATE(1883), + [sym_piped_io_exp] = STATE(1883), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1883), + [sym_regex_constant] = STATE(1883), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1883), + [sym_identifier] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1025), + [anon_sym_CR_LF] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_AT] = ACTIONS(663), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [sym__if_else_separator] = ACTIONS(1027), + }, + [633] = { + [sym__getline_exp] = STATE(1903), + [sym_getline_input] = STATE(1903), + [sym_getline_file] = STATE(1903), + [sym__exp] = STATE(1903), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1903), + [sym_assignment_exp] = STATE(1903), + [sym_piped_io_exp] = STATE(1903), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1903), + [sym_regex_constant] = STATE(1903), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1903), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(963), + [anon_sym_CR_LF] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_while] = ACTIONS(963), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(669), + [anon_sym_DASH_DASH] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(671), + [anon_sym_AT] = ACTIONS(673), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(177), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [634] = { + [sym__getline_exp] = STATE(1904), + [sym_getline_input] = STATE(1904), + [sym_getline_file] = STATE(1904), + [sym__exp] = STATE(1904), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1904), + [sym_assignment_exp] = STATE(1904), + [sym_piped_io_exp] = STATE(1904), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1904), + [sym_regex_constant] = STATE(1904), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1904), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1025), + [anon_sym_CR_LF] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(669), + [anon_sym_DASH_DASH] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(671), + [anon_sym_AT] = ACTIONS(673), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(177), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [635] = { + [sym__getline_exp] = STATE(1743), + [sym_getline_input] = STATE(1743), + [sym_getline_file] = STATE(1743), + [sym__print_args] = STATE(650), + [sym__exp] = STATE(1743), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1743), + [sym_assignment_exp] = STATE(1743), + [sym_piped_io_exp] = STATE(1743), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_exp_list] = STATE(650), + [sym_regex] = STATE(1743), + [sym_regex_constant] = STATE(1743), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1743), + [aux_sym_exp_list_repeat1] = STATE(794), + [sym_identifier] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [636] = { + [sym__getline_exp] = STATE(1840), + [sym_getline_input] = STATE(1840), + [sym_getline_file] = STATE(1840), + [sym__print_args] = STATE(804), + [sym__exp] = STATE(1840), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1840), + [sym_assignment_exp] = STATE(1840), + [sym_piped_io_exp] = STATE(1840), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_exp_list] = STATE(804), + [sym_regex] = STATE(1840), + [sym_regex_constant] = STATE(1840), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1840), + [aux_sym_exp_list_repeat1] = STATE(806), + [sym_identifier] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [637] = { + [sym__getline_exp] = STATE(471), + [sym_getline_input] = STATE(471), + [sym_getline_file] = STATE(471), + [sym__print_args] = STATE(804), + [sym__exp] = STATE(471), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(471), + [sym_assignment_exp] = STATE(471), + [sym_piped_io_exp] = STATE(471), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_exp_list] = STATE(804), + [sym_regex] = STATE(471), + [sym_regex_constant] = STATE(471), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(471), + [aux_sym_exp_list_repeat1] = STATE(767), + [sym_identifier] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_getline] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [638] = { + [sym__getline_exp] = STATE(1760), + [sym_getline_input] = STATE(1760), + [sym_getline_file] = STATE(1760), + [sym__print_args] = STATE(804), + [sym__exp] = STATE(1760), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1760), + [sym_assignment_exp] = STATE(1760), + [sym_piped_io_exp] = STATE(1760), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_exp_list] = STATE(804), + [sym_regex] = STATE(1760), + [sym_regex_constant] = STATE(1760), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1760), + [aux_sym_exp_list_repeat1] = STATE(774), + [sym_identifier] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [639] = { + [sym__getline_exp] = STATE(1806), + [sym_getline_input] = STATE(1806), + [sym_getline_file] = STATE(1806), + [sym__print_args] = STATE(650), + [sym__exp] = STATE(1806), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1806), + [sym_assignment_exp] = STATE(1806), + [sym_piped_io_exp] = STATE(1806), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_exp_list] = STATE(650), + [sym_regex] = STATE(1806), + [sym_regex_constant] = STATE(1806), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1806), + [aux_sym_exp_list_repeat1] = STATE(820), + [sym_identifier] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [640] = { + [sym__getline_exp] = STATE(1929), + [sym_getline_input] = STATE(1929), + [sym_getline_file] = STATE(1929), + [sym__print_args] = STATE(2336), + [sym__exp] = STATE(1929), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1929), + [sym_assignment_exp] = STATE(1929), + [sym_piped_io_exp] = STATE(1929), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2336), + [sym_regex] = STATE(1929), + [sym_regex_constant] = STATE(1929), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1929), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [641] = { + [sym__getline_exp] = STATE(1938), + [sym_getline_input] = STATE(1938), + [sym_getline_file] = STATE(1938), + [sym__print_args] = STATE(2332), + [sym__exp] = STATE(1938), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1938), + [sym_assignment_exp] = STATE(1938), + [sym_piped_io_exp] = STATE(1938), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2332), + [sym_regex] = STATE(1938), + [sym_regex_constant] = STATE(1938), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1938), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [642] = { + [sym__getline_exp] = STATE(414), + [sym_getline_input] = STATE(414), + [sym_getline_file] = STATE(414), + [sym__print_args] = STATE(650), + [sym__exp] = STATE(414), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(414), + [sym_assignment_exp] = STATE(414), + [sym_piped_io_exp] = STATE(414), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_exp_list] = STATE(650), + [sym_regex] = STATE(414), + [sym_regex_constant] = STATE(414), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(414), + [aux_sym_exp_list_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_getline] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [643] = { + [sym__getline_exp] = STATE(1938), + [sym_getline_input] = STATE(1938), + [sym_getline_file] = STATE(1938), + [sym__print_args] = STATE(2406), + [sym__exp] = STATE(1938), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1938), + [sym_assignment_exp] = STATE(1938), + [sym_piped_io_exp] = STATE(1938), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2406), + [sym_regex] = STATE(1938), + [sym_regex_constant] = STATE(1938), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1938), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [644] = { + [sym__getline_exp] = STATE(1929), + [sym_getline_input] = STATE(1929), + [sym_getline_file] = STATE(1929), + [sym__print_args] = STATE(2405), + [sym__exp] = STATE(1929), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1929), + [sym_assignment_exp] = STATE(1929), + [sym_piped_io_exp] = STATE(1929), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2405), + [sym_regex] = STATE(1929), + [sym_regex_constant] = STATE(1929), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1929), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [645] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2434), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [646] = { + [sym__getline_exp] = STATE(1925), + [sym_getline_input] = STATE(1925), + [sym_getline_file] = STATE(1925), + [sym__exp] = STATE(1925), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1925), + [sym_assignment_exp] = STATE(1925), + [sym_piped_io_exp] = STATE(1925), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2346), + [sym_regex] = STATE(1925), + [sym_regex_constant] = STATE(1925), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1925), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [647] = { + [sym__getline_exp] = STATE(1934), + [sym_getline_input] = STATE(1934), + [sym_getline_file] = STATE(1934), + [sym__exp] = STATE(1934), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1934), + [sym_assignment_exp] = STATE(1934), + [sym_piped_io_exp] = STATE(1934), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2276), + [sym_regex] = STATE(1934), + [sym_regex_constant] = STATE(1934), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1934), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [648] = { + [sym__getline_exp] = STATE(1926), + [sym_getline_input] = STATE(1926), + [sym_getline_file] = STATE(1926), + [sym__exp] = STATE(1926), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1926), + [sym_assignment_exp] = STATE(1926), + [sym_piped_io_exp] = STATE(1926), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2390), + [sym_regex] = STATE(1926), + [sym_regex_constant] = STATE(1926), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1926), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [649] = { + [sym__getline_exp] = STATE(1985), + [sym_getline_input] = STATE(1985), + [sym_getline_file] = STATE(1985), + [sym__exp] = STATE(1985), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1985), + [sym_assignment_exp] = STATE(1985), + [sym_piped_io_exp] = STATE(1985), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1985), + [sym_regex_constant] = STATE(1985), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1985), + [sym_comment] = STATE(951), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [650] = { + [sym_identifier] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_LF] = ACTIONS(1317), + [anon_sym_CR_LF] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [sym_break_statement] = ACTIONS(1317), + [sym_continue_statement] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_exit] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_getline] = ACTIONS(1317), + [sym_next_statement] = ACTIONS(1317), + [sym_nextfile_statement] = ACTIONS(1317), + [anon_sym_print] = ACTIONS(1317), + [anon_sym_printf] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(1317), + [anon_sym_PIPE] = ACTIONS(1317), + [anon_sym_PIPE_AMP] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(1317), + [aux_sym_number_token1] = ACTIONS(1317), + [aux_sym_number_token2] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [anon_sym_and] = ACTIONS(1317), + [anon_sym_asort] = ACTIONS(1317), + [anon_sym_asorti] = ACTIONS(1317), + [anon_sym_bindtextdomain] = ACTIONS(1317), + [anon_sym_compl] = ACTIONS(1317), + [anon_sym_cos] = ACTIONS(1317), + [anon_sym_dcgettext] = ACTIONS(1317), + [anon_sym_dcngettext] = ACTIONS(1317), + [anon_sym_exp] = ACTIONS(1317), + [anon_sym_gensub] = ACTIONS(1317), + [anon_sym_gsub] = ACTIONS(1317), + [anon_sym_index] = ACTIONS(1317), + [anon_sym_int] = ACTIONS(1317), + [anon_sym_isarray] = ACTIONS(1317), + [anon_sym_length] = ACTIONS(1317), + [anon_sym_log] = ACTIONS(1317), + [anon_sym_lshift] = ACTIONS(1317), + [anon_sym_match] = ACTIONS(1317), + [anon_sym_mktime] = ACTIONS(1317), + [anon_sym_or] = ACTIONS(1317), + [anon_sym_patsplit] = ACTIONS(1317), + [anon_sym_rand] = ACTIONS(1317), + [anon_sym_rshift] = ACTIONS(1317), + [anon_sym_sin] = ACTIONS(1317), + [anon_sym_split] = ACTIONS(1317), + [anon_sym_sprintf] = ACTIONS(1317), + [anon_sym_sqrt] = ACTIONS(1317), + [anon_sym_srand] = ACTIONS(1317), + [anon_sym_strftime] = ACTIONS(1317), + [anon_sym_strtonum] = ACTIONS(1317), + [anon_sym_sub] = ACTIONS(1317), + [anon_sym_substr] = ACTIONS(1317), + [anon_sym_systime] = ACTIONS(1317), + [anon_sym_tolower] = ACTIONS(1317), + [anon_sym_toupper] = ACTIONS(1317), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_xor] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1317), + [sym__if_else_separator] = ACTIONS(1319), + }, + [651] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2392), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [652] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2395), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1323), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [653] = { + [sym__getline_exp] = STATE(1690), + [sym_getline_input] = STATE(1690), + [sym_getline_file] = STATE(1690), + [sym__exp] = STATE(1690), + [sym_ternary_exp] = STATE(1690), + [sym_binary_exp] = STATE(1690), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1690), + [sym_update_exp] = STATE(1690), + [sym_assignment_exp] = STATE(1690), + [sym_piped_io_exp] = STATE(1690), + [sym_string_concat] = STATE(1690), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1690), + [sym_regex_constant] = STATE(1690), + [sym_grouping] = STATE(1690), + [sym__primitive] = STATE(1690), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1690), + [sym_string] = STATE(1690), + [sym_func_call] = STATE(1690), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1690), + [sym_comment] = STATE(865), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [654] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2401), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1335), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [655] = { + [sym__getline_exp] = STATE(1714), + [sym_getline_input] = STATE(1714), + [sym_getline_file] = STATE(1714), + [sym__exp] = STATE(1714), + [sym_ternary_exp] = STATE(1714), + [sym_binary_exp] = STATE(1714), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1714), + [sym_update_exp] = STATE(1714), + [sym_assignment_exp] = STATE(1714), + [sym_piped_io_exp] = STATE(1714), + [sym_string_concat] = STATE(1714), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1714), + [sym_regex_constant] = STATE(1714), + [sym_grouping] = STATE(1714), + [sym__primitive] = STATE(1714), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1714), + [sym_string] = STATE(1714), + [sym_func_call] = STATE(1714), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1714), + [sym_comment] = STATE(825), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [656] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2404), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [657] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2411), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [658] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2414), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [659] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2418), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [660] = { + [sym__getline_exp] = STATE(1935), + [sym_getline_input] = STATE(1935), + [sym_getline_file] = STATE(1935), + [sym__exp] = STATE(1935), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1935), + [sym_assignment_exp] = STATE(1935), + [sym_piped_io_exp] = STATE(1935), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2391), + [sym_regex] = STATE(1935), + [sym_regex_constant] = STATE(1935), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1935), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [661] = { + [sym__getline_exp] = STATE(1909), + [sym_getline_input] = STATE(1909), + [sym_getline_file] = STATE(1909), + [sym__exp] = STATE(1909), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1909), + [sym_assignment_exp] = STATE(1909), + [sym_piped_io_exp] = STATE(1909), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2280), + [sym_regex] = STATE(1909), + [sym_regex_constant] = STATE(1909), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1909), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [662] = { + [sym_identifier] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1345), + [anon_sym_CR_LF] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [sym_break_statement] = ACTIONS(1345), + [sym_continue_statement] = ACTIONS(1345), + [anon_sym_delete] = ACTIONS(1345), + [anon_sym_exit] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_getline] = ACTIONS(1345), + [sym_next_statement] = ACTIONS(1345), + [sym_nextfile_statement] = ACTIONS(1345), + [anon_sym_print] = ACTIONS(1345), + [anon_sym_printf] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_PIPE_AMP] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(1345), + [aux_sym_number_token1] = ACTIONS(1345), + [aux_sym_number_token2] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_asort] = ACTIONS(1345), + [anon_sym_asorti] = ACTIONS(1345), + [anon_sym_bindtextdomain] = ACTIONS(1345), + [anon_sym_compl] = ACTIONS(1345), + [anon_sym_cos] = ACTIONS(1345), + [anon_sym_dcgettext] = ACTIONS(1345), + [anon_sym_dcngettext] = ACTIONS(1345), + [anon_sym_exp] = ACTIONS(1345), + [anon_sym_gensub] = ACTIONS(1345), + [anon_sym_gsub] = ACTIONS(1345), + [anon_sym_index] = ACTIONS(1345), + [anon_sym_int] = ACTIONS(1345), + [anon_sym_isarray] = ACTIONS(1345), + [anon_sym_length] = ACTIONS(1345), + [anon_sym_log] = ACTIONS(1345), + [anon_sym_lshift] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_mktime] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_patsplit] = ACTIONS(1345), + [anon_sym_rand] = ACTIONS(1345), + [anon_sym_rshift] = ACTIONS(1345), + [anon_sym_sin] = ACTIONS(1345), + [anon_sym_split] = ACTIONS(1345), + [anon_sym_sprintf] = ACTIONS(1345), + [anon_sym_sqrt] = ACTIONS(1345), + [anon_sym_srand] = ACTIONS(1345), + [anon_sym_strftime] = ACTIONS(1345), + [anon_sym_strtonum] = ACTIONS(1345), + [anon_sym_sub] = ACTIONS(1345), + [anon_sym_substr] = ACTIONS(1345), + [anon_sym_systime] = ACTIONS(1345), + [anon_sym_tolower] = ACTIONS(1345), + [anon_sym_toupper] = ACTIONS(1345), + [anon_sym_typeof] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1345), + [sym__if_else_separator] = ACTIONS(1347), + }, + [663] = { + [sym__getline_exp] = STATE(1467), + [sym_getline_input] = STATE(1467), + [sym_getline_file] = STATE(1467), + [sym__exp] = STATE(1467), + [sym_ternary_exp] = STATE(1467), + [sym_binary_exp] = STATE(1467), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1467), + [sym_update_exp] = STATE(1467), + [sym_assignment_exp] = STATE(1467), + [sym_piped_io_exp] = STATE(1467), + [sym_string_concat] = STATE(1467), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1467), + [sym_regex_constant] = STATE(1467), + [sym_grouping] = STATE(1467), + [sym__primitive] = STATE(1467), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1467), + [sym_string] = STATE(1467), + [sym_func_call] = STATE(1467), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1467), + [sym_comment] = STATE(1043), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(141), + }, + [664] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2421), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [665] = { + [sym__getline_exp] = STATE(1454), + [sym_getline_input] = STATE(1454), + [sym_getline_file] = STATE(1454), + [sym__exp] = STATE(1454), + [sym_ternary_exp] = STATE(1454), + [sym_binary_exp] = STATE(1454), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1454), + [sym_update_exp] = STATE(1454), + [sym_assignment_exp] = STATE(1454), + [sym_piped_io_exp] = STATE(1454), + [sym_string_concat] = STATE(1454), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1454), + [sym_regex_constant] = STATE(1454), + [sym_grouping] = STATE(1454), + [sym__primitive] = STATE(1454), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1454), + [sym_string] = STATE(1454), + [sym_func_call] = STATE(1454), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1454), + [sym_comment] = STATE(1096), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(141), + }, + [666] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2323), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [667] = { + [sym__getline_exp] = STATE(526), + [sym_getline_input] = STATE(526), + [sym_getline_file] = STATE(526), + [sym__exp] = STATE(526), + [sym_ternary_exp] = STATE(526), + [sym_binary_exp] = STATE(526), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(526), + [sym_update_exp] = STATE(526), + [sym_assignment_exp] = STATE(526), + [sym_piped_io_exp] = STATE(526), + [sym_string_concat] = STATE(526), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(526), + [sym_regex_constant] = STATE(526), + [sym_grouping] = STATE(526), + [sym__primitive] = STATE(526), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(526), + [sym_string] = STATE(526), + [sym_func_call] = STATE(526), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(526), + [sym_comment] = STATE(958), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(141), + }, + [668] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2427), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [669] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2432), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [670] = { + [sym__getline_exp] = STATE(1912), + [sym_getline_input] = STATE(1912), + [sym_getline_file] = STATE(1912), + [sym__exp] = STATE(1912), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1912), + [sym_assignment_exp] = STATE(1912), + [sym_piped_io_exp] = STATE(1912), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2318), + [sym_regex] = STATE(1912), + [sym_regex_constant] = STATE(1912), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1912), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [671] = { + [sym__getline_exp] = STATE(1747), + [sym_getline_input] = STATE(1747), + [sym_getline_file] = STATE(1747), + [sym__exp] = STATE(1747), + [sym_ternary_exp] = STATE(1747), + [sym_binary_exp] = STATE(1747), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1747), + [sym_update_exp] = STATE(1747), + [sym_assignment_exp] = STATE(1747), + [sym_piped_io_exp] = STATE(1747), + [sym_string_concat] = STATE(1747), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1747), + [sym_regex_constant] = STATE(1747), + [sym_grouping] = STATE(1747), + [sym__primitive] = STATE(1747), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1747), + [sym_string] = STATE(1747), + [sym_func_call] = STATE(1747), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1747), + [sym_comment] = STATE(1109), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [672] = { + [sym__getline_exp] = STATE(1928), + [sym_getline_input] = STATE(1928), + [sym_getline_file] = STATE(1928), + [sym__exp] = STATE(1928), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1928), + [sym_assignment_exp] = STATE(1928), + [sym_piped_io_exp] = STATE(1928), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2399), + [sym_regex] = STATE(1928), + [sym_regex_constant] = STATE(1928), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1928), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [673] = { + [sym__getline_exp] = STATE(524), + [sym_getline_input] = STATE(524), + [sym_getline_file] = STATE(524), + [sym__exp] = STATE(524), + [sym_ternary_exp] = STATE(524), + [sym_binary_exp] = STATE(524), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(524), + [sym_update_exp] = STATE(524), + [sym_assignment_exp] = STATE(524), + [sym_piped_io_exp] = STATE(524), + [sym_string_concat] = STATE(524), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(524), + [sym_regex_constant] = STATE(524), + [sym_grouping] = STATE(524), + [sym__primitive] = STATE(524), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(524), + [sym_string] = STATE(524), + [sym_func_call] = STATE(524), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(524), + [sym_comment] = STATE(961), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(141), + }, + [674] = { + [sym__getline_exp] = STATE(1756), + [sym_getline_input] = STATE(1756), + [sym_getline_file] = STATE(1756), + [sym__exp] = STATE(1756), + [sym_ternary_exp] = STATE(1756), + [sym_binary_exp] = STATE(1756), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1756), + [sym_update_exp] = STATE(1756), + [sym_assignment_exp] = STATE(1756), + [sym_piped_io_exp] = STATE(1756), + [sym_string_concat] = STATE(1756), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1756), + [sym_regex_constant] = STATE(1756), + [sym_grouping] = STATE(1756), + [sym__primitive] = STATE(1756), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1756), + [sym_string] = STATE(1756), + [sym_func_call] = STATE(1756), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1756), + [sym_comment] = STATE(1093), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [675] = { + [sym__getline_exp] = STATE(1911), + [sym_getline_input] = STATE(1911), + [sym_getline_file] = STATE(1911), + [sym__exp] = STATE(1911), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1911), + [sym_assignment_exp] = STATE(1911), + [sym_piped_io_exp] = STATE(1911), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2379), + [sym_regex] = STATE(1911), + [sym_regex_constant] = STATE(1911), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1911), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [676] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2394), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [677] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2439), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [678] = { + [sym__getline_exp] = STATE(1951), + [sym_getline_input] = STATE(1951), + [sym_getline_file] = STATE(1951), + [sym__exp] = STATE(1951), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1951), + [sym_assignment_exp] = STATE(1951), + [sym_piped_io_exp] = STATE(1951), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1951), + [sym_regex_constant] = STATE(1951), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1951), + [sym_comment] = STATE(993), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [679] = { + [sym__getline_exp] = STATE(1944), + [sym_getline_input] = STATE(1944), + [sym_getline_file] = STATE(1944), + [sym__exp] = STATE(1944), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1944), + [sym_assignment_exp] = STATE(1944), + [sym_piped_io_exp] = STATE(1944), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1944), + [sym_regex_constant] = STATE(1944), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1944), + [sym_comment] = STATE(880), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [680] = { + [sym__getline_exp] = STATE(1918), + [sym_getline_input] = STATE(1918), + [sym_getline_file] = STATE(1918), + [sym__exp] = STATE(1918), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1918), + [sym_assignment_exp] = STATE(1918), + [sym_piped_io_exp] = STATE(1918), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2285), + [sym_regex] = STATE(1918), + [sym_regex_constant] = STATE(1918), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1918), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [681] = { + [sym__getline_exp] = STATE(1917), + [sym_getline_input] = STATE(1917), + [sym_getline_file] = STATE(1917), + [sym__exp] = STATE(1917), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1917), + [sym_assignment_exp] = STATE(1917), + [sym_piped_io_exp] = STATE(1917), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2409), + [sym_regex] = STATE(1917), + [sym_regex_constant] = STATE(1917), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1917), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [682] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2441), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [683] = { + [sym__getline_exp] = STATE(1960), + [sym_getline_input] = STATE(1960), + [sym_getline_file] = STATE(1960), + [sym__exp] = STATE(1960), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1960), + [sym_assignment_exp] = STATE(1960), + [sym_piped_io_exp] = STATE(1960), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1960), + [sym_regex_constant] = STATE(1960), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1960), + [sym_comment] = STATE(1090), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [684] = { + [sym__getline_exp] = STATE(1808), + [sym_getline_input] = STATE(1808), + [sym_getline_file] = STATE(1808), + [sym__exp] = STATE(1808), + [sym_ternary_exp] = STATE(1808), + [sym_binary_exp] = STATE(1808), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1808), + [sym_update_exp] = STATE(1808), + [sym_assignment_exp] = STATE(1808), + [sym_piped_io_exp] = STATE(1808), + [sym_string_concat] = STATE(1808), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1808), + [sym_regex_constant] = STATE(1808), + [sym_grouping] = STATE(1808), + [sym__primitive] = STATE(1808), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1808), + [sym_string] = STATE(1808), + [sym_func_call] = STATE(1808), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1808), + [sym_comment] = STATE(824), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [685] = { + [sym__getline_exp] = STATE(281), + [sym_getline_input] = STATE(281), + [sym_getline_file] = STATE(281), + [sym__exp] = STATE(281), + [sym_ternary_exp] = STATE(281), + [sym_binary_exp] = STATE(281), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(281), + [sym_update_exp] = STATE(281), + [sym_assignment_exp] = STATE(281), + [sym_piped_io_exp] = STATE(281), + [sym_string_concat] = STATE(281), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(281), + [sym_regex_constant] = STATE(281), + [sym_grouping] = STATE(281), + [sym__primitive] = STATE(281), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(281), + [sym_string] = STATE(281), + [sym_func_call] = STATE(281), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(281), + [sym_comment] = STATE(890), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(141), + }, + [686] = { + [sym__getline_exp] = STATE(1940), + [sym_getline_input] = STATE(1940), + [sym_getline_file] = STATE(1940), + [sym__exp] = STATE(1940), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1940), + [sym_assignment_exp] = STATE(1940), + [sym_piped_io_exp] = STATE(1940), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2291), + [sym_regex] = STATE(1940), + [sym_regex_constant] = STATE(1940), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1940), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [687] = { + [sym__getline_exp] = STATE(1941), + [sym_getline_input] = STATE(1941), + [sym_getline_file] = STATE(1941), + [sym__exp] = STATE(1941), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1941), + [sym_assignment_exp] = STATE(1941), + [sym_piped_io_exp] = STATE(1941), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2270), + [sym_regex] = STATE(1941), + [sym_regex_constant] = STATE(1941), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1941), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [688] = { + [sym__getline_exp] = STATE(1971), + [sym_getline_input] = STATE(1971), + [sym_getline_file] = STATE(1971), + [sym__exp] = STATE(1971), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1971), + [sym_assignment_exp] = STATE(1971), + [sym_piped_io_exp] = STATE(1971), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1971), + [sym_regex_constant] = STATE(1971), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1971), + [sym_comment] = STATE(1117), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [689] = { + [sym__getline_exp] = STATE(260), + [sym_getline_input] = STATE(260), + [sym_getline_file] = STATE(260), + [sym__exp] = STATE(260), + [sym_ternary_exp] = STATE(260), + [sym_binary_exp] = STATE(260), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(260), + [sym_update_exp] = STATE(260), + [sym_assignment_exp] = STATE(260), + [sym_piped_io_exp] = STATE(260), + [sym_string_concat] = STATE(260), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(260), + [sym_regex_constant] = STATE(260), + [sym_grouping] = STATE(260), + [sym__primitive] = STATE(260), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(260), + [sym_string] = STATE(260), + [sym_func_call] = STATE(260), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(260), + [sym_comment] = STATE(894), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(141), + }, + [690] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2530), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [691] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2447), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1457), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [692] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2533), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [693] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2449), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1461), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [694] = { + [sym__getline_exp] = STATE(1538), + [sym_getline_input] = STATE(1538), + [sym_getline_file] = STATE(1538), + [sym__exp] = STATE(1538), + [sym_ternary_exp] = STATE(1538), + [sym_binary_exp] = STATE(1538), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1538), + [sym_update_exp] = STATE(1538), + [sym_assignment_exp] = STATE(1538), + [sym_piped_io_exp] = STATE(1538), + [sym_string_concat] = STATE(1538), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1538), + [sym_regex_constant] = STATE(1538), + [sym_grouping] = STATE(1538), + [sym__primitive] = STATE(1538), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1538), + [sym_string] = STATE(1538), + [sym_func_call] = STATE(1538), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1538), + [sym_comment] = STATE(964), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(141), + }, + [695] = { + [sym__getline_exp] = STATE(1804), + [sym_getline_input] = STATE(1804), + [sym_getline_file] = STATE(1804), + [sym__exp] = STATE(1804), + [sym_ternary_exp] = STATE(1804), + [sym_binary_exp] = STATE(1804), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1804), + [sym_update_exp] = STATE(1804), + [sym_assignment_exp] = STATE(1804), + [sym_piped_io_exp] = STATE(1804), + [sym_string_concat] = STATE(1804), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1804), + [sym_regex_constant] = STATE(1804), + [sym_grouping] = STATE(1804), + [sym__primitive] = STATE(1804), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1804), + [sym_string] = STATE(1804), + [sym_func_call] = STATE(1804), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1804), + [sym_comment] = STATE(891), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + [anon_sym_POUND] = ACTIONS(141), + }, + [696] = { + [sym__getline_exp] = STATE(1540), + [sym_getline_input] = STATE(1540), + [sym_getline_file] = STATE(1540), + [sym__exp] = STATE(1540), + [sym_ternary_exp] = STATE(1540), + [sym_binary_exp] = STATE(1540), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1540), + [sym_update_exp] = STATE(1540), + [sym_assignment_exp] = STATE(1540), + [sym_piped_io_exp] = STATE(1540), + [sym_string_concat] = STATE(1540), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1540), + [sym_regex_constant] = STATE(1540), + [sym_grouping] = STATE(1540), + [sym__primitive] = STATE(1540), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1540), + [sym_string] = STATE(1540), + [sym_func_call] = STATE(1540), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1540), + [sym_comment] = STATE(968), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(141), + }, + [697] = { + [sym__getline_exp] = STATE(1931), + [sym_getline_input] = STATE(1931), + [sym_getline_file] = STATE(1931), + [sym__exp] = STATE(1931), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1931), + [sym_assignment_exp] = STATE(1931), + [sym_piped_io_exp] = STATE(1931), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2296), + [sym_regex] = STATE(1931), + [sym_regex_constant] = STATE(1931), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1931), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [698] = { + [sym__getline_exp] = STATE(1922), + [sym_getline_input] = STATE(1922), + [sym_getline_file] = STATE(1922), + [sym__exp] = STATE(1922), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1922), + [sym_assignment_exp] = STATE(1922), + [sym_piped_io_exp] = STATE(1922), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2424), + [sym_regex] = STATE(1922), + [sym_regex_constant] = STATE(1922), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1922), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [699] = { + [sym__getline_exp] = STATE(1976), + [sym_getline_input] = STATE(1976), + [sym_getline_file] = STATE(1976), + [sym__exp] = STATE(1976), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1976), + [sym_assignment_exp] = STATE(1976), + [sym_piped_io_exp] = STATE(1976), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1976), + [sym_regex_constant] = STATE(1976), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1976), + [sym_comment] = STATE(1148), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [700] = { + [sym__getline_exp] = STATE(391), + [sym_getline_input] = STATE(391), + [sym_getline_file] = STATE(391), + [sym__exp] = STATE(391), + [sym_ternary_exp] = STATE(391), + [sym_binary_exp] = STATE(391), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(391), + [sym_update_exp] = STATE(391), + [sym_assignment_exp] = STATE(391), + [sym_piped_io_exp] = STATE(391), + [sym_string_concat] = STATE(391), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(391), + [sym_regex_constant] = STATE(391), + [sym_grouping] = STATE(391), + [sym__primitive] = STATE(391), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(391), + [sym_string] = STATE(391), + [sym_func_call] = STATE(391), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(391), + [sym_comment] = STATE(1038), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [701] = { + [sym__getline_exp] = STATE(1921), + [sym_getline_input] = STATE(1921), + [sym_getline_file] = STATE(1921), + [sym__exp] = STATE(1921), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1921), + [sym_assignment_exp] = STATE(1921), + [sym_piped_io_exp] = STATE(1921), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2272), + [sym_regex] = STATE(1921), + [sym_regex_constant] = STATE(1921), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1921), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [702] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2545), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [703] = { + [sym__getline_exp] = STATE(1916), + [sym_getline_input] = STATE(1916), + [sym_getline_file] = STATE(1916), + [sym__exp] = STATE(1916), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1916), + [sym_assignment_exp] = STATE(1916), + [sym_piped_io_exp] = STATE(1916), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2304), + [sym_regex] = STATE(1916), + [sym_regex_constant] = STATE(1916), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1916), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [704] = { + [sym__getline_exp] = STATE(378), + [sym_getline_input] = STATE(378), + [sym_getline_file] = STATE(378), + [sym__exp] = STATE(378), + [sym_ternary_exp] = STATE(378), + [sym_binary_exp] = STATE(378), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(378), + [sym_update_exp] = STATE(378), + [sym_assignment_exp] = STATE(378), + [sym_piped_io_exp] = STATE(378), + [sym_string_concat] = STATE(378), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(378), + [sym_regex_constant] = STATE(378), + [sym_grouping] = STATE(378), + [sym__primitive] = STATE(378), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(378), + [sym_string] = STATE(378), + [sym_func_call] = STATE(378), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(378), + [sym_comment] = STATE(1042), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(141), + }, + [705] = { + [sym__getline_exp] = STATE(1914), + [sym_getline_input] = STATE(1914), + [sym_getline_file] = STATE(1914), + [sym__exp] = STATE(1914), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1914), + [sym_assignment_exp] = STATE(1914), + [sym_piped_io_exp] = STATE(1914), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2348), + [sym_regex] = STATE(1914), + [sym_regex_constant] = STATE(1914), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1914), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [706] = { + [sym__getline_exp] = STATE(1910), + [sym_getline_input] = STATE(1910), + [sym_getline_file] = STATE(1910), + [sym__exp] = STATE(1910), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1910), + [sym_assignment_exp] = STATE(1910), + [sym_piped_io_exp] = STATE(1910), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2431), + [sym_regex] = STATE(1910), + [sym_regex_constant] = STATE(1910), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1910), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [707] = { + [sym__getline_exp] = STATE(1988), + [sym_getline_input] = STATE(1988), + [sym_getline_file] = STATE(1988), + [sym__exp] = STATE(1988), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1988), + [sym_assignment_exp] = STATE(1988), + [sym_piped_io_exp] = STATE(1988), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1988), + [sym_regex_constant] = STATE(1988), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1988), + [sym_comment] = STATE(1153), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [708] = { + [sym__getline_exp] = STATE(1930), + [sym_getline_input] = STATE(1930), + [sym_getline_file] = STATE(1930), + [sym__exp] = STATE(1930), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1930), + [sym_assignment_exp] = STATE(1930), + [sym_piped_io_exp] = STATE(1930), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2341), + [sym_regex] = STATE(1930), + [sym_regex_constant] = STATE(1930), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1930), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [709] = { + [sym__getline_exp] = STATE(1930), + [sym_getline_input] = STATE(1930), + [sym_getline_file] = STATE(1930), + [sym__exp] = STATE(1930), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1930), + [sym_assignment_exp] = STATE(1930), + [sym_piped_io_exp] = STATE(1930), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2312), + [sym_regex] = STATE(1930), + [sym_regex_constant] = STATE(1930), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1930), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [710] = { + [sym__getline_exp] = STATE(1940), + [sym_getline_input] = STATE(1940), + [sym_getline_file] = STATE(1940), + [sym__exp] = STATE(1940), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1940), + [sym_assignment_exp] = STATE(1940), + [sym_piped_io_exp] = STATE(1940), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2334), + [sym_regex] = STATE(1940), + [sym_regex_constant] = STATE(1940), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1940), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [711] = { + [sym__getline_exp] = STATE(1909), + [sym_getline_input] = STATE(1909), + [sym_getline_file] = STATE(1909), + [sym__exp] = STATE(1909), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1909), + [sym_assignment_exp] = STATE(1909), + [sym_piped_io_exp] = STATE(1909), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2327), + [sym_regex] = STATE(1909), + [sym_regex_constant] = STATE(1909), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1909), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [712] = { + [sym__getline_exp] = STATE(1936), + [sym_getline_input] = STATE(1936), + [sym_getline_file] = STATE(1936), + [sym__exp] = STATE(1936), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1936), + [sym_assignment_exp] = STATE(1936), + [sym_piped_io_exp] = STATE(1936), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2438), + [sym_regex] = STATE(1936), + [sym_regex_constant] = STATE(1936), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1936), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [713] = { + [sym__getline_exp] = STATE(1999), + [sym_getline_input] = STATE(1999), + [sym_getline_file] = STATE(1999), + [sym__exp] = STATE(1999), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1999), + [sym_assignment_exp] = STATE(1999), + [sym_piped_io_exp] = STATE(1999), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1999), + [sym_regex_constant] = STATE(1999), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1999), + [sym_comment] = STATE(1132), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [714] = { + [sym__getline_exp] = STATE(1422), + [sym_getline_input] = STATE(1422), + [sym_getline_file] = STATE(1422), + [sym__exp] = STATE(1422), + [sym_ternary_exp] = STATE(1422), + [sym_binary_exp] = STATE(1422), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1422), + [sym_update_exp] = STATE(1422), + [sym_assignment_exp] = STATE(1422), + [sym_piped_io_exp] = STATE(1422), + [sym_string_concat] = STATE(1422), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1422), + [sym_regex_constant] = STATE(1422), + [sym_grouping] = STATE(1422), + [sym__primitive] = STATE(1422), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1422), + [sym_string] = STATE(1422), + [sym_func_call] = STATE(1422), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1422), + [sym_comment] = STATE(1031), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(141), + }, + [715] = { + [sym__getline_exp] = STATE(1914), + [sym_getline_input] = STATE(1914), + [sym_getline_file] = STATE(1914), + [sym__exp] = STATE(1914), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1914), + [sym_assignment_exp] = STATE(1914), + [sym_piped_io_exp] = STATE(1914), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2320), + [sym_regex] = STATE(1914), + [sym_regex_constant] = STATE(1914), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1914), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [716] = { + [sym__getline_exp] = STATE(1933), + [sym_getline_input] = STATE(1933), + [sym_getline_file] = STATE(1933), + [sym__exp] = STATE(1933), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1933), + [sym_assignment_exp] = STATE(1933), + [sym_piped_io_exp] = STATE(1933), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2446), + [sym_regex] = STATE(1933), + [sym_regex_constant] = STATE(1933), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1933), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [717] = { + [sym__getline_exp] = STATE(237), + [sym_getline_input] = STATE(237), + [sym_getline_file] = STATE(237), + [sym__exp] = STATE(237), + [sym_ternary_exp] = STATE(237), + [sym_binary_exp] = STATE(237), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(237), + [sym_update_exp] = STATE(237), + [sym_assignment_exp] = STATE(237), + [sym_piped_io_exp] = STATE(237), + [sym_string_concat] = STATE(237), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(237), + [sym_regex_constant] = STATE(237), + [sym_grouping] = STATE(237), + [sym__primitive] = STATE(237), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(237), + [sym_string] = STATE(237), + [sym_func_call] = STATE(237), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(237), + [sym_comment] = STATE(1110), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(141), + }, + [718] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2457), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1537), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [719] = { + [sym__getline_exp] = STATE(2034), + [sym_getline_input] = STATE(2034), + [sym_getline_file] = STATE(2034), + [sym__exp] = STATE(2034), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2034), + [sym_assignment_exp] = STATE(2034), + [sym_piped_io_exp] = STATE(2034), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2034), + [sym_regex_constant] = STATE(2034), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2034), + [sym_comment] = STATE(957), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [720] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2387), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1539), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [721] = { + [sym__getline_exp] = STATE(2028), + [sym_getline_input] = STATE(2028), + [sym_getline_file] = STATE(2028), + [sym__exp] = STATE(2028), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2028), + [sym_assignment_exp] = STATE(2028), + [sym_piped_io_exp] = STATE(2028), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2028), + [sym_regex_constant] = STATE(2028), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2028), + [sym_comment] = STATE(1115), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [722] = { + [sym__getline_exp] = STATE(1915), + [sym_getline_input] = STATE(1915), + [sym_getline_file] = STATE(1915), + [sym__exp] = STATE(1915), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1915), + [sym_assignment_exp] = STATE(1915), + [sym_piped_io_exp] = STATE(1915), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2456), + [sym_regex] = STATE(1915), + [sym_regex_constant] = STATE(1915), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1915), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [723] = { + [sym__getline_exp] = STATE(2030), + [sym_getline_input] = STATE(2030), + [sym_getline_file] = STATE(2030), + [sym__exp] = STATE(2030), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2030), + [sym_assignment_exp] = STATE(2030), + [sym_piped_io_exp] = STATE(2030), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2030), + [sym_regex_constant] = STATE(2030), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2030), + [sym_comment] = STATE(1113), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [724] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2466), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1541), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [725] = { + [sym__getline_exp] = STATE(1919), + [sym_getline_input] = STATE(1919), + [sym_getline_file] = STATE(1919), + [sym__exp] = STATE(1919), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1919), + [sym_assignment_exp] = STATE(1919), + [sym_piped_io_exp] = STATE(1919), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2484), + [sym_regex] = STATE(1919), + [sym_regex_constant] = STATE(1919), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1919), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [726] = { + [sym__getline_exp] = STATE(2026), + [sym_getline_input] = STATE(2026), + [sym_getline_file] = STATE(2026), + [sym__exp] = STATE(2026), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2026), + [sym_assignment_exp] = STATE(2026), + [sym_piped_io_exp] = STATE(2026), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2026), + [sym_regex_constant] = STATE(2026), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2026), + [sym_comment] = STATE(1105), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [727] = { + [sym__getline_exp] = STATE(1932), + [sym_getline_input] = STATE(1932), + [sym_getline_file] = STATE(1932), + [sym__exp] = STATE(1932), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1932), + [sym_assignment_exp] = STATE(1932), + [sym_piped_io_exp] = STATE(1932), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2544), + [sym_regex] = STATE(1932), + [sym_regex_constant] = STATE(1932), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1932), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [728] = { + [sym__getline_exp] = STATE(2017), + [sym_getline_input] = STATE(2017), + [sym_getline_file] = STATE(2017), + [sym__exp] = STATE(2017), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2017), + [sym_assignment_exp] = STATE(2017), + [sym_piped_io_exp] = STATE(2017), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2017), + [sym_regex_constant] = STATE(2017), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2017), + [sym_comment] = STATE(1101), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [729] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2330), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [730] = { + [sym__getline_exp] = STATE(1937), + [sym_getline_input] = STATE(1937), + [sym_getline_file] = STATE(1937), + [sym__exp] = STATE(1937), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1937), + [sym_assignment_exp] = STATE(1937), + [sym_piped_io_exp] = STATE(1937), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2552), + [sym_regex] = STATE(1937), + [sym_regex_constant] = STATE(1937), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1937), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [731] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2344), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [732] = { + [sym__getline_exp] = STATE(235), + [sym_getline_input] = STATE(235), + [sym_getline_file] = STATE(235), + [sym__exp] = STATE(235), + [sym_ternary_exp] = STATE(235), + [sym_binary_exp] = STATE(235), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(235), + [sym_update_exp] = STATE(235), + [sym_assignment_exp] = STATE(235), + [sym_piped_io_exp] = STATE(235), + [sym_string_concat] = STATE(235), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(235), + [sym_regex_constant] = STATE(235), + [sym_grouping] = STATE(235), + [sym__primitive] = STATE(235), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(235), + [sym_string] = STATE(235), + [sym_func_call] = STATE(235), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(235), + [sym_comment] = STATE(1114), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(141), + }, + [733] = { + [sym__getline_exp] = STATE(1920), + [sym_getline_input] = STATE(1920), + [sym_getline_file] = STATE(1920), + [sym__exp] = STATE(1920), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1920), + [sym_assignment_exp] = STATE(1920), + [sym_piped_io_exp] = STATE(1920), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2459), + [sym_regex] = STATE(1920), + [sym_regex_constant] = STATE(1920), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1920), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [734] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2385), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [735] = { + [sym__getline_exp] = STATE(2004), + [sym_getline_input] = STATE(2004), + [sym_getline_file] = STATE(2004), + [sym__exp] = STATE(2004), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2004), + [sym_assignment_exp] = STATE(2004), + [sym_piped_io_exp] = STATE(2004), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2004), + [sym_regex_constant] = STATE(2004), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2004), + [sym_comment] = STATE(1091), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [736] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2299), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [737] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2309), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [738] = { + [sym__getline_exp] = STATE(1552), + [sym_getline_input] = STATE(1552), + [sym_getline_file] = STATE(1552), + [sym__exp] = STATE(1552), + [sym_ternary_exp] = STATE(1552), + [sym_binary_exp] = STATE(1552), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1552), + [sym_update_exp] = STATE(1552), + [sym_assignment_exp] = STATE(1552), + [sym_piped_io_exp] = STATE(1552), + [sym_string_concat] = STATE(1552), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1552), + [sym_regex_constant] = STATE(1552), + [sym_grouping] = STATE(1552), + [sym__primitive] = STATE(1552), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1552), + [sym_string] = STATE(1552), + [sym_func_call] = STATE(1552), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1552), + [sym_comment] = STATE(1088), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(141), + }, + [739] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2487), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [740] = { + [sym__getline_exp] = STATE(2010), + [sym_getline_input] = STATE(2010), + [sym_getline_file] = STATE(2010), + [sym__exp] = STATE(2010), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2010), + [sym_assignment_exp] = STATE(2010), + [sym_piped_io_exp] = STATE(2010), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2010), + [sym_regex_constant] = STATE(2010), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2010), + [sym_comment] = STATE(938), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [741] = { + [sym__getline_exp] = STATE(1939), + [sym_getline_input] = STATE(1939), + [sym_getline_file] = STATE(1939), + [sym__exp] = STATE(1939), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1939), + [sym_assignment_exp] = STATE(1939), + [sym_piped_io_exp] = STATE(1939), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2384), + [sym_regex] = STATE(1939), + [sym_regex_constant] = STATE(1939), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1939), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [742] = { + [sym__getline_exp] = STATE(1788), + [sym_getline_input] = STATE(1788), + [sym_getline_file] = STATE(1788), + [sym__exp] = STATE(1788), + [sym_ternary_exp] = STATE(1788), + [sym_binary_exp] = STATE(1788), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1788), + [sym_update_exp] = STATE(1788), + [sym_assignment_exp] = STATE(1788), + [sym_piped_io_exp] = STATE(1788), + [sym_string_concat] = STATE(1788), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1788), + [sym_regex_constant] = STATE(1788), + [sym_grouping] = STATE(1788), + [sym__primitive] = STATE(1788), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1788), + [sym_string] = STATE(1788), + [sym_func_call] = STATE(1788), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1788), + [sym_comment] = STATE(1103), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [743] = { + [sym__getline_exp] = STATE(1913), + [sym_getline_input] = STATE(1913), + [sym_getline_file] = STATE(1913), + [sym__exp] = STATE(1913), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1913), + [sym_assignment_exp] = STATE(1913), + [sym_piped_io_exp] = STATE(1913), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2534), + [sym_regex] = STATE(1913), + [sym_regex_constant] = STATE(1913), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1913), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [744] = { + [sym__getline_exp] = STATE(1544), + [sym_getline_input] = STATE(1544), + [sym_getline_file] = STATE(1544), + [sym__exp] = STATE(1544), + [sym_ternary_exp] = STATE(1544), + [sym_binary_exp] = STATE(1544), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1544), + [sym_update_exp] = STATE(1544), + [sym_assignment_exp] = STATE(1544), + [sym_piped_io_exp] = STATE(1544), + [sym_string_concat] = STATE(1544), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1544), + [sym_regex_constant] = STATE(1544), + [sym_grouping] = STATE(1544), + [sym__primitive] = STATE(1544), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1544), + [sym_string] = STATE(1544), + [sym_func_call] = STATE(1544), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1544), + [sym_comment] = STATE(1081), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(141), + }, + [745] = { + [sym__getline_exp] = STATE(1797), + [sym_getline_input] = STATE(1797), + [sym_getline_file] = STATE(1797), + [sym__exp] = STATE(1797), + [sym_ternary_exp] = STATE(1797), + [sym_binary_exp] = STATE(1797), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1797), + [sym_update_exp] = STATE(1797), + [sym_assignment_exp] = STATE(1797), + [sym_piped_io_exp] = STATE(1797), + [sym_string_concat] = STATE(1797), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1797), + [sym_regex_constant] = STATE(1797), + [sym_grouping] = STATE(1797), + [sym__primitive] = STATE(1797), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1797), + [sym_string] = STATE(1797), + [sym_func_call] = STATE(1797), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1797), + [sym_comment] = STATE(1097), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + [anon_sym_POUND] = ACTIONS(141), + }, + [746] = { + [sym__getline_exp] = STATE(1923), + [sym_getline_input] = STATE(1923), + [sym_getline_file] = STATE(1923), + [sym__exp] = STATE(1923), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1923), + [sym_assignment_exp] = STATE(1923), + [sym_piped_io_exp] = STATE(1923), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2511), + [sym_regex] = STATE(1923), + [sym_regex_constant] = STATE(1923), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1923), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [747] = { + [sym__getline_exp] = STATE(1487), + [sym_getline_input] = STATE(1487), + [sym_getline_file] = STATE(1487), + [sym__exp] = STATE(1487), + [sym_ternary_exp] = STATE(1487), + [sym_binary_exp] = STATE(1487), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1487), + [sym_update_exp] = STATE(1487), + [sym_assignment_exp] = STATE(1487), + [sym_piped_io_exp] = STATE(1487), + [sym_string_concat] = STATE(1487), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1487), + [sym_regex_constant] = STATE(1487), + [sym_grouping] = STATE(1487), + [sym__primitive] = STATE(1487), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1487), + [sym_string] = STATE(1487), + [sym_func_call] = STATE(1487), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1487), + [sym_comment] = STATE(1023), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(141), + }, + [748] = { + [sym__getline_exp] = STATE(1485), + [sym_getline_input] = STATE(1485), + [sym_getline_file] = STATE(1485), + [sym__exp] = STATE(1485), + [sym_ternary_exp] = STATE(1485), + [sym_binary_exp] = STATE(1485), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1485), + [sym_update_exp] = STATE(1485), + [sym_assignment_exp] = STATE(1485), + [sym_piped_io_exp] = STATE(1485), + [sym_string_concat] = STATE(1485), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1485), + [sym_regex_constant] = STATE(1485), + [sym_grouping] = STATE(1485), + [sym__primitive] = STATE(1485), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1485), + [sym_string] = STATE(1485), + [sym_func_call] = STATE(1485), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1485), + [sym_comment] = STATE(1020), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(141), + }, + [749] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2410), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [750] = { + [sym__getline_exp] = STATE(1863), + [sym_getline_input] = STATE(1863), + [sym_getline_file] = STATE(1863), + [sym__exp] = STATE(1863), + [sym_ternary_exp] = STATE(1863), + [sym_binary_exp] = STATE(1863), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1863), + [sym_update_exp] = STATE(1863), + [sym_assignment_exp] = STATE(1863), + [sym_piped_io_exp] = STATE(1863), + [sym_string_concat] = STATE(1863), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1863), + [sym_regex_constant] = STATE(1863), + [sym_grouping] = STATE(1863), + [sym__primitive] = STATE(1863), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1863), + [sym_string] = STATE(1863), + [sym_func_call] = STATE(1863), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1863), + [sym_comment] = STATE(857), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [751] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2499), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1615), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [752] = { + [sym__getline_exp] = STATE(1927), + [sym_getline_input] = STATE(1927), + [sym_getline_file] = STATE(1927), + [sym__exp] = STATE(1927), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1927), + [sym_assignment_exp] = STATE(1927), + [sym_piped_io_exp] = STATE(1927), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_exp_list] = STATE(2302), + [sym_regex] = STATE(1927), + [sym_regex_constant] = STATE(1927), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1927), + [aux_sym_exp_list_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [753] = { + [sym__getline_exp] = STATE(573), + [sym_getline_input] = STATE(573), + [sym_getline_file] = STATE(573), + [sym__exp] = STATE(573), + [sym_ternary_exp] = STATE(573), + [sym_binary_exp] = STATE(573), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(573), + [sym_update_exp] = STATE(573), + [sym_assignment_exp] = STATE(573), + [sym_piped_io_exp] = STATE(573), + [sym_string_concat] = STATE(573), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(573), + [sym_regex_constant] = STATE(573), + [sym_grouping] = STATE(573), + [sym__primitive] = STATE(573), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(573), + [sym_string] = STATE(573), + [sym_func_call] = STATE(573), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(573), + [sym_comment] = STATE(1108), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + [anon_sym_POUND] = ACTIONS(141), + }, + [754] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2502), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [755] = { + [sym__getline_exp] = STATE(1962), + [sym_getline_input] = STATE(1962), + [sym_getline_file] = STATE(1962), + [sym__exp] = STATE(1962), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1962), + [sym_assignment_exp] = STATE(1962), + [sym_piped_io_exp] = STATE(1962), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1962), + [sym_regex_constant] = STATE(1962), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1962), + [sym_comment] = STATE(897), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [756] = { + [sym__getline_exp] = STATE(1406), + [sym_getline_input] = STATE(1406), + [sym_getline_file] = STATE(1406), + [sym__exp] = STATE(1406), + [sym_ternary_exp] = STATE(1406), + [sym_binary_exp] = STATE(1406), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1406), + [sym_update_exp] = STATE(1406), + [sym_assignment_exp] = STATE(1406), + [sym_piped_io_exp] = STATE(1406), + [sym_string_concat] = STATE(1406), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1406), + [sym_regex_constant] = STATE(1406), + [sym_grouping] = STATE(1406), + [sym__primitive] = STATE(1406), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1406), + [sym_string] = STATE(1406), + [sym_func_call] = STATE(1406), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1406), + [sym_comment] = STATE(1025), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(141), + }, + [757] = { + [sym_identifier] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_CR_LF] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [sym_break_statement] = ACTIONS(1629), + [sym_continue_statement] = ACTIONS(1629), + [anon_sym_delete] = ACTIONS(1629), + [anon_sym_exit] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_getline] = ACTIONS(1629), + [sym_next_statement] = ACTIONS(1629), + [sym_nextfile_statement] = ACTIONS(1629), + [anon_sym_print] = ACTIONS(1629), + [anon_sym_printf] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1629), + [anon_sym_DASH_DASH] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_AT] = ACTIONS(1629), + [aux_sym_number_token1] = ACTIONS(1629), + [aux_sym_number_token2] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_asort] = ACTIONS(1629), + [anon_sym_asorti] = ACTIONS(1629), + [anon_sym_bindtextdomain] = ACTIONS(1629), + [anon_sym_compl] = ACTIONS(1629), + [anon_sym_cos] = ACTIONS(1629), + [anon_sym_dcgettext] = ACTIONS(1629), + [anon_sym_dcngettext] = ACTIONS(1629), + [anon_sym_exp] = ACTIONS(1629), + [anon_sym_gensub] = ACTIONS(1629), + [anon_sym_gsub] = ACTIONS(1629), + [anon_sym_index] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_isarray] = ACTIONS(1629), + [anon_sym_length] = ACTIONS(1629), + [anon_sym_log] = ACTIONS(1629), + [anon_sym_lshift] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_mktime] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_patsplit] = ACTIONS(1629), + [anon_sym_rand] = ACTIONS(1629), + [anon_sym_rshift] = ACTIONS(1629), + [anon_sym_sin] = ACTIONS(1629), + [anon_sym_split] = ACTIONS(1629), + [anon_sym_sprintf] = ACTIONS(1629), + [anon_sym_sqrt] = ACTIONS(1629), + [anon_sym_srand] = ACTIONS(1629), + [anon_sym_strftime] = ACTIONS(1629), + [anon_sym_strtonum] = ACTIONS(1629), + [anon_sym_sub] = ACTIONS(1629), + [anon_sym_substr] = ACTIONS(1629), + [anon_sym_systime] = ACTIONS(1629), + [anon_sym_tolower] = ACTIONS(1629), + [anon_sym_toupper] = ACTIONS(1629), + [anon_sym_typeof] = ACTIONS(1629), + [anon_sym_xor] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(1629), + [sym__if_else_separator] = ACTIONS(1631), + }, + [758] = { + [sym_identifier] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_LF] = ACTIONS(1633), + [anon_sym_CR_LF] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [sym_break_statement] = ACTIONS(1633), + [sym_continue_statement] = ACTIONS(1633), + [anon_sym_delete] = ACTIONS(1633), + [anon_sym_exit] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_case] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_getline] = ACTIONS(1633), + [sym_next_statement] = ACTIONS(1633), + [sym_nextfile_statement] = ACTIONS(1633), + [anon_sym_print] = ACTIONS(1633), + [anon_sym_printf] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1633), + [anon_sym_GT_GT] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_PIPE_AMP] = ACTIONS(1633), + [anon_sym_SLASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1633), + [anon_sym_PLUS_PLUS] = ACTIONS(1633), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_AT] = ACTIONS(1633), + [aux_sym_number_token1] = ACTIONS(1633), + [aux_sym_number_token2] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [anon_sym_and] = ACTIONS(1633), + [anon_sym_asort] = ACTIONS(1633), + [anon_sym_asorti] = ACTIONS(1633), + [anon_sym_bindtextdomain] = ACTIONS(1633), + [anon_sym_compl] = ACTIONS(1633), + [anon_sym_cos] = ACTIONS(1633), + [anon_sym_dcgettext] = ACTIONS(1633), + [anon_sym_dcngettext] = ACTIONS(1633), + [anon_sym_exp] = ACTIONS(1633), + [anon_sym_gensub] = ACTIONS(1633), + [anon_sym_gsub] = ACTIONS(1633), + [anon_sym_index] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_isarray] = ACTIONS(1633), + [anon_sym_length] = ACTIONS(1633), + [anon_sym_log] = ACTIONS(1633), + [anon_sym_lshift] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_mktime] = ACTIONS(1633), + [anon_sym_or] = ACTIONS(1633), + [anon_sym_patsplit] = ACTIONS(1633), + [anon_sym_rand] = ACTIONS(1633), + [anon_sym_rshift] = ACTIONS(1633), + [anon_sym_sin] = ACTIONS(1633), + [anon_sym_split] = ACTIONS(1633), + [anon_sym_sprintf] = ACTIONS(1633), + [anon_sym_sqrt] = ACTIONS(1633), + [anon_sym_srand] = ACTIONS(1633), + [anon_sym_strftime] = ACTIONS(1633), + [anon_sym_strtonum] = ACTIONS(1633), + [anon_sym_sub] = ACTIONS(1633), + [anon_sym_substr] = ACTIONS(1633), + [anon_sym_systime] = ACTIONS(1633), + [anon_sym_tolower] = ACTIONS(1633), + [anon_sym_toupper] = ACTIONS(1633), + [anon_sym_typeof] = ACTIONS(1633), + [anon_sym_xor] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(1633), + [sym__if_else_separator] = ACTIONS(1635), + }, + [759] = { + [sym__getline_exp] = STATE(575), + [sym_getline_input] = STATE(575), + [sym_getline_file] = STATE(575), + [sym__exp] = STATE(575), + [sym_ternary_exp] = STATE(575), + [sym_binary_exp] = STATE(575), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(575), + [sym_update_exp] = STATE(575), + [sym_assignment_exp] = STATE(575), + [sym_piped_io_exp] = STATE(575), + [sym_string_concat] = STATE(575), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(575), + [sym_regex_constant] = STATE(575), + [sym_grouping] = STATE(575), + [sym__primitive] = STATE(575), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(575), + [sym_string] = STATE(575), + [sym_func_call] = STATE(575), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(575), + [sym_comment] = STATE(977), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + [anon_sym_POUND] = ACTIONS(141), + }, + [760] = { + [sym__getline_exp] = STATE(421), + [sym_getline_input] = STATE(421), + [sym_getline_file] = STATE(421), + [sym__exp] = STATE(421), + [sym_ternary_exp] = STATE(421), + [sym_binary_exp] = STATE(421), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(421), + [sym_update_exp] = STATE(421), + [sym_assignment_exp] = STATE(421), + [sym_piped_io_exp] = STATE(421), + [sym_string_concat] = STATE(421), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(421), + [sym_regex_constant] = STATE(421), + [sym_grouping] = STATE(421), + [sym__primitive] = STATE(421), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(421), + [sym_string] = STATE(421), + [sym_func_call] = STATE(421), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(421), + [sym_comment] = STATE(867), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), + }, + [761] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2551), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [762] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2508), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [763] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2428), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [764] = { + [sym__getline_exp] = STATE(1907), + [sym_getline_input] = STATE(1907), + [sym_getline_file] = STATE(1907), + [sym__exp] = STATE(1907), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1907), + [sym_assignment_exp] = STATE(1907), + [sym_piped_io_exp] = STATE(1907), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1907), + [sym_regex_constant] = STATE(1907), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1907), + [sym_args] = STATE(2542), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [765] = { + [sym__getline_exp] = STATE(424), + [sym_getline_input] = STATE(424), + [sym_getline_file] = STATE(424), + [sym__exp] = STATE(424), + [sym_ternary_exp] = STATE(424), + [sym_binary_exp] = STATE(424), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(424), + [sym_update_exp] = STATE(424), + [sym_assignment_exp] = STATE(424), + [sym_piped_io_exp] = STATE(424), + [sym_string_concat] = STATE(424), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(424), + [sym_regex_constant] = STATE(424), + [sym_grouping] = STATE(424), + [sym__primitive] = STATE(424), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(424), + [sym_string] = STATE(424), + [sym_func_call] = STATE(424), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(424), + [sym_comment] = STATE(860), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(141), + }, + [766] = { + [sym__getline_exp] = STATE(1861), + [sym_getline_input] = STATE(1861), + [sym_getline_file] = STATE(1861), + [sym__exp] = STATE(1861), + [sym_ternary_exp] = STATE(1861), + [sym_binary_exp] = STATE(1861), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1861), + [sym_update_exp] = STATE(1861), + [sym_assignment_exp] = STATE(1861), + [sym_piped_io_exp] = STATE(1861), + [sym_string_concat] = STATE(1861), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1861), + [sym_regex_constant] = STATE(1861), + [sym_grouping] = STATE(1861), + [sym__primitive] = STATE(1861), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1861), + [sym_string] = STATE(1861), + [sym_func_call] = STATE(1861), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1861), + [sym_comment] = STATE(839), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(141), + }, + [767] = { + [sym__getline_exp] = STATE(464), + [sym_getline_input] = STATE(464), + [sym_getline_file] = STATE(464), + [sym__exp] = STATE(464), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(464), + [sym_assignment_exp] = STATE(464), + [sym_piped_io_exp] = STATE(464), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(464), + [sym_regex_constant] = STATE(464), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(464), + [aux_sym_exp_list_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [768] = { + [sym__getline_exp] = STATE(2016), + [sym_getline_input] = STATE(2016), + [sym_getline_file] = STATE(2016), + [sym__exp] = STATE(2016), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2016), + [sym_assignment_exp] = STATE(2016), + [sym_piped_io_exp] = STATE(2016), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2016), + [sym_regex_constant] = STATE(2016), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2016), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [769] = { + [sym__getline_exp] = STATE(1980), + [sym_getline_input] = STATE(1980), + [sym_getline_file] = STATE(1980), + [sym__exp] = STATE(1980), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1980), + [sym_assignment_exp] = STATE(1980), + [sym_piped_io_exp] = STATE(1980), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1980), + [sym_regex_constant] = STATE(1980), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1980), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [770] = { + [sym__getline_exp] = STATE(1967), + [sym_getline_input] = STATE(1967), + [sym_getline_file] = STATE(1967), + [sym__exp] = STATE(1967), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1967), + [sym_assignment_exp] = STATE(1967), + [sym_piped_io_exp] = STATE(1967), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1967), + [sym_regex_constant] = STATE(1967), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1967), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [771] = { + [sym__getline_exp] = STATE(2033), + [sym_getline_input] = STATE(2033), + [sym_getline_file] = STATE(2033), + [sym__exp] = STATE(2033), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2033), + [sym_assignment_exp] = STATE(2033), + [sym_piped_io_exp] = STATE(2033), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2033), + [sym_regex_constant] = STATE(2033), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2033), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [772] = { + [sym__getline_exp] = STATE(1975), + [sym_getline_input] = STATE(1975), + [sym_getline_file] = STATE(1975), + [sym__exp] = STATE(1975), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1975), + [sym_assignment_exp] = STATE(1975), + [sym_piped_io_exp] = STATE(1975), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1975), + [sym_regex_constant] = STATE(1975), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1975), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [773] = { + [sym__getline_exp] = STATE(1979), + [sym_getline_input] = STATE(1979), + [sym_getline_file] = STATE(1979), + [sym__exp] = STATE(1979), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1979), + [sym_assignment_exp] = STATE(1979), + [sym_piped_io_exp] = STATE(1979), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1979), + [sym_regex_constant] = STATE(1979), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1979), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [774] = { + [sym__getline_exp] = STATE(1767), + [sym_getline_input] = STATE(1767), + [sym_getline_file] = STATE(1767), + [sym__exp] = STATE(1767), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1767), + [sym_assignment_exp] = STATE(1767), + [sym_piped_io_exp] = STATE(1767), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1767), + [sym_regex_constant] = STATE(1767), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1767), + [aux_sym_exp_list_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [775] = { + [sym__getline_exp] = STATE(1908), + [sym_getline_input] = STATE(1908), + [sym_getline_file] = STATE(1908), + [sym__exp] = STATE(1908), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1908), + [sym_assignment_exp] = STATE(1908), + [sym_piped_io_exp] = STATE(1908), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1908), + [sym_regex_constant] = STATE(1908), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1908), + [aux_sym_exp_list_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [776] = { + [sym__getline_exp] = STATE(1954), + [sym_getline_input] = STATE(1954), + [sym_getline_file] = STATE(1954), + [sym__exp] = STATE(1954), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1954), + [sym_assignment_exp] = STATE(1954), + [sym_piped_io_exp] = STATE(1954), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1954), + [sym_regex_constant] = STATE(1954), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1954), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [777] = { + [sym__getline_exp] = STATE(1972), + [sym_getline_input] = STATE(1972), + [sym_getline_file] = STATE(1972), + [sym__exp] = STATE(1972), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1972), + [sym_assignment_exp] = STATE(1972), + [sym_piped_io_exp] = STATE(1972), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1972), + [sym_regex_constant] = STATE(1972), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1972), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [778] = { + [sym__getline_exp] = STATE(1970), + [sym_getline_input] = STATE(1970), + [sym_getline_file] = STATE(1970), + [sym__exp] = STATE(1970), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1970), + [sym_assignment_exp] = STATE(1970), + [sym_piped_io_exp] = STATE(1970), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1970), + [sym_regex_constant] = STATE(1970), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1970), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [779] = { + [sym__getline_exp] = STATE(1986), + [sym_getline_input] = STATE(1986), + [sym_getline_file] = STATE(1986), + [sym__exp] = STATE(1986), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1986), + [sym_assignment_exp] = STATE(1986), + [sym_piped_io_exp] = STATE(1986), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1986), + [sym_regex_constant] = STATE(1986), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1986), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [780] = { + [sym__getline_exp] = STATE(1973), + [sym_getline_input] = STATE(1973), + [sym_getline_file] = STATE(1973), + [sym__exp] = STATE(1973), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1973), + [sym_assignment_exp] = STATE(1973), + [sym_piped_io_exp] = STATE(1973), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1973), + [sym_regex_constant] = STATE(1973), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1973), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [781] = { + [sym__getline_exp] = STATE(1987), + [sym_getline_input] = STATE(1987), + [sym_getline_file] = STATE(1987), + [sym__exp] = STATE(1987), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1987), + [sym_assignment_exp] = STATE(1987), + [sym_piped_io_exp] = STATE(1987), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1987), + [sym_regex_constant] = STATE(1987), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1987), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [782] = { + [sym_identifier] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_CR_LF] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [sym_break_statement] = ACTIONS(1629), + [sym_continue_statement] = ACTIONS(1629), + [anon_sym_delete] = ACTIONS(1629), + [anon_sym_exit] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_getline] = ACTIONS(1629), + [sym_next_statement] = ACTIONS(1629), + [sym_nextfile_statement] = ACTIONS(1629), + [anon_sym_print] = ACTIONS(1629), + [anon_sym_printf] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1629), + [anon_sym_DASH_DASH] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_AT] = ACTIONS(1629), + [aux_sym_number_token1] = ACTIONS(1629), + [aux_sym_number_token2] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_asort] = ACTIONS(1629), + [anon_sym_asorti] = ACTIONS(1629), + [anon_sym_bindtextdomain] = ACTIONS(1629), + [anon_sym_compl] = ACTIONS(1629), + [anon_sym_cos] = ACTIONS(1629), + [anon_sym_dcgettext] = ACTIONS(1629), + [anon_sym_dcngettext] = ACTIONS(1629), + [anon_sym_exp] = ACTIONS(1629), + [anon_sym_gensub] = ACTIONS(1629), + [anon_sym_gsub] = ACTIONS(1629), + [anon_sym_index] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_isarray] = ACTIONS(1629), + [anon_sym_length] = ACTIONS(1629), + [anon_sym_log] = ACTIONS(1629), + [anon_sym_lshift] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_mktime] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_patsplit] = ACTIONS(1629), + [anon_sym_rand] = ACTIONS(1629), + [anon_sym_rshift] = ACTIONS(1629), + [anon_sym_sin] = ACTIONS(1629), + [anon_sym_split] = ACTIONS(1629), + [anon_sym_sprintf] = ACTIONS(1629), + [anon_sym_sqrt] = ACTIONS(1629), + [anon_sym_srand] = ACTIONS(1629), + [anon_sym_strftime] = ACTIONS(1629), + [anon_sym_strtonum] = ACTIONS(1629), + [anon_sym_sub] = ACTIONS(1629), + [anon_sym_substr] = ACTIONS(1629), + [anon_sym_systime] = ACTIONS(1629), + [anon_sym_tolower] = ACTIONS(1629), + [anon_sym_toupper] = ACTIONS(1629), + [anon_sym_typeof] = ACTIONS(1629), + [anon_sym_xor] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(1629), + }, + [783] = { + [sym_identifier] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_LF] = ACTIONS(1633), + [anon_sym_CR_LF] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [sym_break_statement] = ACTIONS(1633), + [sym_continue_statement] = ACTIONS(1633), + [anon_sym_delete] = ACTIONS(1633), + [anon_sym_exit] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_case] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_getline] = ACTIONS(1633), + [sym_next_statement] = ACTIONS(1633), + [sym_nextfile_statement] = ACTIONS(1633), + [anon_sym_print] = ACTIONS(1633), + [anon_sym_printf] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1633), + [anon_sym_GT_GT] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_PIPE_AMP] = ACTIONS(1633), + [anon_sym_SLASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1633), + [anon_sym_PLUS_PLUS] = ACTIONS(1633), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_AT] = ACTIONS(1633), + [aux_sym_number_token1] = ACTIONS(1633), + [aux_sym_number_token2] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [anon_sym_and] = ACTIONS(1633), + [anon_sym_asort] = ACTIONS(1633), + [anon_sym_asorti] = ACTIONS(1633), + [anon_sym_bindtextdomain] = ACTIONS(1633), + [anon_sym_compl] = ACTIONS(1633), + [anon_sym_cos] = ACTIONS(1633), + [anon_sym_dcgettext] = ACTIONS(1633), + [anon_sym_dcngettext] = ACTIONS(1633), + [anon_sym_exp] = ACTIONS(1633), + [anon_sym_gensub] = ACTIONS(1633), + [anon_sym_gsub] = ACTIONS(1633), + [anon_sym_index] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_isarray] = ACTIONS(1633), + [anon_sym_length] = ACTIONS(1633), + [anon_sym_log] = ACTIONS(1633), + [anon_sym_lshift] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_mktime] = ACTIONS(1633), + [anon_sym_or] = ACTIONS(1633), + [anon_sym_patsplit] = ACTIONS(1633), + [anon_sym_rand] = ACTIONS(1633), + [anon_sym_rshift] = ACTIONS(1633), + [anon_sym_sin] = ACTIONS(1633), + [anon_sym_split] = ACTIONS(1633), + [anon_sym_sprintf] = ACTIONS(1633), + [anon_sym_sqrt] = ACTIONS(1633), + [anon_sym_srand] = ACTIONS(1633), + [anon_sym_strftime] = ACTIONS(1633), + [anon_sym_strtonum] = ACTIONS(1633), + [anon_sym_sub] = ACTIONS(1633), + [anon_sym_substr] = ACTIONS(1633), + [anon_sym_systime] = ACTIONS(1633), + [anon_sym_tolower] = ACTIONS(1633), + [anon_sym_toupper] = ACTIONS(1633), + [anon_sym_typeof] = ACTIONS(1633), + [anon_sym_xor] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(1633), + }, + [784] = { + [sym__getline_exp] = STATE(394), + [sym_getline_input] = STATE(394), + [sym_getline_file] = STATE(394), + [sym__exp] = STATE(394), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(394), + [sym_assignment_exp] = STATE(394), + [sym_piped_io_exp] = STATE(394), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(394), + [sym_regex_constant] = STATE(394), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(394), + [aux_sym_exp_list_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [785] = { + [sym__getline_exp] = STATE(2020), + [sym_getline_input] = STATE(2020), + [sym_getline_file] = STATE(2020), + [sym__exp] = STATE(2020), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2020), + [sym_assignment_exp] = STATE(2020), + [sym_piped_io_exp] = STATE(2020), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2020), + [sym_regex_constant] = STATE(2020), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2020), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [786] = { + [sym__getline_exp] = STATE(1968), + [sym_getline_input] = STATE(1968), + [sym_getline_file] = STATE(1968), + [sym__exp] = STATE(1968), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1968), + [sym_assignment_exp] = STATE(1968), + [sym_piped_io_exp] = STATE(1968), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1968), + [sym_regex_constant] = STATE(1968), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1968), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [787] = { + [sym__getline_exp] = STATE(2021), + [sym_getline_input] = STATE(2021), + [sym_getline_file] = STATE(2021), + [sym__exp] = STATE(2021), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2021), + [sym_assignment_exp] = STATE(2021), + [sym_piped_io_exp] = STATE(2021), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2021), + [sym_regex_constant] = STATE(2021), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2021), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [788] = { + [sym__getline_exp] = STATE(1955), + [sym_getline_input] = STATE(1955), + [sym_getline_file] = STATE(1955), + [sym__exp] = STATE(1955), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1955), + [sym_assignment_exp] = STATE(1955), + [sym_piped_io_exp] = STATE(1955), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1955), + [sym_regex_constant] = STATE(1955), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1607), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1955), + [sym_identifier] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [789] = { + [sym__getline_exp] = STATE(2001), + [sym_getline_input] = STATE(2001), + [sym_getline_file] = STATE(2001), + [sym__exp] = STATE(2001), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2001), + [sym_assignment_exp] = STATE(2001), + [sym_piped_io_exp] = STATE(2001), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2001), + [sym_regex_constant] = STATE(2001), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2001), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [790] = { + [sym__getline_exp] = STATE(2008), + [sym_getline_input] = STATE(2008), + [sym_getline_file] = STATE(2008), + [sym__exp] = STATE(2008), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2008), + [sym_assignment_exp] = STATE(2008), + [sym_piped_io_exp] = STATE(2008), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2008), + [sym_regex_constant] = STATE(2008), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2008), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [791] = { + [sym__getline_exp] = STATE(1995), + [sym_getline_input] = STATE(1995), + [sym_getline_file] = STATE(1995), + [sym__exp] = STATE(1995), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1995), + [sym_assignment_exp] = STATE(1995), + [sym_piped_io_exp] = STATE(1995), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1995), + [sym_regex_constant] = STATE(1995), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1995), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [792] = { + [sym__getline_exp] = STATE(2022), + [sym_getline_input] = STATE(2022), + [sym_getline_file] = STATE(2022), + [sym__exp] = STATE(2022), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2022), + [sym_assignment_exp] = STATE(2022), + [sym_piped_io_exp] = STATE(2022), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2022), + [sym_regex_constant] = STATE(2022), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1604), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2022), + [sym_identifier] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [793] = { + [sym__getline_exp] = STATE(1978), + [sym_getline_input] = STATE(1978), + [sym_getline_file] = STATE(1978), + [sym__exp] = STATE(1978), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1978), + [sym_assignment_exp] = STATE(1978), + [sym_piped_io_exp] = STATE(1978), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1978), + [sym_regex_constant] = STATE(1978), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1978), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [794] = { + [sym__getline_exp] = STATE(1745), + [sym_getline_input] = STATE(1745), + [sym_getline_file] = STATE(1745), + [sym__exp] = STATE(1745), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1745), + [sym_assignment_exp] = STATE(1745), + [sym_piped_io_exp] = STATE(1745), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1745), + [sym_regex_constant] = STATE(1745), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1745), + [aux_sym_exp_list_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [795] = { + [sym__getline_exp] = STATE(2014), + [sym_getline_input] = STATE(2014), + [sym_getline_file] = STATE(2014), + [sym__exp] = STATE(2014), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2014), + [sym_assignment_exp] = STATE(2014), + [sym_piped_io_exp] = STATE(2014), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2014), + [sym_regex_constant] = STATE(2014), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2014), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1701), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [796] = { + [sym__getline_exp] = STATE(1993), + [sym_getline_input] = STATE(1993), + [sym_getline_file] = STATE(1993), + [sym__exp] = STATE(1993), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1993), + [sym_assignment_exp] = STATE(1993), + [sym_piped_io_exp] = STATE(1993), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1993), + [sym_regex_constant] = STATE(1993), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1993), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [797] = { + [sym__getline_exp] = STATE(1948), + [sym_getline_input] = STATE(1948), + [sym_getline_file] = STATE(1948), + [sym__exp] = STATE(1948), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1948), + [sym_assignment_exp] = STATE(1948), + [sym_piped_io_exp] = STATE(1948), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1948), + [sym_regex_constant] = STATE(1948), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1948), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [798] = { + [sym__getline_exp] = STATE(1992), + [sym_getline_input] = STATE(1992), + [sym_getline_file] = STATE(1992), + [sym__exp] = STATE(1992), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1992), + [sym_assignment_exp] = STATE(1992), + [sym_piped_io_exp] = STATE(1992), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1992), + [sym_regex_constant] = STATE(1992), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1992), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [799] = { + [sym__getline_exp] = STATE(2012), + [sym_getline_input] = STATE(2012), + [sym_getline_file] = STATE(2012), + [sym__exp] = STATE(2012), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2012), + [sym_assignment_exp] = STATE(2012), + [sym_piped_io_exp] = STATE(2012), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2012), + [sym_regex_constant] = STATE(2012), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2012), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [800] = { + [sym__getline_exp] = STATE(1966), + [sym_getline_input] = STATE(1966), + [sym_getline_file] = STATE(1966), + [sym__exp] = STATE(1966), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1966), + [sym_assignment_exp] = STATE(1966), + [sym_piped_io_exp] = STATE(1966), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1966), + [sym_regex_constant] = STATE(1966), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1966), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [801] = { + [sym__getline_exp] = STATE(1965), + [sym_getline_input] = STATE(1965), + [sym_getline_file] = STATE(1965), + [sym__exp] = STATE(1965), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1965), + [sym_assignment_exp] = STATE(1965), + [sym_piped_io_exp] = STATE(1965), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1965), + [sym_regex_constant] = STATE(1965), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1965), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [802] = { + [sym__getline_exp] = STATE(1994), + [sym_getline_input] = STATE(1994), + [sym_getline_file] = STATE(1994), + [sym__exp] = STATE(1994), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1994), + [sym_assignment_exp] = STATE(1994), + [sym_piped_io_exp] = STATE(1994), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1994), + [sym_regex_constant] = STATE(1994), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1994), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1715), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [803] = { + [sym__getline_exp] = STATE(1949), + [sym_getline_input] = STATE(1949), + [sym_getline_file] = STATE(1949), + [sym__exp] = STATE(1949), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1949), + [sym_assignment_exp] = STATE(1949), + [sym_piped_io_exp] = STATE(1949), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1949), + [sym_regex_constant] = STATE(1949), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1612), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1949), + [sym_identifier] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [804] = { + [sym_identifier] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_LF] = ACTIONS(1317), + [anon_sym_CR_LF] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [sym_break_statement] = ACTIONS(1317), + [sym_continue_statement] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_exit] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_getline] = ACTIONS(1317), + [sym_next_statement] = ACTIONS(1317), + [sym_nextfile_statement] = ACTIONS(1317), + [anon_sym_print] = ACTIONS(1317), + [anon_sym_printf] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(1317), + [anon_sym_PIPE] = ACTIONS(1317), + [anon_sym_PIPE_AMP] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(1317), + [aux_sym_number_token1] = ACTIONS(1317), + [aux_sym_number_token2] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [anon_sym_and] = ACTIONS(1317), + [anon_sym_asort] = ACTIONS(1317), + [anon_sym_asorti] = ACTIONS(1317), + [anon_sym_bindtextdomain] = ACTIONS(1317), + [anon_sym_compl] = ACTIONS(1317), + [anon_sym_cos] = ACTIONS(1317), + [anon_sym_dcgettext] = ACTIONS(1317), + [anon_sym_dcngettext] = ACTIONS(1317), + [anon_sym_exp] = ACTIONS(1317), + [anon_sym_gensub] = ACTIONS(1317), + [anon_sym_gsub] = ACTIONS(1317), + [anon_sym_index] = ACTIONS(1317), + [anon_sym_int] = ACTIONS(1317), + [anon_sym_isarray] = ACTIONS(1317), + [anon_sym_length] = ACTIONS(1317), + [anon_sym_log] = ACTIONS(1317), + [anon_sym_lshift] = ACTIONS(1317), + [anon_sym_match] = ACTIONS(1317), + [anon_sym_mktime] = ACTIONS(1317), + [anon_sym_or] = ACTIONS(1317), + [anon_sym_patsplit] = ACTIONS(1317), + [anon_sym_rand] = ACTIONS(1317), + [anon_sym_rshift] = ACTIONS(1317), + [anon_sym_sin] = ACTIONS(1317), + [anon_sym_split] = ACTIONS(1317), + [anon_sym_sprintf] = ACTIONS(1317), + [anon_sym_sqrt] = ACTIONS(1317), + [anon_sym_srand] = ACTIONS(1317), + [anon_sym_strftime] = ACTIONS(1317), + [anon_sym_strtonum] = ACTIONS(1317), + [anon_sym_sub] = ACTIONS(1317), + [anon_sym_substr] = ACTIONS(1317), + [anon_sym_systime] = ACTIONS(1317), + [anon_sym_tolower] = ACTIONS(1317), + [anon_sym_toupper] = ACTIONS(1317), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_xor] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1317), + }, + [805] = { + [sym__getline_exp] = STATE(2007), + [sym_getline_input] = STATE(2007), + [sym_getline_file] = STATE(2007), + [sym__exp] = STATE(2007), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2007), + [sym_assignment_exp] = STATE(2007), + [sym_piped_io_exp] = STATE(2007), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2007), + [sym_regex_constant] = STATE(2007), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1600), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2007), + [sym_identifier] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [806] = { + [sym__getline_exp] = STATE(1864), + [sym_getline_input] = STATE(1864), + [sym_getline_file] = STATE(1864), + [sym__exp] = STATE(1864), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1864), + [sym_assignment_exp] = STATE(1864), + [sym_piped_io_exp] = STATE(1864), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1864), + [sym_regex_constant] = STATE(1864), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1864), + [aux_sym_exp_list_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [807] = { + [sym_identifier] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1345), + [anon_sym_CR_LF] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [sym_break_statement] = ACTIONS(1345), + [sym_continue_statement] = ACTIONS(1345), + [anon_sym_delete] = ACTIONS(1345), + [anon_sym_exit] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_getline] = ACTIONS(1345), + [sym_next_statement] = ACTIONS(1345), + [sym_nextfile_statement] = ACTIONS(1345), + [anon_sym_print] = ACTIONS(1345), + [anon_sym_printf] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_PIPE_AMP] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(1345), + [aux_sym_number_token1] = ACTIONS(1345), + [aux_sym_number_token2] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_asort] = ACTIONS(1345), + [anon_sym_asorti] = ACTIONS(1345), + [anon_sym_bindtextdomain] = ACTIONS(1345), + [anon_sym_compl] = ACTIONS(1345), + [anon_sym_cos] = ACTIONS(1345), + [anon_sym_dcgettext] = ACTIONS(1345), + [anon_sym_dcngettext] = ACTIONS(1345), + [anon_sym_exp] = ACTIONS(1345), + [anon_sym_gensub] = ACTIONS(1345), + [anon_sym_gsub] = ACTIONS(1345), + [anon_sym_index] = ACTIONS(1345), + [anon_sym_int] = ACTIONS(1345), + [anon_sym_isarray] = ACTIONS(1345), + [anon_sym_length] = ACTIONS(1345), + [anon_sym_log] = ACTIONS(1345), + [anon_sym_lshift] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_mktime] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_patsplit] = ACTIONS(1345), + [anon_sym_rand] = ACTIONS(1345), + [anon_sym_rshift] = ACTIONS(1345), + [anon_sym_sin] = ACTIONS(1345), + [anon_sym_split] = ACTIONS(1345), + [anon_sym_sprintf] = ACTIONS(1345), + [anon_sym_sqrt] = ACTIONS(1345), + [anon_sym_srand] = ACTIONS(1345), + [anon_sym_strftime] = ACTIONS(1345), + [anon_sym_strtonum] = ACTIONS(1345), + [anon_sym_sub] = ACTIONS(1345), + [anon_sym_substr] = ACTIONS(1345), + [anon_sym_systime] = ACTIONS(1345), + [anon_sym_tolower] = ACTIONS(1345), + [anon_sym_toupper] = ACTIONS(1345), + [anon_sym_typeof] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1345), + }, + [808] = { + [sym__getline_exp] = STATE(1958), + [sym_getline_input] = STATE(1958), + [sym_getline_file] = STATE(1958), + [sym__exp] = STATE(1958), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1958), + [sym_assignment_exp] = STATE(1958), + [sym_piped_io_exp] = STATE(1958), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1958), + [sym_regex_constant] = STATE(1958), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1958), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1725), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [809] = { + [sym__getline_exp] = STATE(2005), + [sym_getline_input] = STATE(2005), + [sym_getline_file] = STATE(2005), + [sym__exp] = STATE(2005), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2005), + [sym_assignment_exp] = STATE(2005), + [sym_piped_io_exp] = STATE(2005), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2005), + [sym_regex_constant] = STATE(2005), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2005), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [810] = { + [sym__getline_exp] = STATE(1998), + [sym_getline_input] = STATE(1998), + [sym_getline_file] = STATE(1998), + [sym__exp] = STATE(1998), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1998), + [sym_assignment_exp] = STATE(1998), + [sym_piped_io_exp] = STATE(1998), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1998), + [sym_regex_constant] = STATE(1998), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1998), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [811] = { + [sym__getline_exp] = STATE(1989), + [sym_getline_input] = STATE(1989), + [sym_getline_file] = STATE(1989), + [sym__exp] = STATE(1989), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1989), + [sym_assignment_exp] = STATE(1989), + [sym_piped_io_exp] = STATE(1989), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1989), + [sym_regex_constant] = STATE(1989), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1606), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1989), + [sym_identifier] = ACTIONS(1731), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [812] = { + [sym__getline_exp] = STATE(2024), + [sym_getline_input] = STATE(2024), + [sym_getline_file] = STATE(2024), + [sym__exp] = STATE(2024), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2024), + [sym_assignment_exp] = STATE(2024), + [sym_piped_io_exp] = STATE(2024), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2024), + [sym_regex_constant] = STATE(2024), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2024), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [813] = { + [sym__getline_exp] = STATE(2031), + [sym_getline_input] = STATE(2031), + [sym_getline_file] = STATE(2031), + [sym__exp] = STATE(2031), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2031), + [sym_assignment_exp] = STATE(2031), + [sym_piped_io_exp] = STATE(2031), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2031), + [sym_regex_constant] = STATE(2031), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2031), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [814] = { + [sym__getline_exp] = STATE(2032), + [sym_getline_input] = STATE(2032), + [sym_getline_file] = STATE(2032), + [sym__exp] = STATE(2032), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2032), + [sym_assignment_exp] = STATE(2032), + [sym_piped_io_exp] = STATE(2032), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2032), + [sym_regex_constant] = STATE(2032), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2032), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [815] = { + [sym__getline_exp] = STATE(2011), + [sym_getline_input] = STATE(2011), + [sym_getline_file] = STATE(2011), + [sym__exp] = STATE(2011), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2011), + [sym_assignment_exp] = STATE(2011), + [sym_piped_io_exp] = STATE(2011), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2011), + [sym_regex_constant] = STATE(2011), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2011), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [816] = { + [sym__getline_exp] = STATE(1996), + [sym_getline_input] = STATE(1996), + [sym_getline_file] = STATE(1996), + [sym__exp] = STATE(1996), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1996), + [sym_assignment_exp] = STATE(1996), + [sym_piped_io_exp] = STATE(1996), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1996), + [sym_regex_constant] = STATE(1996), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1996), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1743), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [817] = { + [sym__getline_exp] = STATE(1952), + [sym_getline_input] = STATE(1952), + [sym_getline_file] = STATE(1952), + [sym__exp] = STATE(1952), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1952), + [sym_assignment_exp] = STATE(1952), + [sym_piped_io_exp] = STATE(1952), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1952), + [sym_regex_constant] = STATE(1952), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1599), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1952), + [sym_identifier] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [818] = { + [sym__getline_exp] = STATE(1945), + [sym_getline_input] = STATE(1945), + [sym_getline_file] = STATE(1945), + [sym__exp] = STATE(1945), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1945), + [sym_assignment_exp] = STATE(1945), + [sym_piped_io_exp] = STATE(1945), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1945), + [sym_regex_constant] = STATE(1945), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1945), + [aux_sym_exp_list_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_getline] = ACTIONS(1755), + [anon_sym_SLASH] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1773), + [aux_sym_number_token1] = ACTIONS(1776), + [aux_sym_number_token2] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1782), + [anon_sym_and] = ACTIONS(1785), + [anon_sym_asort] = ACTIONS(1785), + [anon_sym_asorti] = ACTIONS(1785), + [anon_sym_bindtextdomain] = ACTIONS(1785), + [anon_sym_compl] = ACTIONS(1785), + [anon_sym_cos] = ACTIONS(1785), + [anon_sym_dcgettext] = ACTIONS(1785), + [anon_sym_dcngettext] = ACTIONS(1785), + [anon_sym_exp] = ACTIONS(1785), + [anon_sym_gensub] = ACTIONS(1785), + [anon_sym_gsub] = ACTIONS(1785), + [anon_sym_index] = ACTIONS(1785), + [anon_sym_int] = ACTIONS(1785), + [anon_sym_isarray] = ACTIONS(1785), + [anon_sym_length] = ACTIONS(1785), + [anon_sym_log] = ACTIONS(1785), + [anon_sym_lshift] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_mktime] = ACTIONS(1785), + [anon_sym_or] = ACTIONS(1785), + [anon_sym_patsplit] = ACTIONS(1785), + [anon_sym_rand] = ACTIONS(1785), + [anon_sym_rshift] = ACTIONS(1785), + [anon_sym_sin] = ACTIONS(1785), + [anon_sym_split] = ACTIONS(1785), + [anon_sym_sprintf] = ACTIONS(1785), + [anon_sym_sqrt] = ACTIONS(1785), + [anon_sym_srand] = ACTIONS(1785), + [anon_sym_strftime] = ACTIONS(1785), + [anon_sym_strtonum] = ACTIONS(1785), + [anon_sym_sub] = ACTIONS(1785), + [anon_sym_substr] = ACTIONS(1785), + [anon_sym_systime] = ACTIONS(1785), + [anon_sym_tolower] = ACTIONS(1785), + [anon_sym_toupper] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1785), + [anon_sym_xor] = ACTIONS(1785), + }, + [819] = { + [sym__getline_exp] = STATE(2009), + [sym_getline_input] = STATE(2009), + [sym_getline_file] = STATE(2009), + [sym__exp] = STATE(2009), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2009), + [sym_assignment_exp] = STATE(2009), + [sym_piped_io_exp] = STATE(2009), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2009), + [sym_regex_constant] = STATE(2009), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2009), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [820] = { + [sym__getline_exp] = STATE(1805), + [sym_getline_input] = STATE(1805), + [sym_getline_file] = STATE(1805), + [sym__exp] = STATE(1805), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1805), + [sym_assignment_exp] = STATE(1805), + [sym_piped_io_exp] = STATE(1805), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1805), + [sym_regex_constant] = STATE(1805), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1805), + [aux_sym_exp_list_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [821] = { + [sym__getline_exp] = STATE(1499), + [sym_getline_input] = STATE(1499), + [sym_getline_file] = STATE(1499), + [sym__exp] = STATE(1499), + [sym_ternary_exp] = STATE(1499), + [sym_binary_exp] = STATE(1499), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1499), + [sym_update_exp] = STATE(1499), + [sym_assignment_exp] = STATE(1499), + [sym_piped_io_exp] = STATE(1499), + [sym_string_concat] = STATE(1499), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1499), + [sym_regex_constant] = STATE(1499), + [sym_grouping] = STATE(1499), + [sym__primitive] = STATE(1499), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1499), + [sym_string] = STATE(1499), + [sym_func_call] = STATE(1499), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1499), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [822] = { + [sym__getline_exp] = STATE(1637), + [sym_getline_input] = STATE(1637), + [sym_getline_file] = STATE(1637), + [sym__exp] = STATE(1637), + [sym_ternary_exp] = STATE(1637), + [sym_binary_exp] = STATE(1637), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1637), + [sym_update_exp] = STATE(1637), + [sym_assignment_exp] = STATE(1637), + [sym_piped_io_exp] = STATE(1637), + [sym_string_concat] = STATE(1637), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1637), + [sym_regex_constant] = STATE(1637), + [sym_grouping] = STATE(1637), + [sym__primitive] = STATE(1637), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1637), + [sym_string] = STATE(1637), + [sym_func_call] = STATE(1637), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1637), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [823] = { + [sym__getline_exp] = STATE(577), + [sym_getline_input] = STATE(577), + [sym_getline_file] = STATE(577), + [sym__exp] = STATE(577), + [sym_ternary_exp] = STATE(577), + [sym_binary_exp] = STATE(577), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(577), + [sym_update_exp] = STATE(577), + [sym_assignment_exp] = STATE(577), + [sym_piped_io_exp] = STATE(577), + [sym_string_concat] = STATE(577), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(577), + [sym_regex_constant] = STATE(577), + [sym_grouping] = STATE(577), + [sym__primitive] = STATE(577), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(577), + [sym_string] = STATE(577), + [sym_func_call] = STATE(577), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(577), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [824] = { + [sym__getline_exp] = STATE(1800), + [sym_getline_input] = STATE(1800), + [sym_getline_file] = STATE(1800), + [sym__exp] = STATE(1800), + [sym_ternary_exp] = STATE(1800), + [sym_binary_exp] = STATE(1800), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1800), + [sym_update_exp] = STATE(1800), + [sym_assignment_exp] = STATE(1800), + [sym_piped_io_exp] = STATE(1800), + [sym_string_concat] = STATE(1800), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1800), + [sym_regex_constant] = STATE(1800), + [sym_grouping] = STATE(1800), + [sym__primitive] = STATE(1800), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1800), + [sym_string] = STATE(1800), + [sym_func_call] = STATE(1800), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1800), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [825] = { + [sym__getline_exp] = STATE(1700), + [sym_getline_input] = STATE(1700), + [sym_getline_file] = STATE(1700), + [sym__exp] = STATE(1700), + [sym_ternary_exp] = STATE(1700), + [sym_binary_exp] = STATE(1700), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1700), + [sym_update_exp] = STATE(1700), + [sym_assignment_exp] = STATE(1700), + [sym_piped_io_exp] = STATE(1700), + [sym_string_concat] = STATE(1700), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1700), + [sym_regex_constant] = STATE(1700), + [sym_grouping] = STATE(1700), + [sym__primitive] = STATE(1700), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1700), + [sym_string] = STATE(1700), + [sym_func_call] = STATE(1700), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1700), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [826] = { + [sym__getline_exp] = STATE(436), + [sym_getline_input] = STATE(436), + [sym_getline_file] = STATE(436), + [sym__exp] = STATE(436), + [sym_ternary_exp] = STATE(436), + [sym_binary_exp] = STATE(436), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(436), + [sym_update_exp] = STATE(436), + [sym_assignment_exp] = STATE(436), + [sym_piped_io_exp] = STATE(436), + [sym_string_concat] = STATE(436), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(436), + [sym_regex_constant] = STATE(436), + [sym_grouping] = STATE(436), + [sym__primitive] = STATE(436), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(436), + [sym_string] = STATE(436), + [sym_func_call] = STATE(436), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(436), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [827] = { + [sym__getline_exp] = STATE(437), + [sym_getline_input] = STATE(437), + [sym_getline_file] = STATE(437), + [sym__exp] = STATE(437), + [sym_ternary_exp] = STATE(437), + [sym_binary_exp] = STATE(437), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(437), + [sym_update_exp] = STATE(437), + [sym_assignment_exp] = STATE(437), + [sym_piped_io_exp] = STATE(437), + [sym_string_concat] = STATE(437), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(437), + [sym_regex_constant] = STATE(437), + [sym_grouping] = STATE(437), + [sym__primitive] = STATE(437), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(437), + [sym_string] = STATE(437), + [sym_func_call] = STATE(437), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(437), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [828] = { + [sym__getline_exp] = STATE(438), + [sym_getline_input] = STATE(438), + [sym_getline_file] = STATE(438), + [sym__exp] = STATE(438), + [sym_ternary_exp] = STATE(438), + [sym_binary_exp] = STATE(438), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(438), + [sym_update_exp] = STATE(438), + [sym_assignment_exp] = STATE(438), + [sym_piped_io_exp] = STATE(438), + [sym_string_concat] = STATE(438), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(438), + [sym_regex_constant] = STATE(438), + [sym_grouping] = STATE(438), + [sym__primitive] = STATE(438), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(438), + [sym_string] = STATE(438), + [sym_func_call] = STATE(438), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(438), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [829] = { + [sym__getline_exp] = STATE(1946), + [sym_getline_input] = STATE(1946), + [sym_getline_file] = STATE(1946), + [sym__exp] = STATE(1946), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1946), + [sym_assignment_exp] = STATE(1946), + [sym_piped_io_exp] = STATE(1946), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1946), + [sym_regex_constant] = STATE(1946), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1946), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [830] = { + [sym__getline_exp] = STATE(593), + [sym_getline_input] = STATE(593), + [sym_getline_file] = STATE(593), + [sym__exp] = STATE(593), + [sym_ternary_exp] = STATE(593), + [sym_binary_exp] = STATE(593), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(593), + [sym_update_exp] = STATE(593), + [sym_assignment_exp] = STATE(593), + [sym_piped_io_exp] = STATE(593), + [sym_string_concat] = STATE(593), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(593), + [sym_regex_constant] = STATE(593), + [sym_grouping] = STATE(593), + [sym__primitive] = STATE(593), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(593), + [sym_string] = STATE(593), + [sym_func_call] = STATE(593), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(593), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [831] = { + [sym__getline_exp] = STATE(1717), + [sym_getline_input] = STATE(1717), + [sym_getline_file] = STATE(1717), + [sym__exp] = STATE(1717), + [sym_ternary_exp] = STATE(1717), + [sym_binary_exp] = STATE(1717), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1717), + [sym_update_exp] = STATE(1717), + [sym_assignment_exp] = STATE(1717), + [sym_piped_io_exp] = STATE(1717), + [sym_string_concat] = STATE(1717), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1717), + [sym_regex_constant] = STATE(1717), + [sym_grouping] = STATE(1717), + [sym__primitive] = STATE(1717), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1717), + [sym_string] = STATE(1717), + [sym_func_call] = STATE(1717), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1717), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [832] = { + [sym__getline_exp] = STATE(245), + [sym_getline_input] = STATE(245), + [sym_getline_file] = STATE(245), + [sym__exp] = STATE(245), + [sym_ternary_exp] = STATE(245), + [sym_binary_exp] = STATE(245), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(245), + [sym_update_exp] = STATE(245), + [sym_assignment_exp] = STATE(245), + [sym_piped_io_exp] = STATE(245), + [sym_string_concat] = STATE(245), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(245), + [sym_regex_constant] = STATE(245), + [sym_grouping] = STATE(245), + [sym__primitive] = STATE(245), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(245), + [sym_string] = STATE(245), + [sym_func_call] = STATE(245), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(245), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [833] = { + [sym__getline_exp] = STATE(293), + [sym_getline_input] = STATE(293), + [sym_getline_file] = STATE(293), + [sym__exp] = STATE(293), + [sym_ternary_exp] = STATE(293), + [sym_binary_exp] = STATE(293), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(293), + [sym_update_exp] = STATE(293), + [sym_assignment_exp] = STATE(293), + [sym_piped_io_exp] = STATE(293), + [sym_string_concat] = STATE(293), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(293), + [sym_regex_constant] = STATE(293), + [sym_grouping] = STATE(293), + [sym__primitive] = STATE(293), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(293), + [sym_string] = STATE(293), + [sym_func_call] = STATE(293), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(293), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [834] = { + [sym__getline_exp] = STATE(1563), + [sym_getline_input] = STATE(1563), + [sym_getline_file] = STATE(1563), + [sym__exp] = STATE(1563), + [sym_ternary_exp] = STATE(1563), + [sym_binary_exp] = STATE(1563), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1563), + [sym_update_exp] = STATE(1563), + [sym_assignment_exp] = STATE(1563), + [sym_piped_io_exp] = STATE(1563), + [sym_string_concat] = STATE(1563), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1563), + [sym_regex_constant] = STATE(1563), + [sym_grouping] = STATE(1563), + [sym__primitive] = STATE(1563), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1563), + [sym_string] = STATE(1563), + [sym_func_call] = STATE(1563), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1563), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [835] = { + [sym__getline_exp] = STATE(2047), + [sym_getline_input] = STATE(2047), + [sym_getline_file] = STATE(2047), + [sym__exp] = STATE(2047), + [sym_ternary_exp] = STATE(1678), + [sym_binary_exp] = STATE(1678), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1678), + [sym_update_exp] = STATE(2047), + [sym_assignment_exp] = STATE(2047), + [sym_piped_io_exp] = STATE(2047), + [sym_string_concat] = STATE(1678), + [sym_field_ref] = STATE(1416), + [sym_array_ref] = STATE(1382), + [sym_regex] = STATE(2047), + [sym_regex_constant] = STATE(2047), + [sym_grouping] = STATE(1678), + [sym__primitive] = STATE(1678), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1342), + [sym_number] = STATE(1678), + [sym_string] = STATE(1678), + [sym_func_call] = STATE(1678), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(2047), + [sym_identifier] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [836] = { + [sym__getline_exp] = STATE(571), + [sym_getline_input] = STATE(571), + [sym_getline_file] = STATE(571), + [sym__exp] = STATE(571), + [sym_ternary_exp] = STATE(571), + [sym_binary_exp] = STATE(571), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(571), + [sym_update_exp] = STATE(571), + [sym_assignment_exp] = STATE(571), + [sym_piped_io_exp] = STATE(571), + [sym_string_concat] = STATE(571), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(571), + [sym_regex_constant] = STATE(571), + [sym_grouping] = STATE(571), + [sym__primitive] = STATE(571), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(571), + [sym_string] = STATE(571), + [sym_func_call] = STATE(571), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(571), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [837] = { + [sym__getline_exp] = STATE(426), + [sym_getline_input] = STATE(426), + [sym_getline_file] = STATE(426), + [sym__exp] = STATE(426), + [sym_ternary_exp] = STATE(426), + [sym_binary_exp] = STATE(426), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(426), + [sym_update_exp] = STATE(426), + [sym_assignment_exp] = STATE(426), + [sym_piped_io_exp] = STATE(426), + [sym_string_concat] = STATE(426), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(426), + [sym_regex_constant] = STATE(426), + [sym_grouping] = STATE(426), + [sym__primitive] = STATE(426), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(426), + [sym_string] = STATE(426), + [sym_func_call] = STATE(426), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(426), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [838] = { + [sym__getline_exp] = STATE(616), + [sym_getline_input] = STATE(616), + [sym_getline_file] = STATE(616), + [sym__exp] = STATE(616), + [sym_ternary_exp] = STATE(580), + [sym_binary_exp] = STATE(580), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(580), + [sym_update_exp] = STATE(616), + [sym_assignment_exp] = STATE(616), + [sym_piped_io_exp] = STATE(616), + [sym_string_concat] = STATE(580), + [sym_field_ref] = STATE(498), + [sym_array_ref] = STATE(490), + [sym_regex] = STATE(616), + [sym_regex_constant] = STATE(616), + [sym_grouping] = STATE(580), + [sym__primitive] = STATE(580), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(403), + [sym_number] = STATE(580), + [sym_string] = STATE(580), + [sym_func_call] = STATE(580), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(616), + [sym_identifier] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(23), + [anon_sym_DASH_DASH] = ACTIONS(23), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1792), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [839] = { + [sym__getline_exp] = STATE(1847), + [sym_getline_input] = STATE(1847), + [sym_getline_file] = STATE(1847), + [sym__exp] = STATE(1847), + [sym_ternary_exp] = STATE(1847), + [sym_binary_exp] = STATE(1847), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1847), + [sym_update_exp] = STATE(1847), + [sym_assignment_exp] = STATE(1847), + [sym_piped_io_exp] = STATE(1847), + [sym_string_concat] = STATE(1847), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1847), + [sym_regex_constant] = STATE(1847), + [sym_grouping] = STATE(1847), + [sym__primitive] = STATE(1847), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1847), + [sym_string] = STATE(1847), + [sym_func_call] = STATE(1847), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1847), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [840] = { + [sym__getline_exp] = STATE(1789), + [sym_getline_input] = STATE(1789), + [sym_getline_file] = STATE(1789), + [sym__exp] = STATE(1789), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1789), + [sym_assignment_exp] = STATE(1789), + [sym_piped_io_exp] = STATE(1789), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1789), + [sym_regex_constant] = STATE(1789), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1789), + [sym_identifier] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [841] = { + [sym__getline_exp] = STATE(2049), + [sym_getline_input] = STATE(2049), + [sym_getline_file] = STATE(2049), + [sym__exp] = STATE(2049), + [sym_ternary_exp] = STATE(1678), + [sym_binary_exp] = STATE(1678), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1678), + [sym_update_exp] = STATE(2049), + [sym_assignment_exp] = STATE(2049), + [sym_piped_io_exp] = STATE(2049), + [sym_string_concat] = STATE(1678), + [sym_field_ref] = STATE(1416), + [sym_array_ref] = STATE(1382), + [sym_regex] = STATE(2049), + [sym_regex_constant] = STATE(2049), + [sym_grouping] = STATE(1678), + [sym__primitive] = STATE(1678), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1342), + [sym_number] = STATE(1678), + [sym_string] = STATE(1678), + [sym_func_call] = STATE(1678), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(2049), + [sym_identifier] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [842] = { + [sym__getline_exp] = STATE(1675), + [sym_getline_input] = STATE(1675), + [sym_getline_file] = STATE(1675), + [sym__exp] = STATE(1675), + [sym_ternary_exp] = STATE(1675), + [sym_binary_exp] = STATE(1675), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1675), + [sym_update_exp] = STATE(1675), + [sym_assignment_exp] = STATE(1675), + [sym_piped_io_exp] = STATE(1675), + [sym_string_concat] = STATE(1675), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1675), + [sym_regex_constant] = STATE(1675), + [sym_grouping] = STATE(1675), + [sym__primitive] = STATE(1675), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1675), + [sym_string] = STATE(1675), + [sym_func_call] = STATE(1675), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1675), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [843] = { + [sym__getline_exp] = STATE(1648), + [sym_getline_input] = STATE(1648), + [sym_getline_file] = STATE(1648), + [sym__exp] = STATE(1648), + [sym_ternary_exp] = STATE(1648), + [sym_binary_exp] = STATE(1648), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1648), + [sym_update_exp] = STATE(1648), + [sym_assignment_exp] = STATE(1648), + [sym_piped_io_exp] = STATE(1648), + [sym_string_concat] = STATE(1648), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1648), + [sym_regex_constant] = STATE(1648), + [sym_grouping] = STATE(1648), + [sym__primitive] = STATE(1648), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1648), + [sym_string] = STATE(1648), + [sym_func_call] = STATE(1648), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1648), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [844] = { + [sym__getline_exp] = STATE(1768), + [sym_getline_input] = STATE(1768), + [sym_getline_file] = STATE(1768), + [sym__exp] = STATE(1768), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1768), + [sym_assignment_exp] = STATE(1768), + [sym_piped_io_exp] = STATE(1768), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1768), + [sym_regex_constant] = STATE(1768), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1768), + [sym_identifier] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [845] = { + [sym__getline_exp] = STATE(1868), + [sym_getline_input] = STATE(1868), + [sym_getline_file] = STATE(1868), + [sym__exp] = STATE(1868), + [sym_ternary_exp] = STATE(1868), + [sym_binary_exp] = STATE(1868), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1868), + [sym_update_exp] = STATE(1868), + [sym_assignment_exp] = STATE(1868), + [sym_piped_io_exp] = STATE(1868), + [sym_string_concat] = STATE(1868), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1868), + [sym_regex_constant] = STATE(1868), + [sym_grouping] = STATE(1868), + [sym__primitive] = STATE(1868), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1868), + [sym_string] = STATE(1868), + [sym_func_call] = STATE(1868), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1868), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [846] = { + [sym__getline_exp] = STATE(1428), + [sym_getline_input] = STATE(1428), + [sym_getline_file] = STATE(1428), + [sym__exp] = STATE(1428), + [sym_ternary_exp] = STATE(1428), + [sym_binary_exp] = STATE(1428), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1428), + [sym_update_exp] = STATE(1428), + [sym_assignment_exp] = STATE(1428), + [sym_piped_io_exp] = STATE(1428), + [sym_string_concat] = STATE(1428), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1428), + [sym_regex_constant] = STATE(1428), + [sym_grouping] = STATE(1428), + [sym__primitive] = STATE(1428), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1428), + [sym_string] = STATE(1428), + [sym_func_call] = STATE(1428), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1428), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [847] = { + [sym__getline_exp] = STATE(1829), + [sym_getline_input] = STATE(1829), + [sym_getline_file] = STATE(1829), + [sym__exp] = STATE(1829), + [sym_ternary_exp] = STATE(1829), + [sym_binary_exp] = STATE(1829), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1829), + [sym_update_exp] = STATE(1829), + [sym_assignment_exp] = STATE(1829), + [sym_piped_io_exp] = STATE(1829), + [sym_string_concat] = STATE(1829), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1829), + [sym_regex_constant] = STATE(1829), + [sym_grouping] = STATE(1829), + [sym__primitive] = STATE(1829), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1829), + [sym_string] = STATE(1829), + [sym_func_call] = STATE(1829), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1829), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [848] = { + [sym__getline_exp] = STATE(298), + [sym_getline_input] = STATE(298), + [sym_getline_file] = STATE(298), + [sym__exp] = STATE(298), + [sym_ternary_exp] = STATE(298), + [sym_binary_exp] = STATE(298), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(298), + [sym_update_exp] = STATE(298), + [sym_assignment_exp] = STATE(298), + [sym_piped_io_exp] = STATE(298), + [sym_string_concat] = STATE(298), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(298), + [sym_regex_constant] = STATE(298), + [sym_grouping] = STATE(298), + [sym__primitive] = STATE(298), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(298), + [sym_string] = STATE(298), + [sym_func_call] = STATE(298), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(298), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [849] = { + [sym__getline_exp] = STATE(299), + [sym_getline_input] = STATE(299), + [sym_getline_file] = STATE(299), + [sym__exp] = STATE(299), + [sym_ternary_exp] = STATE(299), + [sym_binary_exp] = STATE(299), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(299), + [sym_update_exp] = STATE(299), + [sym_assignment_exp] = STATE(299), + [sym_piped_io_exp] = STATE(299), + [sym_string_concat] = STATE(299), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(299), + [sym_regex_constant] = STATE(299), + [sym_grouping] = STATE(299), + [sym__primitive] = STATE(299), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(299), + [sym_string] = STATE(299), + [sym_func_call] = STATE(299), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(299), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [850] = { + [sym__getline_exp] = STATE(300), + [sym_getline_input] = STATE(300), + [sym_getline_file] = STATE(300), + [sym__exp] = STATE(300), + [sym_ternary_exp] = STATE(300), + [sym_binary_exp] = STATE(300), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(300), + [sym_update_exp] = STATE(300), + [sym_assignment_exp] = STATE(300), + [sym_piped_io_exp] = STATE(300), + [sym_string_concat] = STATE(300), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(300), + [sym_regex_constant] = STATE(300), + [sym_grouping] = STATE(300), + [sym__primitive] = STATE(300), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(300), + [sym_string] = STATE(300), + [sym_func_call] = STATE(300), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(300), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [851] = { + [sym__getline_exp] = STATE(297), + [sym_getline_input] = STATE(297), + [sym_getline_file] = STATE(297), + [sym__exp] = STATE(297), + [sym_ternary_exp] = STATE(297), + [sym_binary_exp] = STATE(297), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(297), + [sym_update_exp] = STATE(297), + [sym_assignment_exp] = STATE(297), + [sym_piped_io_exp] = STATE(297), + [sym_string_concat] = STATE(297), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(297), + [sym_regex_constant] = STATE(297), + [sym_grouping] = STATE(297), + [sym__primitive] = STATE(297), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(297), + [sym_string] = STATE(297), + [sym_func_call] = STATE(297), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(297), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [852] = { + [sym__getline_exp] = STATE(290), + [sym_getline_input] = STATE(290), + [sym_getline_file] = STATE(290), + [sym__exp] = STATE(290), + [sym_ternary_exp] = STATE(290), + [sym_binary_exp] = STATE(290), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(290), + [sym_update_exp] = STATE(290), + [sym_assignment_exp] = STATE(290), + [sym_piped_io_exp] = STATE(290), + [sym_string_concat] = STATE(290), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(290), + [sym_regex_constant] = STATE(290), + [sym_grouping] = STATE(290), + [sym__primitive] = STATE(290), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(290), + [sym_string] = STATE(290), + [sym_func_call] = STATE(290), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(290), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [853] = { + [sym__getline_exp] = STATE(289), + [sym_getline_input] = STATE(289), + [sym_getline_file] = STATE(289), + [sym__exp] = STATE(289), + [sym_ternary_exp] = STATE(289), + [sym_binary_exp] = STATE(289), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(289), + [sym_update_exp] = STATE(289), + [sym_assignment_exp] = STATE(289), + [sym_piped_io_exp] = STATE(289), + [sym_string_concat] = STATE(289), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(289), + [sym_regex_constant] = STATE(289), + [sym_grouping] = STATE(289), + [sym__primitive] = STATE(289), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(289), + [sym_string] = STATE(289), + [sym_func_call] = STATE(289), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(289), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [854] = { + [sym__getline_exp] = STATE(288), + [sym_getline_input] = STATE(288), + [sym_getline_file] = STATE(288), + [sym__exp] = STATE(288), + [sym_ternary_exp] = STATE(288), + [sym_binary_exp] = STATE(288), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(288), + [sym_update_exp] = STATE(288), + [sym_assignment_exp] = STATE(288), + [sym_piped_io_exp] = STATE(288), + [sym_string_concat] = STATE(288), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(288), + [sym_regex_constant] = STATE(288), + [sym_grouping] = STATE(288), + [sym__primitive] = STATE(288), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(288), + [sym_string] = STATE(288), + [sym_func_call] = STATE(288), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(288), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [855] = { + [sym__getline_exp] = STATE(262), + [sym_getline_input] = STATE(262), + [sym_getline_file] = STATE(262), + [sym__exp] = STATE(262), + [sym_ternary_exp] = STATE(262), + [sym_binary_exp] = STATE(262), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(262), + [sym_update_exp] = STATE(262), + [sym_assignment_exp] = STATE(262), + [sym_piped_io_exp] = STATE(262), + [sym_string_concat] = STATE(262), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(262), + [sym_regex_constant] = STATE(262), + [sym_grouping] = STATE(262), + [sym__primitive] = STATE(262), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(262), + [sym_string] = STATE(262), + [sym_func_call] = STATE(262), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(262), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [856] = { + [sym__getline_exp] = STATE(1827), + [sym_getline_input] = STATE(1827), + [sym_getline_file] = STATE(1827), + [sym__exp] = STATE(1827), + [sym_ternary_exp] = STATE(1827), + [sym_binary_exp] = STATE(1827), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1827), + [sym_update_exp] = STATE(1827), + [sym_assignment_exp] = STATE(1827), + [sym_piped_io_exp] = STATE(1827), + [sym_string_concat] = STATE(1827), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1827), + [sym_regex_constant] = STATE(1827), + [sym_grouping] = STATE(1827), + [sym__primitive] = STATE(1827), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1827), + [sym_string] = STATE(1827), + [sym_func_call] = STATE(1827), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1827), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [857] = { + [sym__getline_exp] = STATE(1859), + [sym_getline_input] = STATE(1859), + [sym_getline_file] = STATE(1859), + [sym__exp] = STATE(1859), + [sym_ternary_exp] = STATE(1859), + [sym_binary_exp] = STATE(1859), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1859), + [sym_update_exp] = STATE(1859), + [sym_assignment_exp] = STATE(1859), + [sym_piped_io_exp] = STATE(1859), + [sym_string_concat] = STATE(1859), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1859), + [sym_regex_constant] = STATE(1859), + [sym_grouping] = STATE(1859), + [sym__primitive] = STATE(1859), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1859), + [sym_string] = STATE(1859), + [sym_func_call] = STATE(1859), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1859), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [858] = { + [sym__getline_exp] = STATE(1572), + [sym_getline_input] = STATE(1572), + [sym_getline_file] = STATE(1572), + [sym__exp] = STATE(1572), + [sym_ternary_exp] = STATE(1572), + [sym_binary_exp] = STATE(1572), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1572), + [sym_update_exp] = STATE(1572), + [sym_assignment_exp] = STATE(1572), + [sym_piped_io_exp] = STATE(1572), + [sym_string_concat] = STATE(1572), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1572), + [sym_regex_constant] = STATE(1572), + [sym_grouping] = STATE(1572), + [sym__primitive] = STATE(1572), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1572), + [sym_string] = STATE(1572), + [sym_func_call] = STATE(1572), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1572), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [859] = { + [sym__getline_exp] = STATE(1739), + [sym_getline_input] = STATE(1739), + [sym_getline_file] = STATE(1739), + [sym__exp] = STATE(1739), + [sym_ternary_exp] = STATE(1739), + [sym_binary_exp] = STATE(1739), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1739), + [sym_update_exp] = STATE(1739), + [sym_assignment_exp] = STATE(1739), + [sym_piped_io_exp] = STATE(1739), + [sym_string_concat] = STATE(1739), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1739), + [sym_regex_constant] = STATE(1739), + [sym_grouping] = STATE(1739), + [sym__primitive] = STATE(1739), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1739), + [sym_string] = STATE(1739), + [sym_func_call] = STATE(1739), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1739), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [860] = { + [sym__getline_exp] = STATE(423), + [sym_getline_input] = STATE(423), + [sym_getline_file] = STATE(423), + [sym__exp] = STATE(423), + [sym_ternary_exp] = STATE(423), + [sym_binary_exp] = STATE(423), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(423), + [sym_update_exp] = STATE(423), + [sym_assignment_exp] = STATE(423), + [sym_piped_io_exp] = STATE(423), + [sym_string_concat] = STATE(423), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(423), + [sym_regex_constant] = STATE(423), + [sym_grouping] = STATE(423), + [sym__primitive] = STATE(423), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(423), + [sym_string] = STATE(423), + [sym_func_call] = STATE(423), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(423), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [861] = { + [sym__getline_exp] = STATE(1900), + [sym_getline_input] = STATE(1900), + [sym_getline_file] = STATE(1900), + [sym__exp] = STATE(1900), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1900), + [sym_assignment_exp] = STATE(1900), + [sym_piped_io_exp] = STATE(1900), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1900), + [sym_regex_constant] = STATE(1900), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1900), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [862] = { + [sym__getline_exp] = STATE(1460), + [sym_getline_input] = STATE(1460), + [sym_getline_file] = STATE(1460), + [sym__exp] = STATE(1460), + [sym_ternary_exp] = STATE(1460), + [sym_binary_exp] = STATE(1460), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1460), + [sym_update_exp] = STATE(1460), + [sym_assignment_exp] = STATE(1460), + [sym_piped_io_exp] = STATE(1460), + [sym_string_concat] = STATE(1460), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1460), + [sym_regex_constant] = STATE(1460), + [sym_grouping] = STATE(1460), + [sym__primitive] = STATE(1460), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1460), + [sym_string] = STATE(1460), + [sym_func_call] = STATE(1460), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1460), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [863] = { + [sym__getline_exp] = STATE(370), + [sym_getline_input] = STATE(370), + [sym_getline_file] = STATE(370), + [sym__exp] = STATE(370), + [sym_ternary_exp] = STATE(370), + [sym_binary_exp] = STATE(370), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(370), + [sym_update_exp] = STATE(370), + [sym_assignment_exp] = STATE(370), + [sym_piped_io_exp] = STATE(370), + [sym_string_concat] = STATE(370), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(370), + [sym_regex_constant] = STATE(370), + [sym_grouping] = STATE(370), + [sym__primitive] = STATE(370), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(370), + [sym_string] = STATE(370), + [sym_func_call] = STATE(370), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(370), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [864] = { + [sym__getline_exp] = STATE(1848), + [sym_getline_input] = STATE(1848), + [sym_getline_file] = STATE(1848), + [sym__exp] = STATE(1848), + [sym_ternary_exp] = STATE(1848), + [sym_binary_exp] = STATE(1848), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1848), + [sym_update_exp] = STATE(1848), + [sym_assignment_exp] = STATE(1848), + [sym_piped_io_exp] = STATE(1848), + [sym_string_concat] = STATE(1848), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1848), + [sym_regex_constant] = STATE(1848), + [sym_grouping] = STATE(1848), + [sym__primitive] = STATE(1848), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1848), + [sym_string] = STATE(1848), + [sym_func_call] = STATE(1848), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1848), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [865] = { + [sym__getline_exp] = STATE(1654), + [sym_getline_input] = STATE(1654), + [sym_getline_file] = STATE(1654), + [sym__exp] = STATE(1654), + [sym_ternary_exp] = STATE(1654), + [sym_binary_exp] = STATE(1654), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1654), + [sym_update_exp] = STATE(1654), + [sym_assignment_exp] = STATE(1654), + [sym_piped_io_exp] = STATE(1654), + [sym_string_concat] = STATE(1654), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1654), + [sym_regex_constant] = STATE(1654), + [sym_grouping] = STATE(1654), + [sym__primitive] = STATE(1654), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1654), + [sym_string] = STATE(1654), + [sym_func_call] = STATE(1654), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1654), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [866] = { + [sym__getline_exp] = STATE(382), + [sym_getline_input] = STATE(382), + [sym_getline_file] = STATE(382), + [sym__exp] = STATE(382), + [sym_ternary_exp] = STATE(382), + [sym_binary_exp] = STATE(382), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(382), + [sym_update_exp] = STATE(382), + [sym_assignment_exp] = STATE(382), + [sym_piped_io_exp] = STATE(382), + [sym_string_concat] = STATE(382), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(382), + [sym_regex_constant] = STATE(382), + [sym_grouping] = STATE(382), + [sym__primitive] = STATE(382), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(382), + [sym_string] = STATE(382), + [sym_func_call] = STATE(382), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(382), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [867] = { + [sym__getline_exp] = STATE(420), + [sym_getline_input] = STATE(420), + [sym_getline_file] = STATE(420), + [sym__exp] = STATE(420), + [sym_ternary_exp] = STATE(420), + [sym_binary_exp] = STATE(420), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(420), + [sym_update_exp] = STATE(420), + [sym_assignment_exp] = STATE(420), + [sym_piped_io_exp] = STATE(420), + [sym_string_concat] = STATE(420), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(420), + [sym_regex_constant] = STATE(420), + [sym_grouping] = STATE(420), + [sym__primitive] = STATE(420), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(420), + [sym_string] = STATE(420), + [sym_func_call] = STATE(420), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(420), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [868] = { + [sym__getline_exp] = STATE(1715), + [sym_getline_input] = STATE(1715), + [sym_getline_file] = STATE(1715), + [sym__exp] = STATE(1715), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1715), + [sym_assignment_exp] = STATE(1715), + [sym_piped_io_exp] = STATE(1715), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1715), + [sym_regex_constant] = STATE(1715), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1715), + [sym_identifier] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [869] = { + [sym__getline_exp] = STATE(1414), + [sym_getline_input] = STATE(1414), + [sym_getline_file] = STATE(1414), + [sym__exp] = STATE(1414), + [sym_ternary_exp] = STATE(1414), + [sym_binary_exp] = STATE(1414), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1414), + [sym_update_exp] = STATE(1414), + [sym_assignment_exp] = STATE(1414), + [sym_piped_io_exp] = STATE(1414), + [sym_string_concat] = STATE(1414), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1414), + [sym_regex_constant] = STATE(1414), + [sym_grouping] = STATE(1414), + [sym__primitive] = STATE(1414), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1414), + [sym_string] = STATE(1414), + [sym_func_call] = STATE(1414), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1414), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [870] = { + [sym__getline_exp] = STATE(1750), + [sym_getline_input] = STATE(1750), + [sym_getline_file] = STATE(1750), + [sym__exp] = STATE(1750), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1750), + [sym_assignment_exp] = STATE(1750), + [sym_piped_io_exp] = STATE(1750), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1750), + [sym_regex_constant] = STATE(1750), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1750), + [sym_identifier] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [871] = { + [sym__getline_exp] = STATE(1679), + [sym_getline_input] = STATE(1679), + [sym_getline_file] = STATE(1679), + [sym__exp] = STATE(1679), + [sym_ternary_exp] = STATE(1679), + [sym_binary_exp] = STATE(1679), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1679), + [sym_update_exp] = STATE(1679), + [sym_assignment_exp] = STATE(1679), + [sym_piped_io_exp] = STATE(1679), + [sym_string_concat] = STATE(1679), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1679), + [sym_regex_constant] = STATE(1679), + [sym_grouping] = STATE(1679), + [sym__primitive] = STATE(1679), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1679), + [sym_string] = STATE(1679), + [sym_func_call] = STATE(1679), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1679), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [872] = { + [sym__getline_exp] = STATE(1441), + [sym_getline_input] = STATE(1441), + [sym_getline_file] = STATE(1441), + [sym__exp] = STATE(1441), + [sym_ternary_exp] = STATE(1441), + [sym_binary_exp] = STATE(1441), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1441), + [sym_update_exp] = STATE(1441), + [sym_assignment_exp] = STATE(1441), + [sym_piped_io_exp] = STATE(1441), + [sym_string_concat] = STATE(1441), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1441), + [sym_regex_constant] = STATE(1441), + [sym_grouping] = STATE(1441), + [sym__primitive] = STATE(1441), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1441), + [sym_string] = STATE(1441), + [sym_func_call] = STATE(1441), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1441), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [873] = { + [sym__getline_exp] = STATE(1705), + [sym_getline_input] = STATE(1705), + [sym_getline_file] = STATE(1705), + [sym__exp] = STATE(1705), + [sym_ternary_exp] = STATE(1705), + [sym_binary_exp] = STATE(1705), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1705), + [sym_update_exp] = STATE(1705), + [sym_assignment_exp] = STATE(1705), + [sym_piped_io_exp] = STATE(1705), + [sym_string_concat] = STATE(1705), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1705), + [sym_regex_constant] = STATE(1705), + [sym_grouping] = STATE(1705), + [sym__primitive] = STATE(1705), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1705), + [sym_string] = STATE(1705), + [sym_func_call] = STATE(1705), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1705), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [874] = { + [sym__getline_exp] = STATE(1828), + [sym_getline_input] = STATE(1828), + [sym_getline_file] = STATE(1828), + [sym__exp] = STATE(1828), + [sym_ternary_exp] = STATE(1828), + [sym_binary_exp] = STATE(1828), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1828), + [sym_update_exp] = STATE(1828), + [sym_assignment_exp] = STATE(1828), + [sym_piped_io_exp] = STATE(1828), + [sym_string_concat] = STATE(1828), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1828), + [sym_regex_constant] = STATE(1828), + [sym_grouping] = STATE(1828), + [sym__primitive] = STATE(1828), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1828), + [sym_string] = STATE(1828), + [sym_func_call] = STATE(1828), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1828), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [875] = { + [sym__getline_exp] = STATE(1664), + [sym_getline_input] = STATE(1664), + [sym_getline_file] = STATE(1664), + [sym__exp] = STATE(1664), + [sym_ternary_exp] = STATE(1664), + [sym_binary_exp] = STATE(1664), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1664), + [sym_update_exp] = STATE(1664), + [sym_assignment_exp] = STATE(1664), + [sym_piped_io_exp] = STATE(1664), + [sym_string_concat] = STATE(1664), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1664), + [sym_regex_constant] = STATE(1664), + [sym_grouping] = STATE(1664), + [sym__primitive] = STATE(1664), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1664), + [sym_string] = STATE(1664), + [sym_func_call] = STATE(1664), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1664), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [876] = { + [sym_identifier] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_LF] = ACTIONS(1794), + [anon_sym_CR_LF] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [sym_break_statement] = ACTIONS(1794), + [sym_continue_statement] = ACTIONS(1794), + [anon_sym_delete] = ACTIONS(1794), + [anon_sym_exit] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_getline] = ACTIONS(1794), + [sym_next_statement] = ACTIONS(1794), + [sym_nextfile_statement] = ACTIONS(1794), + [anon_sym_print] = ACTIONS(1794), + [anon_sym_printf] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_PLUS_PLUS] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(1794), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(1794), + [aux_sym_number_token2] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_and] = ACTIONS(1794), + [anon_sym_asort] = ACTIONS(1794), + [anon_sym_asorti] = ACTIONS(1794), + [anon_sym_bindtextdomain] = ACTIONS(1794), + [anon_sym_compl] = ACTIONS(1794), + [anon_sym_cos] = ACTIONS(1794), + [anon_sym_dcgettext] = ACTIONS(1794), + [anon_sym_dcngettext] = ACTIONS(1794), + [anon_sym_exp] = ACTIONS(1794), + [anon_sym_gensub] = ACTIONS(1794), + [anon_sym_gsub] = ACTIONS(1794), + [anon_sym_index] = ACTIONS(1794), + [anon_sym_int] = ACTIONS(1794), + [anon_sym_isarray] = ACTIONS(1794), + [anon_sym_length] = ACTIONS(1794), + [anon_sym_log] = ACTIONS(1794), + [anon_sym_lshift] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_mktime] = ACTIONS(1794), + [anon_sym_or] = ACTIONS(1794), + [anon_sym_patsplit] = ACTIONS(1794), + [anon_sym_rand] = ACTIONS(1794), + [anon_sym_rshift] = ACTIONS(1794), + [anon_sym_sin] = ACTIONS(1794), + [anon_sym_split] = ACTIONS(1794), + [anon_sym_sprintf] = ACTIONS(1794), + [anon_sym_sqrt] = ACTIONS(1794), + [anon_sym_srand] = ACTIONS(1794), + [anon_sym_strftime] = ACTIONS(1794), + [anon_sym_strtonum] = ACTIONS(1794), + [anon_sym_sub] = ACTIONS(1794), + [anon_sym_substr] = ACTIONS(1794), + [anon_sym_systime] = ACTIONS(1794), + [anon_sym_tolower] = ACTIONS(1794), + [anon_sym_toupper] = ACTIONS(1794), + [anon_sym_typeof] = ACTIONS(1794), + [anon_sym_xor] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1794), + [sym__if_else_separator] = ACTIONS(1796), + }, + [877] = { + [sym__getline_exp] = STATE(1437), + [sym_getline_input] = STATE(1437), + [sym_getline_file] = STATE(1437), + [sym__exp] = STATE(1437), + [sym_ternary_exp] = STATE(1437), + [sym_binary_exp] = STATE(1437), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1437), + [sym_update_exp] = STATE(1437), + [sym_assignment_exp] = STATE(1437), + [sym_piped_io_exp] = STATE(1437), + [sym_string_concat] = STATE(1437), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1437), + [sym_regex_constant] = STATE(1437), + [sym_grouping] = STATE(1437), + [sym__primitive] = STATE(1437), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1437), + [sym_string] = STATE(1437), + [sym_func_call] = STATE(1437), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1437), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [878] = { + [sym__getline_exp] = STATE(275), + [sym_getline_input] = STATE(275), + [sym_getline_file] = STATE(275), + [sym__exp] = STATE(275), + [sym_ternary_exp] = STATE(275), + [sym_binary_exp] = STATE(275), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(275), + [sym_update_exp] = STATE(275), + [sym_assignment_exp] = STATE(275), + [sym_piped_io_exp] = STATE(275), + [sym_string_concat] = STATE(275), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(275), + [sym_regex_constant] = STATE(275), + [sym_grouping] = STATE(275), + [sym__primitive] = STATE(275), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(275), + [sym_string] = STATE(275), + [sym_func_call] = STATE(275), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(275), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [879] = { + [sym__getline_exp] = STATE(1392), + [sym_getline_input] = STATE(1392), + [sym_getline_file] = STATE(1392), + [sym__exp] = STATE(1392), + [sym_ternary_exp] = STATE(1392), + [sym_binary_exp] = STATE(1392), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1392), + [sym_update_exp] = STATE(1392), + [sym_assignment_exp] = STATE(1392), + [sym_piped_io_exp] = STATE(1392), + [sym_string_concat] = STATE(1392), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1392), + [sym_regex_constant] = STATE(1392), + [sym_grouping] = STATE(1392), + [sym__primitive] = STATE(1392), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1392), + [sym_string] = STATE(1392), + [sym_func_call] = STATE(1392), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1392), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [880] = { + [sym__getline_exp] = STATE(1964), + [sym_getline_input] = STATE(1964), + [sym_getline_file] = STATE(1964), + [sym__exp] = STATE(1964), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1964), + [sym_assignment_exp] = STATE(1964), + [sym_piped_io_exp] = STATE(1964), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1964), + [sym_regex_constant] = STATE(1964), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1964), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [881] = { + [sym__getline_exp] = STATE(358), + [sym_getline_input] = STATE(358), + [sym_getline_file] = STATE(358), + [sym__exp] = STATE(358), + [sym_ternary_exp] = STATE(358), + [sym_binary_exp] = STATE(358), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(358), + [sym_update_exp] = STATE(358), + [sym_assignment_exp] = STATE(358), + [sym_piped_io_exp] = STATE(358), + [sym_string_concat] = STATE(358), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(358), + [sym_regex_constant] = STATE(358), + [sym_grouping] = STATE(358), + [sym__primitive] = STATE(358), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(358), + [sym_string] = STATE(358), + [sym_func_call] = STATE(358), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(358), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [882] = { + [sym__getline_exp] = STATE(1865), + [sym_getline_input] = STATE(1865), + [sym_getline_file] = STATE(1865), + [sym__exp] = STATE(1865), + [sym_ternary_exp] = STATE(1865), + [sym_binary_exp] = STATE(1865), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1865), + [sym_update_exp] = STATE(1865), + [sym_assignment_exp] = STATE(1865), + [sym_piped_io_exp] = STATE(1865), + [sym_string_concat] = STATE(1865), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1865), + [sym_regex_constant] = STATE(1865), + [sym_grouping] = STATE(1865), + [sym__primitive] = STATE(1865), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1865), + [sym_string] = STATE(1865), + [sym_func_call] = STATE(1865), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1865), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [883] = { + [sym__getline_exp] = STATE(1439), + [sym_getline_input] = STATE(1439), + [sym_getline_file] = STATE(1439), + [sym__exp] = STATE(1439), + [sym_ternary_exp] = STATE(1439), + [sym_binary_exp] = STATE(1439), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1439), + [sym_update_exp] = STATE(1439), + [sym_assignment_exp] = STATE(1439), + [sym_piped_io_exp] = STATE(1439), + [sym_string_concat] = STATE(1439), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1439), + [sym_regex_constant] = STATE(1439), + [sym_grouping] = STATE(1439), + [sym__primitive] = STATE(1439), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1439), + [sym_string] = STATE(1439), + [sym_func_call] = STATE(1439), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1439), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [884] = { + [sym__getline_exp] = STATE(606), + [sym_getline_input] = STATE(606), + [sym_getline_file] = STATE(606), + [sym__exp] = STATE(606), + [sym_ternary_exp] = STATE(606), + [sym_binary_exp] = STATE(606), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(606), + [sym_update_exp] = STATE(606), + [sym_assignment_exp] = STATE(606), + [sym_piped_io_exp] = STATE(606), + [sym_string_concat] = STATE(606), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(606), + [sym_regex_constant] = STATE(606), + [sym_grouping] = STATE(606), + [sym__primitive] = STATE(606), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(606), + [sym_string] = STATE(606), + [sym_func_call] = STATE(606), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(606), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [885] = { + [sym__getline_exp] = STATE(1969), + [sym_getline_input] = STATE(1969), + [sym_getline_file] = STATE(1969), + [sym__exp] = STATE(1969), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1969), + [sym_assignment_exp] = STATE(1969), + [sym_piped_io_exp] = STATE(1969), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1969), + [sym_regex_constant] = STATE(1969), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1969), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [886] = { + [sym__getline_exp] = STATE(570), + [sym_getline_input] = STATE(570), + [sym_getline_file] = STATE(570), + [sym__exp] = STATE(570), + [sym_ternary_exp] = STATE(570), + [sym_binary_exp] = STATE(570), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(570), + [sym_update_exp] = STATE(570), + [sym_assignment_exp] = STATE(570), + [sym_piped_io_exp] = STATE(570), + [sym_string_concat] = STATE(570), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(570), + [sym_regex_constant] = STATE(570), + [sym_grouping] = STATE(570), + [sym__primitive] = STATE(570), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(570), + [sym_string] = STATE(570), + [sym_func_call] = STATE(570), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(570), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [887] = { + [sym__getline_exp] = STATE(1854), + [sym_getline_input] = STATE(1854), + [sym_getline_file] = STATE(1854), + [sym__exp] = STATE(1854), + [sym_ternary_exp] = STATE(1854), + [sym_binary_exp] = STATE(1854), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1854), + [sym_update_exp] = STATE(1854), + [sym_assignment_exp] = STATE(1854), + [sym_piped_io_exp] = STATE(1854), + [sym_string_concat] = STATE(1854), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1854), + [sym_regex_constant] = STATE(1854), + [sym_grouping] = STATE(1854), + [sym__primitive] = STATE(1854), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1854), + [sym_string] = STATE(1854), + [sym_func_call] = STATE(1854), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1854), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [888] = { + [sym__getline_exp] = STATE(439), + [sym_getline_input] = STATE(439), + [sym_getline_file] = STATE(439), + [sym__exp] = STATE(439), + [sym_ternary_exp] = STATE(439), + [sym_binary_exp] = STATE(439), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(439), + [sym_update_exp] = STATE(439), + [sym_assignment_exp] = STATE(439), + [sym_piped_io_exp] = STATE(439), + [sym_string_concat] = STATE(439), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(439), + [sym_regex_constant] = STATE(439), + [sym_grouping] = STATE(439), + [sym__primitive] = STATE(439), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(439), + [sym_string] = STATE(439), + [sym_func_call] = STATE(439), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(439), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [889] = { + [sym__getline_exp] = STATE(1924), + [sym_getline_input] = STATE(1924), + [sym_getline_file] = STATE(1924), + [sym__exp] = STATE(1924), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1924), + [sym_assignment_exp] = STATE(1924), + [sym_piped_io_exp] = STATE(1924), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1924), + [sym_regex_constant] = STATE(1924), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1924), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [890] = { + [sym__getline_exp] = STATE(284), + [sym_getline_input] = STATE(284), + [sym_getline_file] = STATE(284), + [sym__exp] = STATE(284), + [sym_ternary_exp] = STATE(284), + [sym_binary_exp] = STATE(284), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(284), + [sym_update_exp] = STATE(284), + [sym_assignment_exp] = STATE(284), + [sym_piped_io_exp] = STATE(284), + [sym_string_concat] = STATE(284), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(284), + [sym_regex_constant] = STATE(284), + [sym_grouping] = STATE(284), + [sym__primitive] = STATE(284), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(284), + [sym_string] = STATE(284), + [sym_func_call] = STATE(284), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(284), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [891] = { + [sym__getline_exp] = STATE(1799), + [sym_getline_input] = STATE(1799), + [sym_getline_file] = STATE(1799), + [sym__exp] = STATE(1799), + [sym_ternary_exp] = STATE(1799), + [sym_binary_exp] = STATE(1799), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1799), + [sym_update_exp] = STATE(1799), + [sym_assignment_exp] = STATE(1799), + [sym_piped_io_exp] = STATE(1799), + [sym_string_concat] = STATE(1799), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1799), + [sym_regex_constant] = STATE(1799), + [sym_grouping] = STATE(1799), + [sym__primitive] = STATE(1799), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1799), + [sym_string] = STATE(1799), + [sym_func_call] = STATE(1799), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1799), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [892] = { + [sym__getline_exp] = STATE(1839), + [sym_getline_input] = STATE(1839), + [sym_getline_file] = STATE(1839), + [sym__exp] = STATE(1839), + [sym_ternary_exp] = STATE(1839), + [sym_binary_exp] = STATE(1839), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1839), + [sym_update_exp] = STATE(1839), + [sym_assignment_exp] = STATE(1839), + [sym_piped_io_exp] = STATE(1839), + [sym_string_concat] = STATE(1839), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1839), + [sym_regex_constant] = STATE(1839), + [sym_grouping] = STATE(1839), + [sym__primitive] = STATE(1839), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1839), + [sym_string] = STATE(1839), + [sym_func_call] = STATE(1839), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1839), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [893] = { + [sym__getline_exp] = STATE(1836), + [sym_getline_input] = STATE(1836), + [sym_getline_file] = STATE(1836), + [sym__exp] = STATE(1836), + [sym_ternary_exp] = STATE(1836), + [sym_binary_exp] = STATE(1836), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1836), + [sym_update_exp] = STATE(1836), + [sym_assignment_exp] = STATE(1836), + [sym_piped_io_exp] = STATE(1836), + [sym_string_concat] = STATE(1836), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1836), + [sym_regex_constant] = STATE(1836), + [sym_grouping] = STATE(1836), + [sym__primitive] = STATE(1836), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1836), + [sym_string] = STATE(1836), + [sym_func_call] = STATE(1836), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1836), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [894] = { + [sym__getline_exp] = STATE(264), + [sym_getline_input] = STATE(264), + [sym_getline_file] = STATE(264), + [sym__exp] = STATE(264), + [sym_ternary_exp] = STATE(264), + [sym_binary_exp] = STATE(264), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(264), + [sym_update_exp] = STATE(264), + [sym_assignment_exp] = STATE(264), + [sym_piped_io_exp] = STATE(264), + [sym_string_concat] = STATE(264), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(264), + [sym_regex_constant] = STATE(264), + [sym_grouping] = STATE(264), + [sym__primitive] = STATE(264), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(264), + [sym_string] = STATE(264), + [sym_func_call] = STATE(264), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(264), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [895] = { + [sym__getline_exp] = STATE(1874), + [sym_getline_input] = STATE(1874), + [sym_getline_file] = STATE(1874), + [sym__exp] = STATE(1874), + [sym_ternary_exp] = STATE(1874), + [sym_binary_exp] = STATE(1874), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1874), + [sym_update_exp] = STATE(1874), + [sym_assignment_exp] = STATE(1874), + [sym_piped_io_exp] = STATE(1874), + [sym_string_concat] = STATE(1874), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1874), + [sym_regex_constant] = STATE(1874), + [sym_grouping] = STATE(1874), + [sym__primitive] = STATE(1874), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1874), + [sym_string] = STATE(1874), + [sym_func_call] = STATE(1874), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1874), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [896] = { + [sym__getline_exp] = STATE(1697), + [sym_getline_input] = STATE(1697), + [sym_getline_file] = STATE(1697), + [sym__exp] = STATE(1697), + [sym_ternary_exp] = STATE(1697), + [sym_binary_exp] = STATE(1697), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1697), + [sym_update_exp] = STATE(1697), + [sym_assignment_exp] = STATE(1697), + [sym_piped_io_exp] = STATE(1697), + [sym_string_concat] = STATE(1697), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1697), + [sym_regex_constant] = STATE(1697), + [sym_grouping] = STATE(1697), + [sym__primitive] = STATE(1697), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1697), + [sym_string] = STATE(1697), + [sym_func_call] = STATE(1697), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1697), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [897] = { + [sym__getline_exp] = STATE(1977), + [sym_getline_input] = STATE(1977), + [sym_getline_file] = STATE(1977), + [sym__exp] = STATE(1977), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1977), + [sym_assignment_exp] = STATE(1977), + [sym_piped_io_exp] = STATE(1977), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1977), + [sym_regex_constant] = STATE(1977), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1977), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [898] = { + [sym__getline_exp] = STATE(532), + [sym_getline_input] = STATE(532), + [sym_getline_file] = STATE(532), + [sym__exp] = STATE(532), + [sym_ternary_exp] = STATE(532), + [sym_binary_exp] = STATE(532), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(532), + [sym_update_exp] = STATE(532), + [sym_assignment_exp] = STATE(532), + [sym_piped_io_exp] = STATE(532), + [sym_string_concat] = STATE(532), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(532), + [sym_regex_constant] = STATE(532), + [sym_grouping] = STATE(532), + [sym__primitive] = STATE(532), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(532), + [sym_string] = STATE(532), + [sym_func_call] = STATE(532), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(532), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [899] = { + [sym__getline_exp] = STATE(1712), + [sym_getline_input] = STATE(1712), + [sym_getline_file] = STATE(1712), + [sym__exp] = STATE(1712), + [sym_ternary_exp] = STATE(1712), + [sym_binary_exp] = STATE(1712), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1712), + [sym_update_exp] = STATE(1712), + [sym_assignment_exp] = STATE(1712), + [sym_piped_io_exp] = STATE(1712), + [sym_string_concat] = STATE(1712), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1712), + [sym_regex_constant] = STATE(1712), + [sym_grouping] = STATE(1712), + [sym__primitive] = STATE(1712), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1712), + [sym_string] = STATE(1712), + [sym_func_call] = STATE(1712), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1712), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [900] = { + [sym__getline_exp] = STATE(2045), + [sym_getline_input] = STATE(2045), + [sym_getline_file] = STATE(2045), + [sym__exp] = STATE(2045), + [sym_ternary_exp] = STATE(601), + [sym_binary_exp] = STATE(601), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(601), + [sym_update_exp] = STATE(2045), + [sym_assignment_exp] = STATE(2045), + [sym_piped_io_exp] = STATE(2045), + [sym_string_concat] = STATE(601), + [sym_field_ref] = STATE(503), + [sym_array_ref] = STATE(466), + [sym_regex] = STATE(2045), + [sym_regex_constant] = STATE(2045), + [sym_grouping] = STATE(601), + [sym__primitive] = STATE(601), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(455), + [sym_number] = STATE(601), + [sym_string] = STATE(601), + [sym_func_call] = STATE(601), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(2045), + [sym_identifier] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [901] = { + [sym__getline_exp] = STATE(540), + [sym_getline_input] = STATE(540), + [sym_getline_file] = STATE(540), + [sym__exp] = STATE(540), + [sym_ternary_exp] = STATE(540), + [sym_binary_exp] = STATE(540), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(540), + [sym_update_exp] = STATE(540), + [sym_assignment_exp] = STATE(540), + [sym_piped_io_exp] = STATE(540), + [sym_string_concat] = STATE(540), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(540), + [sym_regex_constant] = STATE(540), + [sym_grouping] = STATE(540), + [sym__primitive] = STATE(540), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(540), + [sym_string] = STATE(540), + [sym_func_call] = STATE(540), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(540), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [902] = { + [sym__getline_exp] = STATE(539), + [sym_getline_input] = STATE(539), + [sym_getline_file] = STATE(539), + [sym__exp] = STATE(539), + [sym_ternary_exp] = STATE(539), + [sym_binary_exp] = STATE(539), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(539), + [sym_update_exp] = STATE(539), + [sym_assignment_exp] = STATE(539), + [sym_piped_io_exp] = STATE(539), + [sym_string_concat] = STATE(539), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(539), + [sym_regex_constant] = STATE(539), + [sym_grouping] = STATE(539), + [sym__primitive] = STATE(539), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(539), + [sym_string] = STATE(539), + [sym_func_call] = STATE(539), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(539), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [903] = { + [sym__getline_exp] = STATE(538), + [sym_getline_input] = STATE(538), + [sym_getline_file] = STATE(538), + [sym__exp] = STATE(538), + [sym_ternary_exp] = STATE(538), + [sym_binary_exp] = STATE(538), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(538), + [sym_update_exp] = STATE(538), + [sym_assignment_exp] = STATE(538), + [sym_piped_io_exp] = STATE(538), + [sym_string_concat] = STATE(538), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(538), + [sym_regex_constant] = STATE(538), + [sym_grouping] = STATE(538), + [sym__primitive] = STATE(538), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(538), + [sym_string] = STATE(538), + [sym_func_call] = STATE(538), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(538), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [904] = { + [sym__getline_exp] = STATE(1715), + [sym_getline_input] = STATE(1715), + [sym_getline_file] = STATE(1715), + [sym__exp] = STATE(1715), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1715), + [sym_assignment_exp] = STATE(1715), + [sym_piped_io_exp] = STATE(1715), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1715), + [sym_regex_constant] = STATE(1715), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1715), + [sym_identifier] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [905] = { + [sym__getline_exp] = STATE(1726), + [sym_getline_input] = STATE(1726), + [sym_getline_file] = STATE(1726), + [sym__exp] = STATE(1726), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1726), + [sym_assignment_exp] = STATE(1726), + [sym_piped_io_exp] = STATE(1726), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1726), + [sym_regex_constant] = STATE(1726), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1726), + [sym_identifier] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [906] = { + [sym__getline_exp] = STATE(1821), + [sym_getline_input] = STATE(1821), + [sym_getline_file] = STATE(1821), + [sym__exp] = STATE(1821), + [sym_ternary_exp] = STATE(1821), + [sym_binary_exp] = STATE(1821), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1821), + [sym_update_exp] = STATE(1821), + [sym_assignment_exp] = STATE(1821), + [sym_piped_io_exp] = STATE(1821), + [sym_string_concat] = STATE(1821), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1821), + [sym_regex_constant] = STATE(1821), + [sym_grouping] = STATE(1821), + [sym__primitive] = STATE(1821), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1821), + [sym_string] = STATE(1821), + [sym_func_call] = STATE(1821), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1821), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [907] = { + [sym__getline_exp] = STATE(389), + [sym_getline_input] = STATE(389), + [sym_getline_file] = STATE(389), + [sym__exp] = STATE(389), + [sym_ternary_exp] = STATE(389), + [sym_binary_exp] = STATE(389), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(389), + [sym_update_exp] = STATE(389), + [sym_assignment_exp] = STATE(389), + [sym_piped_io_exp] = STATE(389), + [sym_string_concat] = STATE(389), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(389), + [sym_regex_constant] = STATE(389), + [sym_grouping] = STATE(389), + [sym__primitive] = STATE(389), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(389), + [sym_string] = STATE(389), + [sym_func_call] = STATE(389), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(389), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [908] = { + [sym__getline_exp] = STATE(1823), + [sym_getline_input] = STATE(1823), + [sym_getline_file] = STATE(1823), + [sym__exp] = STATE(1823), + [sym_ternary_exp] = STATE(1823), + [sym_binary_exp] = STATE(1823), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1823), + [sym_update_exp] = STATE(1823), + [sym_assignment_exp] = STATE(1823), + [sym_piped_io_exp] = STATE(1823), + [sym_string_concat] = STATE(1823), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1823), + [sym_regex_constant] = STATE(1823), + [sym_grouping] = STATE(1823), + [sym__primitive] = STATE(1823), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1823), + [sym_string] = STATE(1823), + [sym_func_call] = STATE(1823), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1823), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [909] = { + [sym__getline_exp] = STATE(1648), + [sym_getline_input] = STATE(1648), + [sym_getline_file] = STATE(1648), + [sym__exp] = STATE(1648), + [sym_ternary_exp] = STATE(1648), + [sym_binary_exp] = STATE(1648), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1648), + [sym_update_exp] = STATE(1648), + [sym_assignment_exp] = STATE(1648), + [sym_piped_io_exp] = STATE(1648), + [sym_string_concat] = STATE(1648), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1648), + [sym_regex_constant] = STATE(1648), + [sym_grouping] = STATE(1648), + [sym__primitive] = STATE(1648), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1648), + [sym_string] = STATE(1648), + [sym_func_call] = STATE(1648), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1648), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [910] = { + [sym__getline_exp] = STATE(537), + [sym_getline_input] = STATE(537), + [sym_getline_file] = STATE(537), + [sym__exp] = STATE(537), + [sym_ternary_exp] = STATE(537), + [sym_binary_exp] = STATE(537), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(537), + [sym_update_exp] = STATE(537), + [sym_assignment_exp] = STATE(537), + [sym_piped_io_exp] = STATE(537), + [sym_string_concat] = STATE(537), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(537), + [sym_regex_constant] = STATE(537), + [sym_grouping] = STATE(537), + [sym__primitive] = STATE(537), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(537), + [sym_string] = STATE(537), + [sym_func_call] = STATE(537), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(537), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [911] = { + [sym__getline_exp] = STATE(536), + [sym_getline_input] = STATE(536), + [sym_getline_file] = STATE(536), + [sym__exp] = STATE(536), + [sym_ternary_exp] = STATE(536), + [sym_binary_exp] = STATE(536), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(536), + [sym_update_exp] = STATE(536), + [sym_assignment_exp] = STATE(536), + [sym_piped_io_exp] = STATE(536), + [sym_string_concat] = STATE(536), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(536), + [sym_regex_constant] = STATE(536), + [sym_grouping] = STATE(536), + [sym__primitive] = STATE(536), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(536), + [sym_string] = STATE(536), + [sym_func_call] = STATE(536), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(536), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [912] = { + [sym__getline_exp] = STATE(1825), + [sym_getline_input] = STATE(1825), + [sym_getline_file] = STATE(1825), + [sym__exp] = STATE(1825), + [sym_ternary_exp] = STATE(1825), + [sym_binary_exp] = STATE(1825), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1825), + [sym_update_exp] = STATE(1825), + [sym_assignment_exp] = STATE(1825), + [sym_piped_io_exp] = STATE(1825), + [sym_string_concat] = STATE(1825), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1825), + [sym_regex_constant] = STATE(1825), + [sym_grouping] = STATE(1825), + [sym__primitive] = STATE(1825), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1825), + [sym_string] = STATE(1825), + [sym_func_call] = STATE(1825), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1825), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [913] = { + [sym__getline_exp] = STATE(1392), + [sym_getline_input] = STATE(1392), + [sym_getline_file] = STATE(1392), + [sym__exp] = STATE(1392), + [sym_ternary_exp] = STATE(1392), + [sym_binary_exp] = STATE(1392), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1392), + [sym_update_exp] = STATE(1392), + [sym_assignment_exp] = STATE(1392), + [sym_piped_io_exp] = STATE(1392), + [sym_string_concat] = STATE(1392), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1392), + [sym_regex_constant] = STATE(1392), + [sym_grouping] = STATE(1392), + [sym__primitive] = STATE(1392), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1392), + [sym_string] = STATE(1392), + [sym_func_call] = STATE(1392), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1392), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [914] = { + [sym__getline_exp] = STATE(1387), + [sym_getline_input] = STATE(1387), + [sym_getline_file] = STATE(1387), + [sym__exp] = STATE(1387), + [sym_ternary_exp] = STATE(1387), + [sym_binary_exp] = STATE(1387), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1387), + [sym_update_exp] = STATE(1387), + [sym_assignment_exp] = STATE(1387), + [sym_piped_io_exp] = STATE(1387), + [sym_string_concat] = STATE(1387), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1387), + [sym_regex_constant] = STATE(1387), + [sym_grouping] = STATE(1387), + [sym__primitive] = STATE(1387), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1387), + [sym_string] = STATE(1387), + [sym_func_call] = STATE(1387), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1387), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [915] = { + [sym__getline_exp] = STATE(1401), + [sym_getline_input] = STATE(1401), + [sym_getline_file] = STATE(1401), + [sym__exp] = STATE(1401), + [sym_ternary_exp] = STATE(1401), + [sym_binary_exp] = STATE(1401), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1401), + [sym_update_exp] = STATE(1401), + [sym_assignment_exp] = STATE(1401), + [sym_piped_io_exp] = STATE(1401), + [sym_string_concat] = STATE(1401), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1401), + [sym_regex_constant] = STATE(1401), + [sym_grouping] = STATE(1401), + [sym__primitive] = STATE(1401), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1401), + [sym_string] = STATE(1401), + [sym_func_call] = STATE(1401), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1401), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [916] = { + [sym__getline_exp] = STATE(1990), + [sym_getline_input] = STATE(1990), + [sym_getline_file] = STATE(1990), + [sym__exp] = STATE(1990), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1990), + [sym_assignment_exp] = STATE(1990), + [sym_piped_io_exp] = STATE(1990), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1990), + [sym_regex_constant] = STATE(1990), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1990), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [917] = { + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1446), + [sym_binary_exp] = STATE(1446), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1446), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1446), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1446), + [sym__primitive] = STATE(1446), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1446), + [sym_string] = STATE(1446), + [sym_func_call] = STATE(1446), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1446), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [918] = { + [sym__getline_exp] = STATE(1834), + [sym_getline_input] = STATE(1834), + [sym_getline_file] = STATE(1834), + [sym__exp] = STATE(1834), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1834), + [sym_assignment_exp] = STATE(1834), + [sym_piped_io_exp] = STATE(1834), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1834), + [sym_regex_constant] = STATE(1834), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1834), + [sym_identifier] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [919] = { + [sym__getline_exp] = STATE(1846), + [sym_getline_input] = STATE(1846), + [sym_getline_file] = STATE(1846), + [sym__exp] = STATE(1846), + [sym_ternary_exp] = STATE(1846), + [sym_binary_exp] = STATE(1846), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1846), + [sym_update_exp] = STATE(1846), + [sym_assignment_exp] = STATE(1846), + [sym_piped_io_exp] = STATE(1846), + [sym_string_concat] = STATE(1846), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1846), + [sym_regex_constant] = STATE(1846), + [sym_grouping] = STATE(1846), + [sym__primitive] = STATE(1846), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1846), + [sym_string] = STATE(1846), + [sym_func_call] = STATE(1846), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1846), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [920] = { + [sym__getline_exp] = STATE(1529), + [sym_getline_input] = STATE(1529), + [sym_getline_file] = STATE(1529), + [sym__exp] = STATE(1529), + [sym_ternary_exp] = STATE(1529), + [sym_binary_exp] = STATE(1529), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1529), + [sym_update_exp] = STATE(1529), + [sym_assignment_exp] = STATE(1529), + [sym_piped_io_exp] = STATE(1529), + [sym_string_concat] = STATE(1529), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1529), + [sym_regex_constant] = STATE(1529), + [sym_grouping] = STATE(1529), + [sym__primitive] = STATE(1529), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1529), + [sym_string] = STATE(1529), + [sym_func_call] = STATE(1529), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1529), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [921] = { + [sym__getline_exp] = STATE(1530), + [sym_getline_input] = STATE(1530), + [sym_getline_file] = STATE(1530), + [sym__exp] = STATE(1530), + [sym_ternary_exp] = STATE(1530), + [sym_binary_exp] = STATE(1530), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1530), + [sym_update_exp] = STATE(1530), + [sym_assignment_exp] = STATE(1530), + [sym_piped_io_exp] = STATE(1530), + [sym_string_concat] = STATE(1530), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1530), + [sym_regex_constant] = STATE(1530), + [sym_grouping] = STATE(1530), + [sym__primitive] = STATE(1530), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1530), + [sym_string] = STATE(1530), + [sym_func_call] = STATE(1530), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1530), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [922] = { + [sym__getline_exp] = STATE(1413), + [sym_getline_input] = STATE(1413), + [sym_getline_file] = STATE(1413), + [sym__exp] = STATE(1413), + [sym_ternary_exp] = STATE(1413), + [sym_binary_exp] = STATE(1413), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1413), + [sym_update_exp] = STATE(1413), + [sym_assignment_exp] = STATE(1413), + [sym_piped_io_exp] = STATE(1413), + [sym_string_concat] = STATE(1413), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1413), + [sym_regex_constant] = STATE(1413), + [sym_grouping] = STATE(1413), + [sym__primitive] = STATE(1413), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1413), + [sym_string] = STATE(1413), + [sym_func_call] = STATE(1413), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1413), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [923] = { + [sym__getline_exp] = STATE(1531), + [sym_getline_input] = STATE(1531), + [sym_getline_file] = STATE(1531), + [sym__exp] = STATE(1531), + [sym_ternary_exp] = STATE(1531), + [sym_binary_exp] = STATE(1531), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1531), + [sym_update_exp] = STATE(1531), + [sym_assignment_exp] = STATE(1531), + [sym_piped_io_exp] = STATE(1531), + [sym_string_concat] = STATE(1531), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1531), + [sym_regex_constant] = STATE(1531), + [sym_grouping] = STATE(1531), + [sym__primitive] = STATE(1531), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1531), + [sym_string] = STATE(1531), + [sym_func_call] = STATE(1531), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1531), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [924] = { + [sym__getline_exp] = STATE(1532), + [sym_getline_input] = STATE(1532), + [sym_getline_file] = STATE(1532), + [sym__exp] = STATE(1532), + [sym_ternary_exp] = STATE(1532), + [sym_binary_exp] = STATE(1532), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1532), + [sym_update_exp] = STATE(1532), + [sym_assignment_exp] = STATE(1532), + [sym_piped_io_exp] = STATE(1532), + [sym_string_concat] = STATE(1532), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1532), + [sym_regex_constant] = STATE(1532), + [sym_grouping] = STATE(1532), + [sym__primitive] = STATE(1532), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1532), + [sym_string] = STATE(1532), + [sym_func_call] = STATE(1532), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1532), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [925] = { + [sym__getline_exp] = STATE(1533), + [sym_getline_input] = STATE(1533), + [sym_getline_file] = STATE(1533), + [sym__exp] = STATE(1533), + [sym_ternary_exp] = STATE(1533), + [sym_binary_exp] = STATE(1533), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1533), + [sym_update_exp] = STATE(1533), + [sym_assignment_exp] = STATE(1533), + [sym_piped_io_exp] = STATE(1533), + [sym_string_concat] = STATE(1533), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1533), + [sym_regex_constant] = STATE(1533), + [sym_grouping] = STATE(1533), + [sym__primitive] = STATE(1533), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1533), + [sym_string] = STATE(1533), + [sym_func_call] = STATE(1533), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1533), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [926] = { + [sym__getline_exp] = STATE(1534), + [sym_getline_input] = STATE(1534), + [sym_getline_file] = STATE(1534), + [sym__exp] = STATE(1534), + [sym_ternary_exp] = STATE(1534), + [sym_binary_exp] = STATE(1534), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1534), + [sym_update_exp] = STATE(1534), + [sym_assignment_exp] = STATE(1534), + [sym_piped_io_exp] = STATE(1534), + [sym_string_concat] = STATE(1534), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1534), + [sym_regex_constant] = STATE(1534), + [sym_grouping] = STATE(1534), + [sym__primitive] = STATE(1534), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1534), + [sym_string] = STATE(1534), + [sym_func_call] = STATE(1534), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1534), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [927] = { + [sym__getline_exp] = STATE(1535), + [sym_getline_input] = STATE(1535), + [sym_getline_file] = STATE(1535), + [sym__exp] = STATE(1535), + [sym_ternary_exp] = STATE(1535), + [sym_binary_exp] = STATE(1535), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1535), + [sym_update_exp] = STATE(1535), + [sym_assignment_exp] = STATE(1535), + [sym_piped_io_exp] = STATE(1535), + [sym_string_concat] = STATE(1535), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1535), + [sym_regex_constant] = STATE(1535), + [sym_grouping] = STATE(1535), + [sym__primitive] = STATE(1535), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1535), + [sym_string] = STATE(1535), + [sym_func_call] = STATE(1535), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1535), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [928] = { + [sym__getline_exp] = STATE(535), + [sym_getline_input] = STATE(535), + [sym_getline_file] = STATE(535), + [sym__exp] = STATE(535), + [sym_ternary_exp] = STATE(535), + [sym_binary_exp] = STATE(535), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(535), + [sym_update_exp] = STATE(535), + [sym_assignment_exp] = STATE(535), + [sym_piped_io_exp] = STATE(535), + [sym_string_concat] = STATE(535), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(535), + [sym_regex_constant] = STATE(535), + [sym_grouping] = STATE(535), + [sym__primitive] = STATE(535), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(535), + [sym_string] = STATE(535), + [sym_func_call] = STATE(535), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(535), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [929] = { + [sym__getline_exp] = STATE(1815), + [sym_getline_input] = STATE(1815), + [sym_getline_file] = STATE(1815), + [sym__exp] = STATE(1815), + [sym_ternary_exp] = STATE(1815), + [sym_binary_exp] = STATE(1815), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1815), + [sym_update_exp] = STATE(1815), + [sym_assignment_exp] = STATE(1815), + [sym_piped_io_exp] = STATE(1815), + [sym_string_concat] = STATE(1815), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1815), + [sym_regex_constant] = STATE(1815), + [sym_grouping] = STATE(1815), + [sym__primitive] = STATE(1815), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1815), + [sym_string] = STATE(1815), + [sym_func_call] = STATE(1815), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1815), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [930] = { + [sym__getline_exp] = STATE(1755), + [sym_getline_input] = STATE(1755), + [sym_getline_file] = STATE(1755), + [sym__exp] = STATE(1755), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1755), + [sym_assignment_exp] = STATE(1755), + [sym_piped_io_exp] = STATE(1755), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1755), + [sym_regex_constant] = STATE(1755), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1755), + [sym_identifier] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [931] = { + [sym__getline_exp] = STATE(1713), + [sym_getline_input] = STATE(1713), + [sym_getline_file] = STATE(1713), + [sym__exp] = STATE(1713), + [sym_ternary_exp] = STATE(1713), + [sym_binary_exp] = STATE(1713), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1713), + [sym_update_exp] = STATE(1713), + [sym_assignment_exp] = STATE(1713), + [sym_piped_io_exp] = STATE(1713), + [sym_string_concat] = STATE(1713), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1713), + [sym_regex_constant] = STATE(1713), + [sym_grouping] = STATE(1713), + [sym__primitive] = STATE(1713), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1713), + [sym_string] = STATE(1713), + [sym_func_call] = STATE(1713), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1713), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [932] = { + [sym__getline_exp] = STATE(224), + [sym_getline_input] = STATE(224), + [sym_getline_file] = STATE(224), + [sym__exp] = STATE(224), + [sym_ternary_exp] = STATE(224), + [sym_binary_exp] = STATE(224), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(224), + [sym_update_exp] = STATE(224), + [sym_assignment_exp] = STATE(224), + [sym_piped_io_exp] = STATE(224), + [sym_string_concat] = STATE(224), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(224), + [sym_regex_constant] = STATE(224), + [sym_grouping] = STATE(224), + [sym__primitive] = STATE(224), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(224), + [sym_string] = STATE(224), + [sym_func_call] = STATE(224), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(224), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [933] = { + [sym__getline_exp] = STATE(1447), + [sym_getline_input] = STATE(1447), + [sym_getline_file] = STATE(1447), + [sym__exp] = STATE(1447), + [sym_ternary_exp] = STATE(1447), + [sym_binary_exp] = STATE(1447), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1447), + [sym_update_exp] = STATE(1447), + [sym_assignment_exp] = STATE(1447), + [sym_piped_io_exp] = STATE(1447), + [sym_string_concat] = STATE(1447), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1447), + [sym_regex_constant] = STATE(1447), + [sym_grouping] = STATE(1447), + [sym__primitive] = STATE(1447), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1447), + [sym_string] = STATE(1447), + [sym_func_call] = STATE(1447), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1447), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [934] = { + [sym__getline_exp] = STATE(534), + [sym_getline_input] = STATE(534), + [sym_getline_file] = STATE(534), + [sym__exp] = STATE(534), + [sym_ternary_exp] = STATE(534), + [sym_binary_exp] = STATE(534), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(534), + [sym_update_exp] = STATE(534), + [sym_assignment_exp] = STATE(534), + [sym_piped_io_exp] = STATE(534), + [sym_string_concat] = STATE(534), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(534), + [sym_regex_constant] = STATE(534), + [sym_grouping] = STATE(534), + [sym__primitive] = STATE(534), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(534), + [sym_string] = STATE(534), + [sym_func_call] = STATE(534), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(534), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [935] = { + [sym__getline_exp] = STATE(504), + [sym_getline_input] = STATE(504), + [sym_getline_file] = STATE(504), + [sym__exp] = STATE(504), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(504), + [sym_assignment_exp] = STATE(504), + [sym_piped_io_exp] = STATE(504), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(504), + [sym_regex_constant] = STATE(504), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(504), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [936] = { + [sym__getline_exp] = STATE(505), + [sym_getline_input] = STATE(505), + [sym_getline_file] = STATE(505), + [sym__exp] = STATE(505), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(505), + [sym_assignment_exp] = STATE(505), + [sym_piped_io_exp] = STATE(505), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(505), + [sym_regex_constant] = STATE(505), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(505), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [937] = { + [sym__getline_exp] = STATE(2006), + [sym_getline_input] = STATE(2006), + [sym_getline_file] = STATE(2006), + [sym__exp] = STATE(2006), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2006), + [sym_assignment_exp] = STATE(2006), + [sym_piped_io_exp] = STATE(2006), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2006), + [sym_regex_constant] = STATE(2006), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2006), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [938] = { + [sym__getline_exp] = STATE(2003), + [sym_getline_input] = STATE(2003), + [sym_getline_file] = STATE(2003), + [sym__exp] = STATE(2003), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2003), + [sym_assignment_exp] = STATE(2003), + [sym_piped_io_exp] = STATE(2003), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2003), + [sym_regex_constant] = STATE(2003), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2003), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [939] = { + [sym__getline_exp] = STATE(440), + [sym_getline_input] = STATE(440), + [sym_getline_file] = STATE(440), + [sym__exp] = STATE(440), + [sym_ternary_exp] = STATE(440), + [sym_binary_exp] = STATE(440), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(440), + [sym_update_exp] = STATE(440), + [sym_assignment_exp] = STATE(440), + [sym_piped_io_exp] = STATE(440), + [sym_string_concat] = STATE(440), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(440), + [sym_regex_constant] = STATE(440), + [sym_grouping] = STATE(440), + [sym__primitive] = STATE(440), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(440), + [sym_string] = STATE(440), + [sym_func_call] = STATE(440), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(440), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [940] = { + [sym__getline_exp] = STATE(1841), + [sym_getline_input] = STATE(1841), + [sym_getline_file] = STATE(1841), + [sym__exp] = STATE(1841), + [sym_ternary_exp] = STATE(1841), + [sym_binary_exp] = STATE(1841), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1841), + [sym_update_exp] = STATE(1841), + [sym_assignment_exp] = STATE(1841), + [sym_piped_io_exp] = STATE(1841), + [sym_string_concat] = STATE(1841), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1841), + [sym_regex_constant] = STATE(1841), + [sym_grouping] = STATE(1841), + [sym__primitive] = STATE(1841), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1841), + [sym_string] = STATE(1841), + [sym_func_call] = STATE(1841), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1841), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [941] = { + [sym__getline_exp] = STATE(1443), + [sym_getline_input] = STATE(1443), + [sym_getline_file] = STATE(1443), + [sym__exp] = STATE(1443), + [sym_ternary_exp] = STATE(1443), + [sym_binary_exp] = STATE(1443), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1443), + [sym_update_exp] = STATE(1443), + [sym_assignment_exp] = STATE(1443), + [sym_piped_io_exp] = STATE(1443), + [sym_string_concat] = STATE(1443), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1443), + [sym_regex_constant] = STATE(1443), + [sym_grouping] = STATE(1443), + [sym__primitive] = STATE(1443), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1443), + [sym_string] = STATE(1443), + [sym_func_call] = STATE(1443), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1443), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [942] = { + [sym__getline_exp] = STATE(1716), + [sym_getline_input] = STATE(1716), + [sym_getline_file] = STATE(1716), + [sym__exp] = STATE(1716), + [sym_ternary_exp] = STATE(1716), + [sym_binary_exp] = STATE(1716), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1716), + [sym_update_exp] = STATE(1716), + [sym_assignment_exp] = STATE(1716), + [sym_piped_io_exp] = STATE(1716), + [sym_string_concat] = STATE(1716), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1716), + [sym_regex_constant] = STATE(1716), + [sym_grouping] = STATE(1716), + [sym__primitive] = STATE(1716), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1716), + [sym_string] = STATE(1716), + [sym_func_call] = STATE(1716), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1716), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [943] = { + [sym__getline_exp] = STATE(569), + [sym_getline_input] = STATE(569), + [sym_getline_file] = STATE(569), + [sym__exp] = STATE(569), + [sym_ternary_exp] = STATE(569), + [sym_binary_exp] = STATE(569), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(569), + [sym_update_exp] = STATE(569), + [sym_assignment_exp] = STATE(569), + [sym_piped_io_exp] = STATE(569), + [sym_string_concat] = STATE(569), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(569), + [sym_regex_constant] = STATE(569), + [sym_grouping] = STATE(569), + [sym__primitive] = STATE(569), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(569), + [sym_string] = STATE(569), + [sym_func_call] = STATE(569), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(569), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [944] = { + [sym__getline_exp] = STATE(615), + [sym_getline_input] = STATE(615), + [sym_getline_file] = STATE(615), + [sym__exp] = STATE(615), + [sym_ternary_exp] = STATE(580), + [sym_binary_exp] = STATE(580), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(580), + [sym_update_exp] = STATE(615), + [sym_assignment_exp] = STATE(615), + [sym_piped_io_exp] = STATE(615), + [sym_string_concat] = STATE(580), + [sym_field_ref] = STATE(498), + [sym_array_ref] = STATE(490), + [sym_regex] = STATE(615), + [sym_regex_constant] = STATE(615), + [sym_grouping] = STATE(580), + [sym__primitive] = STATE(580), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(403), + [sym_number] = STATE(580), + [sym_string] = STATE(580), + [sym_func_call] = STATE(580), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(615), + [sym_identifier] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(23), + [anon_sym_DASH_DASH] = ACTIONS(23), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1792), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [945] = { + [sym__getline_exp] = STATE(1942), + [sym_getline_input] = STATE(1942), + [sym_getline_file] = STATE(1942), + [sym__exp] = STATE(1942), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1942), + [sym_assignment_exp] = STATE(1942), + [sym_piped_io_exp] = STATE(1942), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1942), + [sym_regex_constant] = STATE(1942), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1942), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [946] = { + [sym__getline_exp] = STATE(1853), + [sym_getline_input] = STATE(1853), + [sym_getline_file] = STATE(1853), + [sym__exp] = STATE(1853), + [sym_ternary_exp] = STATE(1853), + [sym_binary_exp] = STATE(1853), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1853), + [sym_update_exp] = STATE(1853), + [sym_assignment_exp] = STATE(1853), + [sym_piped_io_exp] = STATE(1853), + [sym_string_concat] = STATE(1853), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1853), + [sym_regex_constant] = STATE(1853), + [sym_grouping] = STATE(1853), + [sym__primitive] = STATE(1853), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1853), + [sym_string] = STATE(1853), + [sym_func_call] = STATE(1853), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1853), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [947] = { + [sym__getline_exp] = STATE(1871), + [sym_getline_input] = STATE(1871), + [sym_getline_file] = STATE(1871), + [sym__exp] = STATE(1871), + [sym_ternary_exp] = STATE(1871), + [sym_binary_exp] = STATE(1871), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1871), + [sym_update_exp] = STATE(1871), + [sym_assignment_exp] = STATE(1871), + [sym_piped_io_exp] = STATE(1871), + [sym_string_concat] = STATE(1871), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1871), + [sym_regex_constant] = STATE(1871), + [sym_grouping] = STATE(1871), + [sym__primitive] = STATE(1871), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1871), + [sym_string] = STATE(1871), + [sym_func_call] = STATE(1871), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1871), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [948] = { + [sym__getline_exp] = STATE(274), + [sym_getline_input] = STATE(274), + [sym_getline_file] = STATE(274), + [sym__exp] = STATE(274), + [sym_ternary_exp] = STATE(274), + [sym_binary_exp] = STATE(274), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(274), + [sym_update_exp] = STATE(274), + [sym_assignment_exp] = STATE(274), + [sym_piped_io_exp] = STATE(274), + [sym_string_concat] = STATE(274), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(274), + [sym_regex_constant] = STATE(274), + [sym_grouping] = STATE(274), + [sym__primitive] = STATE(274), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(274), + [sym_string] = STATE(274), + [sym_func_call] = STATE(274), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(274), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [949] = { + [sym__getline_exp] = STATE(432), + [sym_getline_input] = STATE(432), + [sym_getline_file] = STATE(432), + [sym__exp] = STATE(432), + [sym_ternary_exp] = STATE(432), + [sym_binary_exp] = STATE(432), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(432), + [sym_update_exp] = STATE(432), + [sym_assignment_exp] = STATE(432), + [sym_piped_io_exp] = STATE(432), + [sym_string_concat] = STATE(432), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(432), + [sym_regex_constant] = STATE(432), + [sym_grouping] = STATE(432), + [sym__primitive] = STATE(432), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(432), + [sym_string] = STATE(432), + [sym_func_call] = STATE(432), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(432), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [950] = { + [sym__getline_exp] = STATE(528), + [sym_getline_input] = STATE(528), + [sym_getline_file] = STATE(528), + [sym__exp] = STATE(528), + [sym_ternary_exp] = STATE(528), + [sym_binary_exp] = STATE(528), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(528), + [sym_update_exp] = STATE(528), + [sym_assignment_exp] = STATE(528), + [sym_piped_io_exp] = STATE(528), + [sym_string_concat] = STATE(528), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(528), + [sym_regex_constant] = STATE(528), + [sym_grouping] = STATE(528), + [sym__primitive] = STATE(528), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(528), + [sym_string] = STATE(528), + [sym_func_call] = STATE(528), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(528), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [951] = { + [sym__getline_exp] = STATE(1984), + [sym_getline_input] = STATE(1984), + [sym_getline_file] = STATE(1984), + [sym__exp] = STATE(1984), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1984), + [sym_assignment_exp] = STATE(1984), + [sym_piped_io_exp] = STATE(1984), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1984), + [sym_regex_constant] = STATE(1984), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1984), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [952] = { + [sym__getline_exp] = STATE(1536), + [sym_getline_input] = STATE(1536), + [sym_getline_file] = STATE(1536), + [sym__exp] = STATE(1536), + [sym_ternary_exp] = STATE(1536), + [sym_binary_exp] = STATE(1536), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1536), + [sym_update_exp] = STATE(1536), + [sym_assignment_exp] = STATE(1536), + [sym_piped_io_exp] = STATE(1536), + [sym_string_concat] = STATE(1536), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1536), + [sym_regex_constant] = STATE(1536), + [sym_grouping] = STATE(1536), + [sym__primitive] = STATE(1536), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1536), + [sym_string] = STATE(1536), + [sym_func_call] = STATE(1536), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1536), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [953] = { + [sym__getline_exp] = STATE(1442), + [sym_getline_input] = STATE(1442), + [sym_getline_file] = STATE(1442), + [sym__exp] = STATE(1442), + [sym_ternary_exp] = STATE(1442), + [sym_binary_exp] = STATE(1442), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1442), + [sym_update_exp] = STATE(1442), + [sym_assignment_exp] = STATE(1442), + [sym_piped_io_exp] = STATE(1442), + [sym_string_concat] = STATE(1442), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1442), + [sym_regex_constant] = STATE(1442), + [sym_grouping] = STATE(1442), + [sym__primitive] = STATE(1442), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1442), + [sym_string] = STATE(1442), + [sym_func_call] = STATE(1442), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1442), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [954] = { + [sym__getline_exp] = STATE(1689), + [sym_getline_input] = STATE(1689), + [sym_getline_file] = STATE(1689), + [sym__exp] = STATE(1689), + [sym_ternary_exp] = STATE(1689), + [sym_binary_exp] = STATE(1689), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1689), + [sym_update_exp] = STATE(1689), + [sym_assignment_exp] = STATE(1689), + [sym_piped_io_exp] = STATE(1689), + [sym_string_concat] = STATE(1689), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1689), + [sym_regex_constant] = STATE(1689), + [sym_grouping] = STATE(1689), + [sym__primitive] = STATE(1689), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1689), + [sym_string] = STATE(1689), + [sym_func_call] = STATE(1689), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1689), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [955] = { + [sym__getline_exp] = STATE(405), + [sym_getline_input] = STATE(405), + [sym_getline_file] = STATE(405), + [sym__exp] = STATE(405), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(405), + [sym_assignment_exp] = STATE(405), + [sym_piped_io_exp] = STATE(405), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(405), + [sym_regex_constant] = STATE(405), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(405), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [956] = { + [sym__getline_exp] = STATE(1810), + [sym_getline_input] = STATE(1810), + [sym_getline_file] = STATE(1810), + [sym__exp] = STATE(1810), + [sym_ternary_exp] = STATE(1810), + [sym_binary_exp] = STATE(1810), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1810), + [sym_update_exp] = STATE(1810), + [sym_assignment_exp] = STATE(1810), + [sym_piped_io_exp] = STATE(1810), + [sym_string_concat] = STATE(1810), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1810), + [sym_regex_constant] = STATE(1810), + [sym_grouping] = STATE(1810), + [sym__primitive] = STATE(1810), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1810), + [sym_string] = STATE(1810), + [sym_func_call] = STATE(1810), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1810), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [957] = { + [sym__getline_exp] = STATE(2027), + [sym_getline_input] = STATE(2027), + [sym_getline_file] = STATE(2027), + [sym__exp] = STATE(2027), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2027), + [sym_assignment_exp] = STATE(2027), + [sym_piped_io_exp] = STATE(2027), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2027), + [sym_regex_constant] = STATE(2027), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2027), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [958] = { + [sym__getline_exp] = STATE(525), + [sym_getline_input] = STATE(525), + [sym_getline_file] = STATE(525), + [sym__exp] = STATE(525), + [sym_ternary_exp] = STATE(525), + [sym_binary_exp] = STATE(525), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(525), + [sym_update_exp] = STATE(525), + [sym_assignment_exp] = STATE(525), + [sym_piped_io_exp] = STATE(525), + [sym_string_concat] = STATE(525), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(525), + [sym_regex_constant] = STATE(525), + [sym_grouping] = STATE(525), + [sym__primitive] = STATE(525), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(525), + [sym_string] = STATE(525), + [sym_func_call] = STATE(525), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(525), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [959] = { + [sym__getline_exp] = STATE(1433), + [sym_getline_input] = STATE(1433), + [sym_getline_file] = STATE(1433), + [sym__exp] = STATE(1433), + [sym_ternary_exp] = STATE(1433), + [sym_binary_exp] = STATE(1433), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1433), + [sym_update_exp] = STATE(1433), + [sym_assignment_exp] = STATE(1433), + [sym_piped_io_exp] = STATE(1433), + [sym_string_concat] = STATE(1433), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1433), + [sym_regex_constant] = STATE(1433), + [sym_grouping] = STATE(1433), + [sym__primitive] = STATE(1433), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1433), + [sym_string] = STATE(1433), + [sym_func_call] = STATE(1433), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1433), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [960] = { + [sym__getline_exp] = STATE(1651), + [sym_getline_input] = STATE(1651), + [sym_getline_file] = STATE(1651), + [sym__exp] = STATE(1651), + [sym_ternary_exp] = STATE(1651), + [sym_binary_exp] = STATE(1651), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1651), + [sym_update_exp] = STATE(1651), + [sym_assignment_exp] = STATE(1651), + [sym_piped_io_exp] = STATE(1651), + [sym_string_concat] = STATE(1651), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1651), + [sym_regex_constant] = STATE(1651), + [sym_grouping] = STATE(1651), + [sym__primitive] = STATE(1651), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1651), + [sym_string] = STATE(1651), + [sym_func_call] = STATE(1651), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1651), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [961] = { + [sym__getline_exp] = STATE(523), + [sym_getline_input] = STATE(523), + [sym_getline_file] = STATE(523), + [sym__exp] = STATE(523), + [sym_ternary_exp] = STATE(523), + [sym_binary_exp] = STATE(523), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(523), + [sym_update_exp] = STATE(523), + [sym_assignment_exp] = STATE(523), + [sym_piped_io_exp] = STATE(523), + [sym_string_concat] = STATE(523), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(523), + [sym_regex_constant] = STATE(523), + [sym_grouping] = STATE(523), + [sym__primitive] = STATE(523), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(523), + [sym_string] = STATE(523), + [sym_func_call] = STATE(523), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(523), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [962] = { + [sym__getline_exp] = STATE(2013), + [sym_getline_input] = STATE(2013), + [sym_getline_file] = STATE(2013), + [sym__exp] = STATE(2013), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2013), + [sym_assignment_exp] = STATE(2013), + [sym_piped_io_exp] = STATE(2013), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2013), + [sym_regex_constant] = STATE(2013), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2013), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [963] = { + [sym__getline_exp] = STATE(1703), + [sym_getline_input] = STATE(1703), + [sym_getline_file] = STATE(1703), + [sym__exp] = STATE(1703), + [sym_ternary_exp] = STATE(1703), + [sym_binary_exp] = STATE(1703), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1703), + [sym_update_exp] = STATE(1703), + [sym_assignment_exp] = STATE(1703), + [sym_piped_io_exp] = STATE(1703), + [sym_string_concat] = STATE(1703), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1703), + [sym_regex_constant] = STATE(1703), + [sym_grouping] = STATE(1703), + [sym__primitive] = STATE(1703), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1703), + [sym_string] = STATE(1703), + [sym_func_call] = STATE(1703), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1703), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [964] = { + [sym__getline_exp] = STATE(1539), + [sym_getline_input] = STATE(1539), + [sym_getline_file] = STATE(1539), + [sym__exp] = STATE(1539), + [sym_ternary_exp] = STATE(1539), + [sym_binary_exp] = STATE(1539), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1539), + [sym_update_exp] = STATE(1539), + [sym_assignment_exp] = STATE(1539), + [sym_piped_io_exp] = STATE(1539), + [sym_string_concat] = STATE(1539), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1539), + [sym_regex_constant] = STATE(1539), + [sym_grouping] = STATE(1539), + [sym__primitive] = STATE(1539), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1539), + [sym_string] = STATE(1539), + [sym_func_call] = STATE(1539), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1539), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [965] = { + [sym__getline_exp] = STATE(419), + [sym_getline_input] = STATE(419), + [sym_getline_file] = STATE(419), + [sym__exp] = STATE(419), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(419), + [sym_assignment_exp] = STATE(419), + [sym_piped_io_exp] = STATE(419), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(419), + [sym_regex_constant] = STATE(419), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(419), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [966] = { + [sym__getline_exp] = STATE(1704), + [sym_getline_input] = STATE(1704), + [sym_getline_file] = STATE(1704), + [sym__exp] = STATE(1704), + [sym_ternary_exp] = STATE(1704), + [sym_binary_exp] = STATE(1704), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1704), + [sym_update_exp] = STATE(1704), + [sym_assignment_exp] = STATE(1704), + [sym_piped_io_exp] = STATE(1704), + [sym_string_concat] = STATE(1704), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1704), + [sym_regex_constant] = STATE(1704), + [sym_grouping] = STATE(1704), + [sym__primitive] = STATE(1704), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1704), + [sym_string] = STATE(1704), + [sym_func_call] = STATE(1704), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1704), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [967] = { + [sym__getline_exp] = STATE(630), + [sym_getline_input] = STATE(630), + [sym_getline_file] = STATE(630), + [sym__exp] = STATE(630), + [sym_ternary_exp] = STATE(580), + [sym_binary_exp] = STATE(580), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(580), + [sym_update_exp] = STATE(630), + [sym_assignment_exp] = STATE(630), + [sym_piped_io_exp] = STATE(630), + [sym_string_concat] = STATE(580), + [sym_field_ref] = STATE(498), + [sym_array_ref] = STATE(490), + [sym_regex] = STATE(630), + [sym_regex_constant] = STATE(630), + [sym_grouping] = STATE(580), + [sym__primitive] = STATE(580), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(403), + [sym_number] = STATE(580), + [sym_string] = STATE(580), + [sym_func_call] = STATE(580), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(630), + [sym_identifier] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(23), + [anon_sym_DASH_DASH] = ACTIONS(23), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1792), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [968] = { + [sym__getline_exp] = STATE(1541), + [sym_getline_input] = STATE(1541), + [sym_getline_file] = STATE(1541), + [sym__exp] = STATE(1541), + [sym_ternary_exp] = STATE(1541), + [sym_binary_exp] = STATE(1541), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1541), + [sym_update_exp] = STATE(1541), + [sym_assignment_exp] = STATE(1541), + [sym_piped_io_exp] = STATE(1541), + [sym_string_concat] = STATE(1541), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1541), + [sym_regex_constant] = STATE(1541), + [sym_grouping] = STATE(1541), + [sym__primitive] = STATE(1541), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1541), + [sym_string] = STATE(1541), + [sym_func_call] = STATE(1541), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1541), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [969] = { + [sym__getline_exp] = STATE(598), + [sym_getline_input] = STATE(598), + [sym_getline_file] = STATE(598), + [sym__exp] = STATE(598), + [sym_ternary_exp] = STATE(598), + [sym_binary_exp] = STATE(598), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(598), + [sym_update_exp] = STATE(598), + [sym_assignment_exp] = STATE(598), + [sym_piped_io_exp] = STATE(598), + [sym_string_concat] = STATE(598), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(598), + [sym_regex_constant] = STATE(598), + [sym_grouping] = STATE(598), + [sym__primitive] = STATE(598), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(598), + [sym_string] = STATE(598), + [sym_func_call] = STATE(598), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(598), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [970] = { + [sym__getline_exp] = STATE(427), + [sym_getline_input] = STATE(427), + [sym_getline_file] = STATE(427), + [sym__exp] = STATE(427), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(427), + [sym_assignment_exp] = STATE(427), + [sym_piped_io_exp] = STATE(427), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(427), + [sym_regex_constant] = STATE(427), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(427), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [971] = { + [sym__getline_exp] = STATE(1895), + [sym_getline_input] = STATE(1895), + [sym_getline_file] = STATE(1895), + [sym__exp] = STATE(1895), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1895), + [sym_assignment_exp] = STATE(1895), + [sym_piped_io_exp] = STATE(1895), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1895), + [sym_regex_constant] = STATE(1895), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1895), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [972] = { + [sym__getline_exp] = STATE(479), + [sym_getline_input] = STATE(479), + [sym_getline_file] = STATE(479), + [sym__exp] = STATE(479), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(479), + [sym_assignment_exp] = STATE(479), + [sym_piped_io_exp] = STATE(479), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(479), + [sym_regex_constant] = STATE(479), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(479), + [sym_identifier] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [973] = { + [sym__getline_exp] = STATE(2042), + [sym_getline_input] = STATE(2042), + [sym_getline_file] = STATE(2042), + [sym__exp] = STATE(2042), + [sym_ternary_exp] = STATE(1860), + [sym_binary_exp] = STATE(1860), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1860), + [sym_update_exp] = STATE(2042), + [sym_assignment_exp] = STATE(2042), + [sym_piped_io_exp] = STATE(2042), + [sym_string_concat] = STATE(1860), + [sym_field_ref] = STATE(1549), + [sym_array_ref] = STATE(1519), + [sym_regex] = STATE(2042), + [sym_regex_constant] = STATE(2042), + [sym_grouping] = STATE(1860), + [sym__primitive] = STATE(1860), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1497), + [sym_number] = STATE(1860), + [sym_string] = STATE(1860), + [sym_func_call] = STATE(1860), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2042), + [sym_identifier] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [974] = { + [sym__getline_exp] = STATE(2039), + [sym_getline_input] = STATE(2039), + [sym_getline_file] = STATE(2039), + [sym__exp] = STATE(2039), + [sym_ternary_exp] = STATE(1647), + [sym_binary_exp] = STATE(1647), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1647), + [sym_update_exp] = STATE(2039), + [sym_assignment_exp] = STATE(2039), + [sym_piped_io_exp] = STATE(2039), + [sym_string_concat] = STATE(1647), + [sym_field_ref] = STATE(1394), + [sym_array_ref] = STATE(1349), + [sym_regex] = STATE(2039), + [sym_regex_constant] = STATE(2039), + [sym_grouping] = STATE(1647), + [sym__primitive] = STATE(1647), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1325), + [sym_number] = STATE(1647), + [sym_string] = STATE(1647), + [sym_func_call] = STATE(1647), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(2039), + [sym_identifier] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [975] = { + [sym__getline_exp] = STATE(1740), + [sym_getline_input] = STATE(1740), + [sym_getline_file] = STATE(1740), + [sym__exp] = STATE(1740), + [sym_ternary_exp] = STATE(1740), + [sym_binary_exp] = STATE(1740), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1740), + [sym_update_exp] = STATE(1740), + [sym_assignment_exp] = STATE(1740), + [sym_piped_io_exp] = STATE(1740), + [sym_string_concat] = STATE(1740), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1740), + [sym_regex_constant] = STATE(1740), + [sym_grouping] = STATE(1740), + [sym__primitive] = STATE(1740), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1740), + [sym_string] = STATE(1740), + [sym_func_call] = STATE(1740), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1740), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [976] = { + [sym__getline_exp] = STATE(597), + [sym_getline_input] = STATE(597), + [sym_getline_file] = STATE(597), + [sym__exp] = STATE(597), + [sym_ternary_exp] = STATE(597), + [sym_binary_exp] = STATE(597), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(597), + [sym_update_exp] = STATE(597), + [sym_assignment_exp] = STATE(597), + [sym_piped_io_exp] = STATE(597), + [sym_string_concat] = STATE(597), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(597), + [sym_regex_constant] = STATE(597), + [sym_grouping] = STATE(597), + [sym__primitive] = STATE(597), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(597), + [sym_string] = STATE(597), + [sym_func_call] = STATE(597), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(597), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [977] = { + [sym__getline_exp] = STATE(574), + [sym_getline_input] = STATE(574), + [sym_getline_file] = STATE(574), + [sym__exp] = STATE(574), + [sym_ternary_exp] = STATE(574), + [sym_binary_exp] = STATE(574), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(574), + [sym_update_exp] = STATE(574), + [sym_assignment_exp] = STATE(574), + [sym_piped_io_exp] = STATE(574), + [sym_string_concat] = STATE(574), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(574), + [sym_regex_constant] = STATE(574), + [sym_grouping] = STATE(574), + [sym__primitive] = STATE(574), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(574), + [sym_string] = STATE(574), + [sym_func_call] = STATE(574), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(574), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [978] = { + [sym__getline_exp] = STATE(462), + [sym_getline_input] = STATE(462), + [sym_getline_file] = STATE(462), + [sym__exp] = STATE(462), + [sym_ternary_exp] = STATE(462), + [sym_binary_exp] = STATE(462), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(462), + [sym_update_exp] = STATE(462), + [sym_assignment_exp] = STATE(462), + [sym_piped_io_exp] = STATE(462), + [sym_string_concat] = STATE(462), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(462), + [sym_regex_constant] = STATE(462), + [sym_grouping] = STATE(462), + [sym__primitive] = STATE(462), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(462), + [sym_string] = STATE(462), + [sym_func_call] = STATE(462), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(462), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [979] = { + [sym__getline_exp] = STATE(1672), + [sym_getline_input] = STATE(1672), + [sym_getline_file] = STATE(1672), + [sym__exp] = STATE(1672), + [sym_ternary_exp] = STATE(1672), + [sym_binary_exp] = STATE(1672), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1672), + [sym_update_exp] = STATE(1672), + [sym_assignment_exp] = STATE(1672), + [sym_piped_io_exp] = STATE(1672), + [sym_string_concat] = STATE(1672), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1672), + [sym_regex_constant] = STATE(1672), + [sym_grouping] = STATE(1672), + [sym__primitive] = STATE(1672), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1672), + [sym_string] = STATE(1672), + [sym_func_call] = STATE(1672), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1672), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [980] = { + [sym__getline_exp] = STATE(1961), + [sym_getline_input] = STATE(1961), + [sym_getline_file] = STATE(1961), + [sym__exp] = STATE(1961), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1961), + [sym_assignment_exp] = STATE(1961), + [sym_piped_io_exp] = STATE(1961), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1961), + [sym_regex_constant] = STATE(1961), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1961), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [981] = { + [sym__getline_exp] = STATE(2000), + [sym_getline_input] = STATE(2000), + [sym_getline_file] = STATE(2000), + [sym__exp] = STATE(2000), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2000), + [sym_assignment_exp] = STATE(2000), + [sym_piped_io_exp] = STATE(2000), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2000), + [sym_regex_constant] = STATE(2000), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2000), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [982] = { + [sym__getline_exp] = STATE(396), + [sym_getline_input] = STATE(396), + [sym_getline_file] = STATE(396), + [sym__exp] = STATE(396), + [sym_ternary_exp] = STATE(350), + [sym_binary_exp] = STATE(350), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(350), + [sym_update_exp] = STATE(396), + [sym_assignment_exp] = STATE(396), + [sym_piped_io_exp] = STATE(396), + [sym_string_concat] = STATE(350), + [sym_field_ref] = STATE(226), + [sym_array_ref] = STATE(192), + [sym_regex] = STATE(396), + [sym_regex_constant] = STATE(396), + [sym_grouping] = STATE(350), + [sym__primitive] = STATE(350), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(182), + [sym_number] = STATE(350), + [sym_string] = STATE(350), + [sym_func_call] = STATE(350), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(396), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [983] = { + [sym__getline_exp] = STATE(1428), + [sym_getline_input] = STATE(1428), + [sym_getline_file] = STATE(1428), + [sym__exp] = STATE(1428), + [sym_ternary_exp] = STATE(1428), + [sym_binary_exp] = STATE(1428), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1428), + [sym_update_exp] = STATE(1428), + [sym_assignment_exp] = STATE(1428), + [sym_piped_io_exp] = STATE(1428), + [sym_string_concat] = STATE(1428), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1428), + [sym_regex_constant] = STATE(1428), + [sym_grouping] = STATE(1428), + [sym__primitive] = STATE(1428), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1428), + [sym_string] = STATE(1428), + [sym_func_call] = STATE(1428), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1428), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [984] = { + [sym__getline_exp] = STATE(1835), + [sym_getline_input] = STATE(1835), + [sym_getline_file] = STATE(1835), + [sym__exp] = STATE(1835), + [sym_ternary_exp] = STATE(1835), + [sym_binary_exp] = STATE(1835), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1835), + [sym_update_exp] = STATE(1835), + [sym_assignment_exp] = STATE(1835), + [sym_piped_io_exp] = STATE(1835), + [sym_string_concat] = STATE(1835), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1835), + [sym_regex_constant] = STATE(1835), + [sym_grouping] = STATE(1835), + [sym__primitive] = STATE(1835), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1835), + [sym_string] = STATE(1835), + [sym_func_call] = STATE(1835), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1835), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [985] = { + [sym__getline_exp] = STATE(1742), + [sym_getline_input] = STATE(1742), + [sym_getline_file] = STATE(1742), + [sym__exp] = STATE(1742), + [sym_ternary_exp] = STATE(1742), + [sym_binary_exp] = STATE(1742), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1742), + [sym_update_exp] = STATE(1742), + [sym_assignment_exp] = STATE(1742), + [sym_piped_io_exp] = STATE(1742), + [sym_string_concat] = STATE(1742), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1742), + [sym_regex_constant] = STATE(1742), + [sym_grouping] = STATE(1742), + [sym__primitive] = STATE(1742), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1742), + [sym_string] = STATE(1742), + [sym_func_call] = STATE(1742), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1742), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [986] = { + [sym__getline_exp] = STATE(1886), + [sym_getline_input] = STATE(1886), + [sym_getline_file] = STATE(1886), + [sym__exp] = STATE(1886), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1886), + [sym_assignment_exp] = STATE(1886), + [sym_piped_io_exp] = STATE(1886), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1886), + [sym_regex_constant] = STATE(1886), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1886), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [987] = { + [sym__getline_exp] = STATE(1569), + [sym_getline_input] = STATE(1569), + [sym_getline_file] = STATE(1569), + [sym__exp] = STATE(1569), + [sym_ternary_exp] = STATE(1569), + [sym_binary_exp] = STATE(1569), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1569), + [sym_update_exp] = STATE(1569), + [sym_assignment_exp] = STATE(1569), + [sym_piped_io_exp] = STATE(1569), + [sym_string_concat] = STATE(1569), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1569), + [sym_regex_constant] = STATE(1569), + [sym_grouping] = STATE(1569), + [sym__primitive] = STATE(1569), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1569), + [sym_string] = STATE(1569), + [sym_func_call] = STATE(1569), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1569), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [988] = { + [sym__getline_exp] = STATE(212), + [sym_getline_input] = STATE(212), + [sym_getline_file] = STATE(212), + [sym__exp] = STATE(212), + [sym_ternary_exp] = STATE(212), + [sym_binary_exp] = STATE(212), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(212), + [sym_update_exp] = STATE(212), + [sym_assignment_exp] = STATE(212), + [sym_piped_io_exp] = STATE(212), + [sym_string_concat] = STATE(212), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(212), + [sym_regex_constant] = STATE(212), + [sym_grouping] = STATE(212), + [sym__primitive] = STATE(212), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(212), + [sym_string] = STATE(212), + [sym_func_call] = STATE(212), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(212), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [989] = { + [sym_identifier] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_LF] = ACTIONS(1804), + [anon_sym_CR_LF] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [sym_break_statement] = ACTIONS(1804), + [sym_continue_statement] = ACTIONS(1804), + [anon_sym_delete] = ACTIONS(1804), + [anon_sym_exit] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_switch] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_getline] = ACTIONS(1804), + [sym_next_statement] = ACTIONS(1804), + [sym_nextfile_statement] = ACTIONS(1804), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_printf] = ACTIONS(1804), + [anon_sym_GT] = ACTIONS(1806), + [anon_sym_GT_GT] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_AT] = ACTIONS(1804), + [aux_sym_number_token1] = ACTIONS(1804), + [aux_sym_number_token2] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_and] = ACTIONS(1804), + [anon_sym_asort] = ACTIONS(1804), + [anon_sym_asorti] = ACTIONS(1804), + [anon_sym_bindtextdomain] = ACTIONS(1804), + [anon_sym_compl] = ACTIONS(1804), + [anon_sym_cos] = ACTIONS(1804), + [anon_sym_dcgettext] = ACTIONS(1804), + [anon_sym_dcngettext] = ACTIONS(1804), + [anon_sym_exp] = ACTIONS(1804), + [anon_sym_gensub] = ACTIONS(1804), + [anon_sym_gsub] = ACTIONS(1804), + [anon_sym_index] = ACTIONS(1804), + [anon_sym_int] = ACTIONS(1804), + [anon_sym_isarray] = ACTIONS(1804), + [anon_sym_length] = ACTIONS(1804), + [anon_sym_log] = ACTIONS(1804), + [anon_sym_lshift] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_mktime] = ACTIONS(1804), + [anon_sym_or] = ACTIONS(1804), + [anon_sym_patsplit] = ACTIONS(1804), + [anon_sym_rand] = ACTIONS(1804), + [anon_sym_rshift] = ACTIONS(1804), + [anon_sym_sin] = ACTIONS(1804), + [anon_sym_split] = ACTIONS(1804), + [anon_sym_sprintf] = ACTIONS(1804), + [anon_sym_sqrt] = ACTIONS(1804), + [anon_sym_srand] = ACTIONS(1804), + [anon_sym_strftime] = ACTIONS(1804), + [anon_sym_strtonum] = ACTIONS(1804), + [anon_sym_sub] = ACTIONS(1804), + [anon_sym_substr] = ACTIONS(1804), + [anon_sym_systime] = ACTIONS(1804), + [anon_sym_tolower] = ACTIONS(1804), + [anon_sym_toupper] = ACTIONS(1804), + [anon_sym_typeof] = ACTIONS(1804), + [anon_sym_xor] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(1804), + [sym__if_else_separator] = ACTIONS(1810), + }, + [990] = { + [sym__getline_exp] = STATE(2048), + [sym_getline_input] = STATE(2048), + [sym_getline_file] = STATE(2048), + [sym__exp] = STATE(2048), + [sym_ternary_exp] = STATE(356), + [sym_binary_exp] = STATE(356), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(356), + [sym_update_exp] = STATE(2048), + [sym_assignment_exp] = STATE(2048), + [sym_piped_io_exp] = STATE(2048), + [sym_string_concat] = STATE(356), + [sym_field_ref] = STATE(230), + [sym_array_ref] = STATE(187), + [sym_regex] = STATE(2048), + [sym_regex_constant] = STATE(2048), + [sym_grouping] = STATE(356), + [sym__primitive] = STATE(356), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(185), + [sym_number] = STATE(356), + [sym_string] = STATE(356), + [sym_func_call] = STATE(356), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(2048), + [sym_identifier] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [991] = { + [sym__getline_exp] = STATE(1692), + [sym_getline_input] = STATE(1692), + [sym_getline_file] = STATE(1692), + [sym__exp] = STATE(1692), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1692), + [sym_assignment_exp] = STATE(1692), + [sym_piped_io_exp] = STATE(1692), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1692), + [sym_regex_constant] = STATE(1692), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1692), + [sym_identifier] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [992] = { + [sym__getline_exp] = STATE(453), + [sym_getline_input] = STATE(453), + [sym_getline_file] = STATE(453), + [sym__exp] = STATE(453), + [sym_ternary_exp] = STATE(453), + [sym_binary_exp] = STATE(453), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(453), + [sym_update_exp] = STATE(453), + [sym_assignment_exp] = STATE(453), + [sym_piped_io_exp] = STATE(453), + [sym_string_concat] = STATE(453), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(453), + [sym_regex_constant] = STATE(453), + [sym_grouping] = STATE(453), + [sym__primitive] = STATE(453), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(453), + [sym_string] = STATE(453), + [sym_func_call] = STATE(453), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(453), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [993] = { + [sym__getline_exp] = STATE(1953), + [sym_getline_input] = STATE(1953), + [sym_getline_file] = STATE(1953), + [sym__exp] = STATE(1953), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1953), + [sym_assignment_exp] = STATE(1953), + [sym_piped_io_exp] = STATE(1953), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1953), + [sym_regex_constant] = STATE(1953), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1953), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [994] = { + [sym__getline_exp] = STATE(353), + [sym_getline_input] = STATE(353), + [sym_getline_file] = STATE(353), + [sym__exp] = STATE(353), + [sym_ternary_exp] = STATE(353), + [sym_binary_exp] = STATE(353), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(353), + [sym_update_exp] = STATE(353), + [sym_assignment_exp] = STATE(353), + [sym_piped_io_exp] = STATE(353), + [sym_string_concat] = STATE(353), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(353), + [sym_regex_constant] = STATE(353), + [sym_grouping] = STATE(353), + [sym__primitive] = STATE(353), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(353), + [sym_string] = STATE(353), + [sym_func_call] = STATE(353), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(353), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [995] = { + [sym__getline_exp] = STATE(352), + [sym_getline_input] = STATE(352), + [sym_getline_file] = STATE(352), + [sym__exp] = STATE(352), + [sym_ternary_exp] = STATE(352), + [sym_binary_exp] = STATE(352), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(352), + [sym_update_exp] = STATE(352), + [sym_assignment_exp] = STATE(352), + [sym_piped_io_exp] = STATE(352), + [sym_string_concat] = STATE(352), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(352), + [sym_regex_constant] = STATE(352), + [sym_grouping] = STATE(352), + [sym__primitive] = STATE(352), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(352), + [sym_string] = STATE(352), + [sym_func_call] = STATE(352), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(352), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [996] = { + [sym__getline_exp] = STATE(349), + [sym_getline_input] = STATE(349), + [sym_getline_file] = STATE(349), + [sym__exp] = STATE(349), + [sym_ternary_exp] = STATE(349), + [sym_binary_exp] = STATE(349), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(349), + [sym_update_exp] = STATE(349), + [sym_assignment_exp] = STATE(349), + [sym_piped_io_exp] = STATE(349), + [sym_string_concat] = STATE(349), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(349), + [sym_regex_constant] = STATE(349), + [sym_grouping] = STATE(349), + [sym__primitive] = STATE(349), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(349), + [sym_string] = STATE(349), + [sym_func_call] = STATE(349), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(349), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [997] = { + [sym__getline_exp] = STATE(348), + [sym_getline_input] = STATE(348), + [sym_getline_file] = STATE(348), + [sym__exp] = STATE(348), + [sym_ternary_exp] = STATE(348), + [sym_binary_exp] = STATE(348), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(348), + [sym_update_exp] = STATE(348), + [sym_assignment_exp] = STATE(348), + [sym_piped_io_exp] = STATE(348), + [sym_string_concat] = STATE(348), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(348), + [sym_regex_constant] = STATE(348), + [sym_grouping] = STATE(348), + [sym__primitive] = STATE(348), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(348), + [sym_string] = STATE(348), + [sym_func_call] = STATE(348), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(348), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [998] = { + [sym__getline_exp] = STATE(347), + [sym_getline_input] = STATE(347), + [sym_getline_file] = STATE(347), + [sym__exp] = STATE(347), + [sym_ternary_exp] = STATE(347), + [sym_binary_exp] = STATE(347), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(347), + [sym_update_exp] = STATE(347), + [sym_assignment_exp] = STATE(347), + [sym_piped_io_exp] = STATE(347), + [sym_string_concat] = STATE(347), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(347), + [sym_regex_constant] = STATE(347), + [sym_grouping] = STATE(347), + [sym__primitive] = STATE(347), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(347), + [sym_string] = STATE(347), + [sym_func_call] = STATE(347), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(347), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [999] = { + [sym__getline_exp] = STATE(346), + [sym_getline_input] = STATE(346), + [sym_getline_file] = STATE(346), + [sym__exp] = STATE(346), + [sym_ternary_exp] = STATE(346), + [sym_binary_exp] = STATE(346), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(346), + [sym_update_exp] = STATE(346), + [sym_assignment_exp] = STATE(346), + [sym_piped_io_exp] = STATE(346), + [sym_string_concat] = STATE(346), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(346), + [sym_regex_constant] = STATE(346), + [sym_grouping] = STATE(346), + [sym__primitive] = STATE(346), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(346), + [sym_string] = STATE(346), + [sym_func_call] = STATE(346), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(346), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [1000] = { + [sym__getline_exp] = STATE(335), + [sym_getline_input] = STATE(335), + [sym_getline_file] = STATE(335), + [sym__exp] = STATE(335), + [sym_ternary_exp] = STATE(335), + [sym_binary_exp] = STATE(335), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(335), + [sym_update_exp] = STATE(335), + [sym_assignment_exp] = STATE(335), + [sym_piped_io_exp] = STATE(335), + [sym_string_concat] = STATE(335), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(335), + [sym_regex_constant] = STATE(335), + [sym_grouping] = STATE(335), + [sym__primitive] = STATE(335), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(335), + [sym_string] = STATE(335), + [sym_func_call] = STATE(335), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(335), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [1001] = { + [sym__getline_exp] = STATE(344), + [sym_getline_input] = STATE(344), + [sym_getline_file] = STATE(344), + [sym__exp] = STATE(344), + [sym_ternary_exp] = STATE(344), + [sym_binary_exp] = STATE(344), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(344), + [sym_update_exp] = STATE(344), + [sym_assignment_exp] = STATE(344), + [sym_piped_io_exp] = STATE(344), + [sym_string_concat] = STATE(344), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(344), + [sym_regex_constant] = STATE(344), + [sym_grouping] = STATE(344), + [sym__primitive] = STATE(344), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(344), + [sym_string] = STATE(344), + [sym_func_call] = STATE(344), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(344), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [1002] = { + [sym__getline_exp] = STATE(1744), + [sym_getline_input] = STATE(1744), + [sym_getline_file] = STATE(1744), + [sym__exp] = STATE(1744), + [sym_ternary_exp] = STATE(1744), + [sym_binary_exp] = STATE(1744), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1744), + [sym_update_exp] = STATE(1744), + [sym_assignment_exp] = STATE(1744), + [sym_piped_io_exp] = STATE(1744), + [sym_string_concat] = STATE(1744), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1744), + [sym_regex_constant] = STATE(1744), + [sym_grouping] = STATE(1744), + [sym__primitive] = STATE(1744), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1744), + [sym_string] = STATE(1744), + [sym_func_call] = STATE(1744), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1744), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1003] = { + [sym__getline_exp] = STATE(502), + [sym_getline_input] = STATE(502), + [sym_getline_file] = STATE(502), + [sym__exp] = STATE(502), + [sym_ternary_exp] = STATE(502), + [sym_binary_exp] = STATE(502), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(502), + [sym_update_exp] = STATE(502), + [sym_assignment_exp] = STATE(502), + [sym_piped_io_exp] = STATE(502), + [sym_string_concat] = STATE(502), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(502), + [sym_regex_constant] = STATE(502), + [sym_grouping] = STATE(502), + [sym__primitive] = STATE(502), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(502), + [sym_string] = STATE(502), + [sym_func_call] = STATE(502), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(502), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [1004] = { + [sym__getline_exp] = STATE(434), + [sym_getline_input] = STATE(434), + [sym_getline_file] = STATE(434), + [sym__exp] = STATE(434), + [sym_ternary_exp] = STATE(434), + [sym_binary_exp] = STATE(434), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(434), + [sym_update_exp] = STATE(434), + [sym_assignment_exp] = STATE(434), + [sym_piped_io_exp] = STATE(434), + [sym_string_concat] = STATE(434), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(434), + [sym_regex_constant] = STATE(434), + [sym_grouping] = STATE(434), + [sym__primitive] = STATE(434), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(434), + [sym_string] = STATE(434), + [sym_func_call] = STATE(434), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(434), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1005] = { + [sym__getline_exp] = STATE(596), + [sym_getline_input] = STATE(596), + [sym_getline_file] = STATE(596), + [sym__exp] = STATE(596), + [sym_ternary_exp] = STATE(596), + [sym_binary_exp] = STATE(596), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(596), + [sym_update_exp] = STATE(596), + [sym_assignment_exp] = STATE(596), + [sym_piped_io_exp] = STATE(596), + [sym_string_concat] = STATE(596), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(596), + [sym_regex_constant] = STATE(596), + [sym_grouping] = STATE(596), + [sym__primitive] = STATE(596), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(596), + [sym_string] = STATE(596), + [sym_func_call] = STATE(596), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(596), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [1006] = { + [sym__getline_exp] = STATE(595), + [sym_getline_input] = STATE(595), + [sym_getline_file] = STATE(595), + [sym__exp] = STATE(595), + [sym_ternary_exp] = STATE(595), + [sym_binary_exp] = STATE(595), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(595), + [sym_update_exp] = STATE(595), + [sym_assignment_exp] = STATE(595), + [sym_piped_io_exp] = STATE(595), + [sym_string_concat] = STATE(595), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(595), + [sym_regex_constant] = STATE(595), + [sym_grouping] = STATE(595), + [sym__primitive] = STATE(595), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(595), + [sym_string] = STATE(595), + [sym_func_call] = STATE(595), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(595), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [1007] = { + [sym__getline_exp] = STATE(1505), + [sym_getline_input] = STATE(1505), + [sym_getline_file] = STATE(1505), + [sym__exp] = STATE(1505), + [sym_ternary_exp] = STATE(1505), + [sym_binary_exp] = STATE(1505), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1505), + [sym_update_exp] = STATE(1505), + [sym_assignment_exp] = STATE(1505), + [sym_piped_io_exp] = STATE(1505), + [sym_string_concat] = STATE(1505), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1505), + [sym_regex_constant] = STATE(1505), + [sym_grouping] = STATE(1505), + [sym__primitive] = STATE(1505), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1505), + [sym_string] = STATE(1505), + [sym_func_call] = STATE(1505), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1505), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1008] = { + [sym__getline_exp] = STATE(1664), + [sym_getline_input] = STATE(1664), + [sym_getline_file] = STATE(1664), + [sym__exp] = STATE(1664), + [sym_ternary_exp] = STATE(1664), + [sym_binary_exp] = STATE(1664), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1664), + [sym_update_exp] = STATE(1664), + [sym_assignment_exp] = STATE(1664), + [sym_piped_io_exp] = STATE(1664), + [sym_string_concat] = STATE(1664), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1664), + [sym_regex_constant] = STATE(1664), + [sym_grouping] = STATE(1664), + [sym__primitive] = STATE(1664), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1664), + [sym_string] = STATE(1664), + [sym_func_call] = STATE(1664), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1664), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1009] = { + [sym__getline_exp] = STATE(1749), + [sym_getline_input] = STATE(1749), + [sym_getline_file] = STATE(1749), + [sym__exp] = STATE(1749), + [sym_ternary_exp] = STATE(1749), + [sym_binary_exp] = STATE(1749), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1749), + [sym_update_exp] = STATE(1749), + [sym_assignment_exp] = STATE(1749), + [sym_piped_io_exp] = STATE(1749), + [sym_string_concat] = STATE(1749), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1749), + [sym_regex_constant] = STATE(1749), + [sym_grouping] = STATE(1749), + [sym__primitive] = STATE(1749), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1749), + [sym_string] = STATE(1749), + [sym_func_call] = STATE(1749), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1749), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1010] = { + [sym__getline_exp] = STATE(1751), + [sym_getline_input] = STATE(1751), + [sym_getline_file] = STATE(1751), + [sym__exp] = STATE(1751), + [sym_ternary_exp] = STATE(1751), + [sym_binary_exp] = STATE(1751), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1751), + [sym_update_exp] = STATE(1751), + [sym_assignment_exp] = STATE(1751), + [sym_piped_io_exp] = STATE(1751), + [sym_string_concat] = STATE(1751), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1751), + [sym_regex_constant] = STATE(1751), + [sym_grouping] = STATE(1751), + [sym__primitive] = STATE(1751), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1751), + [sym_string] = STATE(1751), + [sym_func_call] = STATE(1751), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1751), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1011] = { + [sym__getline_exp] = STATE(594), + [sym_getline_input] = STATE(594), + [sym_getline_file] = STATE(594), + [sym__exp] = STATE(594), + [sym_ternary_exp] = STATE(594), + [sym_binary_exp] = STATE(594), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(594), + [sym_update_exp] = STATE(594), + [sym_assignment_exp] = STATE(594), + [sym_piped_io_exp] = STATE(594), + [sym_string_concat] = STATE(594), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(594), + [sym_regex_constant] = STATE(594), + [sym_grouping] = STATE(594), + [sym__primitive] = STATE(594), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(594), + [sym_string] = STATE(594), + [sym_func_call] = STATE(594), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(594), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [1012] = { + [sym__getline_exp] = STATE(621), + [sym_getline_input] = STATE(621), + [sym_getline_file] = STATE(621), + [sym__exp] = STATE(621), + [sym_ternary_exp] = STATE(580), + [sym_binary_exp] = STATE(580), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(580), + [sym_update_exp] = STATE(621), + [sym_assignment_exp] = STATE(621), + [sym_piped_io_exp] = STATE(621), + [sym_string_concat] = STATE(580), + [sym_field_ref] = STATE(498), + [sym_array_ref] = STATE(490), + [sym_regex] = STATE(621), + [sym_regex_constant] = STATE(621), + [sym_grouping] = STATE(580), + [sym__primitive] = STATE(580), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(403), + [sym_number] = STATE(580), + [sym_string] = STATE(580), + [sym_func_call] = STATE(580), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(621), + [sym_identifier] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(23), + [anon_sym_DASH_DASH] = ACTIONS(23), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1792), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [1013] = { + [sym__getline_exp] = STATE(1752), + [sym_getline_input] = STATE(1752), + [sym_getline_file] = STATE(1752), + [sym__exp] = STATE(1752), + [sym_ternary_exp] = STATE(1752), + [sym_binary_exp] = STATE(1752), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1752), + [sym_update_exp] = STATE(1752), + [sym_assignment_exp] = STATE(1752), + [sym_piped_io_exp] = STATE(1752), + [sym_string_concat] = STATE(1752), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1752), + [sym_regex_constant] = STATE(1752), + [sym_grouping] = STATE(1752), + [sym__primitive] = STATE(1752), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1752), + [sym_string] = STATE(1752), + [sym_func_call] = STATE(1752), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1752), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1014] = { + [sym__getline_exp] = STATE(588), + [sym_getline_input] = STATE(588), + [sym_getline_file] = STATE(588), + [sym__exp] = STATE(588), + [sym_ternary_exp] = STATE(588), + [sym_binary_exp] = STATE(588), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(588), + [sym_update_exp] = STATE(588), + [sym_assignment_exp] = STATE(588), + [sym_piped_io_exp] = STATE(588), + [sym_string_concat] = STATE(588), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(588), + [sym_regex_constant] = STATE(588), + [sym_grouping] = STATE(588), + [sym__primitive] = STATE(588), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(588), + [sym_string] = STATE(588), + [sym_func_call] = STATE(588), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(588), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [1015] = { + [sym__getline_exp] = STATE(1956), + [sym_getline_input] = STATE(1956), + [sym_getline_file] = STATE(1956), + [sym__exp] = STATE(1956), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1956), + [sym_assignment_exp] = STATE(1956), + [sym_piped_io_exp] = STATE(1956), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1956), + [sym_regex_constant] = STATE(1956), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1956), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1016] = { + [sym__getline_exp] = STATE(474), + [sym_getline_input] = STATE(474), + [sym_getline_file] = STATE(474), + [sym__exp] = STATE(474), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(474), + [sym_assignment_exp] = STATE(474), + [sym_piped_io_exp] = STATE(474), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(474), + [sym_regex_constant] = STATE(474), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(474), + [sym_identifier] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1017] = { + [sym__getline_exp] = STATE(587), + [sym_getline_input] = STATE(587), + [sym_getline_file] = STATE(587), + [sym__exp] = STATE(587), + [sym_ternary_exp] = STATE(587), + [sym_binary_exp] = STATE(587), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(587), + [sym_update_exp] = STATE(587), + [sym_assignment_exp] = STATE(587), + [sym_piped_io_exp] = STATE(587), + [sym_string_concat] = STATE(587), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(587), + [sym_regex_constant] = STATE(587), + [sym_grouping] = STATE(587), + [sym__primitive] = STATE(587), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(587), + [sym_string] = STATE(587), + [sym_func_call] = STATE(587), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(587), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [1018] = { + [sym__getline_exp] = STATE(586), + [sym_getline_input] = STATE(586), + [sym_getline_file] = STATE(586), + [sym__exp] = STATE(586), + [sym_ternary_exp] = STATE(586), + [sym_binary_exp] = STATE(586), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(586), + [sym_update_exp] = STATE(586), + [sym_assignment_exp] = STATE(586), + [sym_piped_io_exp] = STATE(586), + [sym_string_concat] = STATE(586), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(586), + [sym_regex_constant] = STATE(586), + [sym_grouping] = STATE(586), + [sym__primitive] = STATE(586), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(586), + [sym_string] = STATE(586), + [sym_func_call] = STATE(586), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(586), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [1019] = { + [sym__getline_exp] = STATE(1813), + [sym_getline_input] = STATE(1813), + [sym_getline_file] = STATE(1813), + [sym__exp] = STATE(1813), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1813), + [sym_assignment_exp] = STATE(1813), + [sym_piped_io_exp] = STATE(1813), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1813), + [sym_regex_constant] = STATE(1813), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1813), + [sym_identifier] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1020] = { + [sym__getline_exp] = STATE(1504), + [sym_getline_input] = STATE(1504), + [sym_getline_file] = STATE(1504), + [sym__exp] = STATE(1504), + [sym_ternary_exp] = STATE(1504), + [sym_binary_exp] = STATE(1504), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1504), + [sym_update_exp] = STATE(1504), + [sym_assignment_exp] = STATE(1504), + [sym_piped_io_exp] = STATE(1504), + [sym_string_concat] = STATE(1504), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1504), + [sym_regex_constant] = STATE(1504), + [sym_grouping] = STATE(1504), + [sym__primitive] = STATE(1504), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1504), + [sym_string] = STATE(1504), + [sym_func_call] = STATE(1504), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1504), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1021] = { + [sym__getline_exp] = STATE(1403), + [sym_getline_input] = STATE(1403), + [sym_getline_file] = STATE(1403), + [sym__exp] = STATE(1403), + [sym_ternary_exp] = STATE(1403), + [sym_binary_exp] = STATE(1403), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1403), + [sym_update_exp] = STATE(1403), + [sym_assignment_exp] = STATE(1403), + [sym_piped_io_exp] = STATE(1403), + [sym_string_concat] = STATE(1403), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1403), + [sym_regex_constant] = STATE(1403), + [sym_grouping] = STATE(1403), + [sym__primitive] = STATE(1403), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1403), + [sym_string] = STATE(1403), + [sym_func_call] = STATE(1403), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1403), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1022] = { + [sym__getline_exp] = STATE(1687), + [sym_getline_input] = STATE(1687), + [sym_getline_file] = STATE(1687), + [sym__exp] = STATE(1687), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1687), + [sym_assignment_exp] = STATE(1687), + [sym_piped_io_exp] = STATE(1687), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1687), + [sym_regex_constant] = STATE(1687), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1687), + [sym_identifier] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1023] = { + [sym__getline_exp] = STATE(1512), + [sym_getline_input] = STATE(1512), + [sym_getline_file] = STATE(1512), + [sym__exp] = STATE(1512), + [sym_ternary_exp] = STATE(1512), + [sym_binary_exp] = STATE(1512), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1512), + [sym_update_exp] = STATE(1512), + [sym_assignment_exp] = STATE(1512), + [sym_piped_io_exp] = STATE(1512), + [sym_string_concat] = STATE(1512), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1512), + [sym_regex_constant] = STATE(1512), + [sym_grouping] = STATE(1512), + [sym__primitive] = STATE(1512), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1512), + [sym_string] = STATE(1512), + [sym_func_call] = STATE(1512), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1512), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1024] = { + [sym__getline_exp] = STATE(1528), + [sym_getline_input] = STATE(1528), + [sym_getline_file] = STATE(1528), + [sym__exp] = STATE(1528), + [sym_ternary_exp] = STATE(1528), + [sym_binary_exp] = STATE(1528), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1528), + [sym_update_exp] = STATE(1528), + [sym_assignment_exp] = STATE(1528), + [sym_piped_io_exp] = STATE(1528), + [sym_string_concat] = STATE(1528), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1528), + [sym_regex_constant] = STATE(1528), + [sym_grouping] = STATE(1528), + [sym__primitive] = STATE(1528), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1528), + [sym_string] = STATE(1528), + [sym_func_call] = STATE(1528), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1528), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1025] = { + [sym__getline_exp] = STATE(1420), + [sym_getline_input] = STATE(1420), + [sym_getline_file] = STATE(1420), + [sym__exp] = STATE(1420), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1420), + [sym_assignment_exp] = STATE(1420), + [sym_piped_io_exp] = STATE(1420), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1420), + [sym_regex_constant] = STATE(1420), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1420), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1026] = { + [sym__getline_exp] = STATE(337), + [sym_getline_input] = STATE(337), + [sym_getline_file] = STATE(337), + [sym__exp] = STATE(337), + [sym_ternary_exp] = STATE(337), + [sym_binary_exp] = STATE(337), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(337), + [sym_update_exp] = STATE(337), + [sym_assignment_exp] = STATE(337), + [sym_piped_io_exp] = STATE(337), + [sym_string_concat] = STATE(337), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(337), + [sym_regex_constant] = STATE(337), + [sym_grouping] = STATE(337), + [sym__primitive] = STATE(337), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(337), + [sym_string] = STATE(337), + [sym_func_call] = STATE(337), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(337), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [1027] = { + [sym__getline_exp] = STATE(1959), + [sym_getline_input] = STATE(1959), + [sym_getline_file] = STATE(1959), + [sym__exp] = STATE(1959), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1959), + [sym_assignment_exp] = STATE(1959), + [sym_piped_io_exp] = STATE(1959), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1959), + [sym_regex_constant] = STATE(1959), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1959), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1028] = { + [sym__getline_exp] = STATE(1629), + [sym_getline_input] = STATE(1629), + [sym_getline_file] = STATE(1629), + [sym__exp] = STATE(1629), + [sym_ternary_exp] = STATE(1629), + [sym_binary_exp] = STATE(1629), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1629), + [sym_update_exp] = STATE(1629), + [sym_assignment_exp] = STATE(1629), + [sym_piped_io_exp] = STATE(1629), + [sym_string_concat] = STATE(1629), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1629), + [sym_regex_constant] = STATE(1629), + [sym_grouping] = STATE(1629), + [sym__primitive] = STATE(1629), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1629), + [sym_string] = STATE(1629), + [sym_func_call] = STATE(1629), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1629), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1029] = { + [sym__getline_exp] = STATE(1880), + [sym_getline_input] = STATE(1880), + [sym_getline_file] = STATE(1880), + [sym__exp] = STATE(1880), + [sym_ternary_exp] = STATE(1880), + [sym_binary_exp] = STATE(1880), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1880), + [sym_update_exp] = STATE(1880), + [sym_assignment_exp] = STATE(1880), + [sym_piped_io_exp] = STATE(1880), + [sym_string_concat] = STATE(1880), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1880), + [sym_regex_constant] = STATE(1880), + [sym_grouping] = STATE(1880), + [sym__primitive] = STATE(1880), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1880), + [sym_string] = STATE(1880), + [sym_func_call] = STATE(1880), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1880), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1030] = { + [sym__getline_exp] = STATE(1753), + [sym_getline_input] = STATE(1753), + [sym_getline_file] = STATE(1753), + [sym__exp] = STATE(1753), + [sym_ternary_exp] = STATE(1753), + [sym_binary_exp] = STATE(1753), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1753), + [sym_update_exp] = STATE(1753), + [sym_assignment_exp] = STATE(1753), + [sym_piped_io_exp] = STATE(1753), + [sym_string_concat] = STATE(1753), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1753), + [sym_regex_constant] = STATE(1753), + [sym_grouping] = STATE(1753), + [sym__primitive] = STATE(1753), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1753), + [sym_string] = STATE(1753), + [sym_func_call] = STATE(1753), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1753), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1031] = { + [sym__getline_exp] = STATE(1426), + [sym_getline_input] = STATE(1426), + [sym_getline_file] = STATE(1426), + [sym__exp] = STATE(1426), + [sym_ternary_exp] = STATE(1426), + [sym_binary_exp] = STATE(1426), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1426), + [sym_update_exp] = STATE(1426), + [sym_assignment_exp] = STATE(1426), + [sym_piped_io_exp] = STATE(1426), + [sym_string_concat] = STATE(1426), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1426), + [sym_regex_constant] = STATE(1426), + [sym_grouping] = STATE(1426), + [sym__primitive] = STATE(1426), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1426), + [sym_string] = STATE(1426), + [sym_func_call] = STATE(1426), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1426), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1032] = { + [sym__getline_exp] = STATE(1786), + [sym_getline_input] = STATE(1786), + [sym_getline_file] = STATE(1786), + [sym__exp] = STATE(1786), + [sym_ternary_exp] = STATE(1786), + [sym_binary_exp] = STATE(1786), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1786), + [sym_update_exp] = STATE(1786), + [sym_assignment_exp] = STATE(1786), + [sym_piped_io_exp] = STATE(1786), + [sym_string_concat] = STATE(1786), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1786), + [sym_regex_constant] = STATE(1786), + [sym_grouping] = STATE(1786), + [sym__primitive] = STATE(1786), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1786), + [sym_string] = STATE(1786), + [sym_func_call] = STATE(1786), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1786), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1033] = { + [sym__getline_exp] = STATE(1830), + [sym_getline_input] = STATE(1830), + [sym_getline_file] = STATE(1830), + [sym__exp] = STATE(1830), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1830), + [sym_assignment_exp] = STATE(1830), + [sym_piped_io_exp] = STATE(1830), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1830), + [sym_regex_constant] = STATE(1830), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1830), + [sym_identifier] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1034] = { + [sym__getline_exp] = STATE(1757), + [sym_getline_input] = STATE(1757), + [sym_getline_file] = STATE(1757), + [sym__exp] = STATE(1757), + [sym_ternary_exp] = STATE(1757), + [sym_binary_exp] = STATE(1757), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1757), + [sym_update_exp] = STATE(1757), + [sym_assignment_exp] = STATE(1757), + [sym_piped_io_exp] = STATE(1757), + [sym_string_concat] = STATE(1757), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1757), + [sym_regex_constant] = STATE(1757), + [sym_grouping] = STATE(1757), + [sym__primitive] = STATE(1757), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1757), + [sym_string] = STATE(1757), + [sym_func_call] = STATE(1757), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1757), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1035] = { + [sym__getline_exp] = STATE(1637), + [sym_getline_input] = STATE(1637), + [sym_getline_file] = STATE(1637), + [sym__exp] = STATE(1637), + [sym_ternary_exp] = STATE(1637), + [sym_binary_exp] = STATE(1637), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1637), + [sym_update_exp] = STATE(1637), + [sym_assignment_exp] = STATE(1637), + [sym_piped_io_exp] = STATE(1637), + [sym_string_concat] = STATE(1637), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1637), + [sym_regex_constant] = STATE(1637), + [sym_grouping] = STATE(1637), + [sym__primitive] = STATE(1637), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1637), + [sym_string] = STATE(1637), + [sym_func_call] = STATE(1637), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1637), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1036] = { + [sym__getline_exp] = STATE(1510), + [sym_getline_input] = STATE(1510), + [sym_getline_file] = STATE(1510), + [sym__exp] = STATE(1510), + [sym_ternary_exp] = STATE(1510), + [sym_binary_exp] = STATE(1510), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1510), + [sym_update_exp] = STATE(1510), + [sym_assignment_exp] = STATE(1510), + [sym_piped_io_exp] = STATE(1510), + [sym_string_concat] = STATE(1510), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1510), + [sym_regex_constant] = STATE(1510), + [sym_grouping] = STATE(1510), + [sym__primitive] = STATE(1510), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1510), + [sym_string] = STATE(1510), + [sym_func_call] = STATE(1510), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1510), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1037] = { + [sym__getline_exp] = STATE(1692), + [sym_getline_input] = STATE(1692), + [sym_getline_file] = STATE(1692), + [sym__exp] = STATE(1692), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1692), + [sym_assignment_exp] = STATE(1692), + [sym_piped_io_exp] = STATE(1692), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1692), + [sym_regex_constant] = STATE(1692), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1692), + [sym_identifier] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1038] = { + [sym__getline_exp] = STATE(377), + [sym_getline_input] = STATE(377), + [sym_getline_file] = STATE(377), + [sym__exp] = STATE(377), + [sym_ternary_exp] = STATE(377), + [sym_binary_exp] = STATE(377), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(377), + [sym_update_exp] = STATE(377), + [sym_assignment_exp] = STATE(377), + [sym_piped_io_exp] = STATE(377), + [sym_string_concat] = STATE(377), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(377), + [sym_regex_constant] = STATE(377), + [sym_grouping] = STATE(377), + [sym__primitive] = STATE(377), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(377), + [sym_string] = STATE(377), + [sym_func_call] = STATE(377), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(377), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [1039] = { + [sym__getline_exp] = STATE(1897), + [sym_getline_input] = STATE(1897), + [sym_getline_file] = STATE(1897), + [sym__exp] = STATE(1897), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1897), + [sym_assignment_exp] = STATE(1897), + [sym_piped_io_exp] = STATE(1897), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1897), + [sym_regex_constant] = STATE(1897), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1897), + [sym_identifier] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1040] = { + [sym__getline_exp] = STATE(1380), + [sym_getline_input] = STATE(1380), + [sym_getline_file] = STATE(1380), + [sym__exp] = STATE(1380), + [sym_ternary_exp] = STATE(1380), + [sym_binary_exp] = STATE(1380), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1380), + [sym_update_exp] = STATE(1380), + [sym_assignment_exp] = STATE(1380), + [sym_piped_io_exp] = STATE(1380), + [sym_string_concat] = STATE(1380), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1380), + [sym_regex_constant] = STATE(1380), + [sym_grouping] = STATE(1380), + [sym__primitive] = STATE(1380), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1380), + [sym_string] = STATE(1380), + [sym_func_call] = STATE(1380), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1380), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1041] = { + [sym__getline_exp] = STATE(1377), + [sym_getline_input] = STATE(1377), + [sym_getline_file] = STATE(1377), + [sym__exp] = STATE(1377), + [sym_ternary_exp] = STATE(1377), + [sym_binary_exp] = STATE(1377), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1377), + [sym_update_exp] = STATE(1377), + [sym_assignment_exp] = STATE(1377), + [sym_piped_io_exp] = STATE(1377), + [sym_string_concat] = STATE(1377), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1377), + [sym_regex_constant] = STATE(1377), + [sym_grouping] = STATE(1377), + [sym__primitive] = STATE(1377), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1377), + [sym_string] = STATE(1377), + [sym_func_call] = STATE(1377), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1377), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1042] = { + [sym__getline_exp] = STATE(379), + [sym_getline_input] = STATE(379), + [sym_getline_file] = STATE(379), + [sym__exp] = STATE(379), + [sym_ternary_exp] = STATE(379), + [sym_binary_exp] = STATE(379), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(379), + [sym_update_exp] = STATE(379), + [sym_assignment_exp] = STATE(379), + [sym_piped_io_exp] = STATE(379), + [sym_string_concat] = STATE(379), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(379), + [sym_regex_constant] = STATE(379), + [sym_grouping] = STATE(379), + [sym__primitive] = STATE(379), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(379), + [sym_string] = STATE(379), + [sym_func_call] = STATE(379), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(379), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [1043] = { + [sym__getline_exp] = STATE(1463), + [sym_getline_input] = STATE(1463), + [sym_getline_file] = STATE(1463), + [sym__exp] = STATE(1463), + [sym_ternary_exp] = STATE(1463), + [sym_binary_exp] = STATE(1463), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1463), + [sym_update_exp] = STATE(1463), + [sym_assignment_exp] = STATE(1463), + [sym_piped_io_exp] = STATE(1463), + [sym_string_concat] = STATE(1463), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1463), + [sym_regex_constant] = STATE(1463), + [sym_grouping] = STATE(1463), + [sym__primitive] = STATE(1463), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1463), + [sym_string] = STATE(1463), + [sym_func_call] = STATE(1463), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1463), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1044] = { + [sym__getline_exp] = STATE(1889), + [sym_getline_input] = STATE(1889), + [sym_getline_file] = STATE(1889), + [sym__exp] = STATE(1889), + [sym_ternary_exp] = STATE(1793), + [sym_binary_exp] = STATE(1793), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1793), + [sym_update_exp] = STATE(1889), + [sym_assignment_exp] = STATE(1889), + [sym_piped_io_exp] = STATE(1889), + [sym_string_concat] = STATE(1793), + [sym_field_ref] = STATE(1508), + [sym_array_ref] = STATE(1474), + [sym_regex] = STATE(1889), + [sym_regex_constant] = STATE(1889), + [sym_grouping] = STATE(1793), + [sym__primitive] = STATE(1793), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1466), + [sym_number] = STATE(1793), + [sym_string] = STATE(1793), + [sym_func_call] = STATE(1793), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1889), + [sym_identifier] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1045] = { + [sym__getline_exp] = STATE(1734), + [sym_getline_input] = STATE(1734), + [sym_getline_file] = STATE(1734), + [sym__exp] = STATE(1734), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1734), + [sym_assignment_exp] = STATE(1734), + [sym_piped_io_exp] = STATE(1734), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1734), + [sym_regex_constant] = STATE(1734), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1734), + [sym_identifier] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1046] = { + [sym__getline_exp] = STATE(1687), + [sym_getline_input] = STATE(1687), + [sym_getline_file] = STATE(1687), + [sym__exp] = STATE(1687), + [sym_ternary_exp] = STATE(1677), + [sym_binary_exp] = STATE(1677), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1677), + [sym_update_exp] = STATE(1687), + [sym_assignment_exp] = STATE(1687), + [sym_piped_io_exp] = STATE(1687), + [sym_string_concat] = STATE(1677), + [sym_field_ref] = STATE(1419), + [sym_array_ref] = STATE(1385), + [sym_regex] = STATE(1687), + [sym_regex_constant] = STATE(1687), + [sym_grouping] = STATE(1677), + [sym__primitive] = STATE(1677), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1347), + [sym_number] = STATE(1677), + [sym_string] = STATE(1677), + [sym_func_call] = STATE(1677), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1687), + [sym_identifier] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(401), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1047] = { + [sym__getline_exp] = STATE(1577), + [sym_getline_input] = STATE(1577), + [sym_getline_file] = STATE(1577), + [sym__exp] = STATE(1577), + [sym_ternary_exp] = STATE(1577), + [sym_binary_exp] = STATE(1577), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1577), + [sym_update_exp] = STATE(1577), + [sym_assignment_exp] = STATE(1577), + [sym_piped_io_exp] = STATE(1577), + [sym_string_concat] = STATE(1577), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1577), + [sym_regex_constant] = STATE(1577), + [sym_grouping] = STATE(1577), + [sym__primitive] = STATE(1577), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1577), + [sym_string] = STATE(1577), + [sym_func_call] = STATE(1577), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1577), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1048] = { + [sym__getline_exp] = STATE(1629), + [sym_getline_input] = STATE(1629), + [sym_getline_file] = STATE(1629), + [sym__exp] = STATE(1629), + [sym_ternary_exp] = STATE(1629), + [sym_binary_exp] = STATE(1629), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1629), + [sym_update_exp] = STATE(1629), + [sym_assignment_exp] = STATE(1629), + [sym_piped_io_exp] = STATE(1629), + [sym_string_concat] = STATE(1629), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1629), + [sym_regex_constant] = STATE(1629), + [sym_grouping] = STATE(1629), + [sym__primitive] = STATE(1629), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1629), + [sym_string] = STATE(1629), + [sym_func_call] = STATE(1629), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1629), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1049] = { + [sym__getline_exp] = STATE(1433), + [sym_getline_input] = STATE(1433), + [sym_getline_file] = STATE(1433), + [sym__exp] = STATE(1433), + [sym_ternary_exp] = STATE(1433), + [sym_binary_exp] = STATE(1433), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1433), + [sym_update_exp] = STATE(1433), + [sym_assignment_exp] = STATE(1433), + [sym_piped_io_exp] = STATE(1433), + [sym_string_concat] = STATE(1433), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1433), + [sym_regex_constant] = STATE(1433), + [sym_grouping] = STATE(1433), + [sym__primitive] = STATE(1433), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1433), + [sym_string] = STATE(1433), + [sym_func_call] = STATE(1433), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1433), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1050] = { + [sym__getline_exp] = STATE(1696), + [sym_getline_input] = STATE(1696), + [sym_getline_file] = STATE(1696), + [sym__exp] = STATE(1696), + [sym_ternary_exp] = STATE(1696), + [sym_binary_exp] = STATE(1696), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1696), + [sym_update_exp] = STATE(1696), + [sym_assignment_exp] = STATE(1696), + [sym_piped_io_exp] = STATE(1696), + [sym_string_concat] = STATE(1696), + [sym_field_ref] = STATE(1430), + [sym_array_ref] = STATE(1359), + [sym_regex] = STATE(1696), + [sym_regex_constant] = STATE(1696), + [sym_grouping] = STATE(1696), + [sym__primitive] = STATE(1696), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1346), + [sym_number] = STATE(1696), + [sym_string] = STATE(1696), + [sym_func_call] = STATE(1696), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1696), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_getline] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1333), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1051] = { + [sym__getline_exp] = STATE(512), + [sym_getline_input] = STATE(512), + [sym_getline_file] = STATE(512), + [sym__exp] = STATE(512), + [sym_ternary_exp] = STATE(512), + [sym_binary_exp] = STATE(512), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(512), + [sym_update_exp] = STATE(512), + [sym_assignment_exp] = STATE(512), + [sym_piped_io_exp] = STATE(512), + [sym_string_concat] = STATE(512), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(512), + [sym_regex_constant] = STATE(512), + [sym_grouping] = STATE(512), + [sym__primitive] = STATE(512), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(512), + [sym_string] = STATE(512), + [sym_func_call] = STATE(512), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(512), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [1052] = { + [sym__getline_exp] = STATE(272), + [sym_getline_input] = STATE(272), + [sym_getline_file] = STATE(272), + [sym__exp] = STATE(272), + [sym_ternary_exp] = STATE(272), + [sym_binary_exp] = STATE(272), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(272), + [sym_update_exp] = STATE(272), + [sym_assignment_exp] = STATE(272), + [sym_piped_io_exp] = STATE(272), + [sym_string_concat] = STATE(272), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(272), + [sym_regex_constant] = STATE(272), + [sym_grouping] = STATE(272), + [sym__primitive] = STATE(272), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(272), + [sym_string] = STATE(272), + [sym_func_call] = STATE(272), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(272), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [1053] = { + [sym__getline_exp] = STATE(1500), + [sym_getline_input] = STATE(1500), + [sym_getline_file] = STATE(1500), + [sym__exp] = STATE(1500), + [sym_ternary_exp] = STATE(1500), + [sym_binary_exp] = STATE(1500), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1500), + [sym_update_exp] = STATE(1500), + [sym_assignment_exp] = STATE(1500), + [sym_piped_io_exp] = STATE(1500), + [sym_string_concat] = STATE(1500), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1500), + [sym_regex_constant] = STATE(1500), + [sym_grouping] = STATE(1500), + [sym__primitive] = STATE(1500), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1500), + [sym_string] = STATE(1500), + [sym_func_call] = STATE(1500), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1500), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1054] = { + [sym__getline_exp] = STATE(1506), + [sym_getline_input] = STATE(1506), + [sym_getline_file] = STATE(1506), + [sym__exp] = STATE(1506), + [sym_ternary_exp] = STATE(1506), + [sym_binary_exp] = STATE(1506), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1506), + [sym_update_exp] = STATE(1506), + [sym_assignment_exp] = STATE(1506), + [sym_piped_io_exp] = STATE(1506), + [sym_string_concat] = STATE(1506), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1506), + [sym_regex_constant] = STATE(1506), + [sym_grouping] = STATE(1506), + [sym__primitive] = STATE(1506), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1506), + [sym_string] = STATE(1506), + [sym_func_call] = STATE(1506), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1506), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1055] = { + [sym__getline_exp] = STATE(1513), + [sym_getline_input] = STATE(1513), + [sym_getline_file] = STATE(1513), + [sym__exp] = STATE(1513), + [sym_ternary_exp] = STATE(1513), + [sym_binary_exp] = STATE(1513), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1513), + [sym_update_exp] = STATE(1513), + [sym_assignment_exp] = STATE(1513), + [sym_piped_io_exp] = STATE(1513), + [sym_string_concat] = STATE(1513), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1513), + [sym_regex_constant] = STATE(1513), + [sym_grouping] = STATE(1513), + [sym__primitive] = STATE(1513), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1513), + [sym_string] = STATE(1513), + [sym_func_call] = STATE(1513), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1513), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1056] = { + [sym__getline_exp] = STATE(1982), + [sym_getline_input] = STATE(1982), + [sym_getline_file] = STATE(1982), + [sym__exp] = STATE(1982), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1982), + [sym_assignment_exp] = STATE(1982), + [sym_piped_io_exp] = STATE(1982), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1982), + [sym_regex_constant] = STATE(1982), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1982), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1057] = { + [sym__getline_exp] = STATE(1514), + [sym_getline_input] = STATE(1514), + [sym_getline_file] = STATE(1514), + [sym__exp] = STATE(1514), + [sym_ternary_exp] = STATE(1514), + [sym_binary_exp] = STATE(1514), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1514), + [sym_update_exp] = STATE(1514), + [sym_assignment_exp] = STATE(1514), + [sym_piped_io_exp] = STATE(1514), + [sym_string_concat] = STATE(1514), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1514), + [sym_regex_constant] = STATE(1514), + [sym_grouping] = STATE(1514), + [sym__primitive] = STATE(1514), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1514), + [sym_string] = STATE(1514), + [sym_func_call] = STATE(1514), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1514), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1058] = { + [sym__getline_exp] = STATE(1983), + [sym_getline_input] = STATE(1983), + [sym_getline_file] = STATE(1983), + [sym__exp] = STATE(1983), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1983), + [sym_assignment_exp] = STATE(1983), + [sym_piped_io_exp] = STATE(1983), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1983), + [sym_regex_constant] = STATE(1983), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1983), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1059] = { + [sym__getline_exp] = STATE(1387), + [sym_getline_input] = STATE(1387), + [sym_getline_file] = STATE(1387), + [sym__exp] = STATE(1387), + [sym_ternary_exp] = STATE(1387), + [sym_binary_exp] = STATE(1387), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1387), + [sym_update_exp] = STATE(1387), + [sym_assignment_exp] = STATE(1387), + [sym_piped_io_exp] = STATE(1387), + [sym_string_concat] = STATE(1387), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1387), + [sym_regex_constant] = STATE(1387), + [sym_grouping] = STATE(1387), + [sym__primitive] = STATE(1387), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1387), + [sym_string] = STATE(1387), + [sym_func_call] = STATE(1387), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1387), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1060] = { + [sym__getline_exp] = STATE(1496), + [sym_getline_input] = STATE(1496), + [sym_getline_file] = STATE(1496), + [sym__exp] = STATE(1496), + [sym_ternary_exp] = STATE(1496), + [sym_binary_exp] = STATE(1496), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1496), + [sym_update_exp] = STATE(1496), + [sym_assignment_exp] = STATE(1496), + [sym_piped_io_exp] = STATE(1496), + [sym_string_concat] = STATE(1496), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1496), + [sym_regex_constant] = STATE(1496), + [sym_grouping] = STATE(1496), + [sym__primitive] = STATE(1496), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1496), + [sym_string] = STATE(1496), + [sym_func_call] = STATE(1496), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1496), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1061] = { + [sym__getline_exp] = STATE(1493), + [sym_getline_input] = STATE(1493), + [sym_getline_file] = STATE(1493), + [sym__exp] = STATE(1493), + [sym_ternary_exp] = STATE(1493), + [sym_binary_exp] = STATE(1493), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1493), + [sym_update_exp] = STATE(1493), + [sym_assignment_exp] = STATE(1493), + [sym_piped_io_exp] = STATE(1493), + [sym_string_concat] = STATE(1493), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1493), + [sym_regex_constant] = STATE(1493), + [sym_grouping] = STATE(1493), + [sym__primitive] = STATE(1493), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1493), + [sym_string] = STATE(1493), + [sym_func_call] = STATE(1493), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1493), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_getline] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1601), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1062] = { + [sym__getline_exp] = STATE(493), + [sym_getline_input] = STATE(493), + [sym_getline_file] = STATE(493), + [sym__exp] = STATE(493), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(493), + [sym_assignment_exp] = STATE(493), + [sym_piped_io_exp] = STATE(493), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(493), + [sym_regex_constant] = STATE(493), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(493), + [sym_identifier] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1063] = { + [sym__getline_exp] = STATE(1943), + [sym_getline_input] = STATE(1943), + [sym_getline_file] = STATE(1943), + [sym__exp] = STATE(1943), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1943), + [sym_assignment_exp] = STATE(1943), + [sym_piped_io_exp] = STATE(1943), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1943), + [sym_regex_constant] = STATE(1943), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1943), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1064] = { + [sym__getline_exp] = STATE(441), + [sym_getline_input] = STATE(441), + [sym_getline_file] = STATE(441), + [sym__exp] = STATE(441), + [sym_ternary_exp] = STATE(441), + [sym_binary_exp] = STATE(441), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(441), + [sym_update_exp] = STATE(441), + [sym_assignment_exp] = STATE(441), + [sym_piped_io_exp] = STATE(441), + [sym_string_concat] = STATE(441), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(441), + [sym_regex_constant] = STATE(441), + [sym_grouping] = STATE(441), + [sym__primitive] = STATE(441), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(441), + [sym_string] = STATE(441), + [sym_func_call] = STATE(441), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(441), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1065] = { + [sym__getline_exp] = STATE(1901), + [sym_getline_input] = STATE(1901), + [sym_getline_file] = STATE(1901), + [sym__exp] = STATE(1901), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1901), + [sym_assignment_exp] = STATE(1901), + [sym_piped_io_exp] = STATE(1901), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1901), + [sym_regex_constant] = STATE(1901), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1901), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1066] = { + [sym__getline_exp] = STATE(222), + [sym_getline_input] = STATE(222), + [sym_getline_file] = STATE(222), + [sym__exp] = STATE(222), + [sym_ternary_exp] = STATE(222), + [sym_binary_exp] = STATE(222), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(222), + [sym_update_exp] = STATE(222), + [sym_assignment_exp] = STATE(222), + [sym_piped_io_exp] = STATE(222), + [sym_string_concat] = STATE(222), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(222), + [sym_regex_constant] = STATE(222), + [sym_grouping] = STATE(222), + [sym__primitive] = STATE(222), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(222), + [sym_string] = STATE(222), + [sym_func_call] = STATE(222), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(222), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1067] = { + [sym__getline_exp] = STATE(259), + [sym_getline_input] = STATE(259), + [sym_getline_file] = STATE(259), + [sym__exp] = STATE(259), + [sym_ternary_exp] = STATE(259), + [sym_binary_exp] = STATE(259), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(259), + [sym_update_exp] = STATE(259), + [sym_assignment_exp] = STATE(259), + [sym_piped_io_exp] = STATE(259), + [sym_string_concat] = STATE(259), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(259), + [sym_regex_constant] = STATE(259), + [sym_grouping] = STATE(259), + [sym__primitive] = STATE(259), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(259), + [sym_string] = STATE(259), + [sym_func_call] = STATE(259), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(259), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1068] = { + [sym__getline_exp] = STATE(256), + [sym_getline_input] = STATE(256), + [sym_getline_file] = STATE(256), + [sym__exp] = STATE(256), + [sym_ternary_exp] = STATE(256), + [sym_binary_exp] = STATE(256), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(256), + [sym_update_exp] = STATE(256), + [sym_assignment_exp] = STATE(256), + [sym_piped_io_exp] = STATE(256), + [sym_string_concat] = STATE(256), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(256), + [sym_regex_constant] = STATE(256), + [sym_grouping] = STATE(256), + [sym__primitive] = STATE(256), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(256), + [sym_string] = STATE(256), + [sym_func_call] = STATE(256), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(256), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1069] = { + [sym__getline_exp] = STATE(255), + [sym_getline_input] = STATE(255), + [sym_getline_file] = STATE(255), + [sym__exp] = STATE(255), + [sym_ternary_exp] = STATE(255), + [sym_binary_exp] = STATE(255), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(255), + [sym_update_exp] = STATE(255), + [sym_assignment_exp] = STATE(255), + [sym_piped_io_exp] = STATE(255), + [sym_string_concat] = STATE(255), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(255), + [sym_regex_constant] = STATE(255), + [sym_grouping] = STATE(255), + [sym__primitive] = STATE(255), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(255), + [sym_string] = STATE(255), + [sym_func_call] = STATE(255), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(255), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1070] = { + [sym__getline_exp] = STATE(252), + [sym_getline_input] = STATE(252), + [sym_getline_file] = STATE(252), + [sym__exp] = STATE(252), + [sym_ternary_exp] = STATE(252), + [sym_binary_exp] = STATE(252), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(252), + [sym_update_exp] = STATE(252), + [sym_assignment_exp] = STATE(252), + [sym_piped_io_exp] = STATE(252), + [sym_string_concat] = STATE(252), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(252), + [sym_regex_constant] = STATE(252), + [sym_grouping] = STATE(252), + [sym__primitive] = STATE(252), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(252), + [sym_string] = STATE(252), + [sym_func_call] = STATE(252), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(252), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1071] = { + [sym__getline_exp] = STATE(248), + [sym_getline_input] = STATE(248), + [sym_getline_file] = STATE(248), + [sym__exp] = STATE(248), + [sym_ternary_exp] = STATE(248), + [sym_binary_exp] = STATE(248), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(248), + [sym_update_exp] = STATE(248), + [sym_assignment_exp] = STATE(248), + [sym_piped_io_exp] = STATE(248), + [sym_string_concat] = STATE(248), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(248), + [sym_regex_constant] = STATE(248), + [sym_grouping] = STATE(248), + [sym__primitive] = STATE(248), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(248), + [sym_string] = STATE(248), + [sym_func_call] = STATE(248), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(248), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1072] = { + [sym__getline_exp] = STATE(247), + [sym_getline_input] = STATE(247), + [sym_getline_file] = STATE(247), + [sym__exp] = STATE(247), + [sym_ternary_exp] = STATE(247), + [sym_binary_exp] = STATE(247), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(247), + [sym_update_exp] = STATE(247), + [sym_assignment_exp] = STATE(247), + [sym_piped_io_exp] = STATE(247), + [sym_string_concat] = STATE(247), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(247), + [sym_regex_constant] = STATE(247), + [sym_grouping] = STATE(247), + [sym__primitive] = STATE(247), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(247), + [sym_string] = STATE(247), + [sym_func_call] = STATE(247), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(247), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1073] = { + [sym__getline_exp] = STATE(246), + [sym_getline_input] = STATE(246), + [sym_getline_file] = STATE(246), + [sym__exp] = STATE(246), + [sym_ternary_exp] = STATE(246), + [sym_binary_exp] = STATE(246), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(246), + [sym_update_exp] = STATE(246), + [sym_assignment_exp] = STATE(246), + [sym_piped_io_exp] = STATE(246), + [sym_string_concat] = STATE(246), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(246), + [sym_regex_constant] = STATE(246), + [sym_grouping] = STATE(246), + [sym__primitive] = STATE(246), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(246), + [sym_string] = STATE(246), + [sym_func_call] = STATE(246), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(246), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1074] = { + [sym__getline_exp] = STATE(533), + [sym_getline_input] = STATE(533), + [sym_getline_file] = STATE(533), + [sym__exp] = STATE(533), + [sym_ternary_exp] = STATE(533), + [sym_binary_exp] = STATE(533), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(533), + [sym_update_exp] = STATE(533), + [sym_assignment_exp] = STATE(533), + [sym_piped_io_exp] = STATE(533), + [sym_string_concat] = STATE(533), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(533), + [sym_regex_constant] = STATE(533), + [sym_grouping] = STATE(533), + [sym__primitive] = STATE(533), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(533), + [sym_string] = STATE(533), + [sym_func_call] = STATE(533), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(533), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [1075] = { + [sym__getline_exp] = STATE(1869), + [sym_getline_input] = STATE(1869), + [sym_getline_file] = STATE(1869), + [sym__exp] = STATE(1869), + [sym_ternary_exp] = STATE(1869), + [sym_binary_exp] = STATE(1869), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1869), + [sym_update_exp] = STATE(1869), + [sym_assignment_exp] = STATE(1869), + [sym_piped_io_exp] = STATE(1869), + [sym_string_concat] = STATE(1869), + [sym_field_ref] = STATE(1570), + [sym_array_ref] = STATE(1524), + [sym_regex] = STATE(1869), + [sym_regex_constant] = STATE(1869), + [sym_grouping] = STATE(1869), + [sym__primitive] = STATE(1869), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1492), + [sym_number] = STATE(1869), + [sym_string] = STATE(1869), + [sym_func_call] = STATE(1869), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1869), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1613), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1076] = { + [sym__getline_exp] = STATE(266), + [sym_getline_input] = STATE(266), + [sym_getline_file] = STATE(266), + [sym__exp] = STATE(266), + [sym_ternary_exp] = STATE(266), + [sym_binary_exp] = STATE(266), + [sym__binary_in] = STATE(292), + [sym_unary_exp] = STATE(266), + [sym_update_exp] = STATE(266), + [sym_assignment_exp] = STATE(266), + [sym_piped_io_exp] = STATE(266), + [sym_string_concat] = STATE(266), + [sym_field_ref] = STATE(261), + [sym_array_ref] = STATE(234), + [sym_regex] = STATE(266), + [sym_regex_constant] = STATE(266), + [sym_grouping] = STATE(266), + [sym__primitive] = STATE(266), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(196), + [sym_number] = STATE(266), + [sym_string] = STATE(266), + [sym_func_call] = STATE(266), + [sym__builtin_func_call] = STATE(286), + [sym_indirect_func_call] = STATE(266), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_getline] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1445), + [aux_sym_number_token1] = ACTIONS(1447), + [aux_sym_number_token2] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_and] = ACTIONS(1453), + [anon_sym_asort] = ACTIONS(1453), + [anon_sym_asorti] = ACTIONS(1453), + [anon_sym_bindtextdomain] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_cos] = ACTIONS(1453), + [anon_sym_dcgettext] = ACTIONS(1453), + [anon_sym_dcngettext] = ACTIONS(1453), + [anon_sym_exp] = ACTIONS(1453), + [anon_sym_gensub] = ACTIONS(1453), + [anon_sym_gsub] = ACTIONS(1453), + [anon_sym_index] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_isarray] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_log] = ACTIONS(1453), + [anon_sym_lshift] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mktime] = ACTIONS(1453), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_patsplit] = ACTIONS(1453), + [anon_sym_rand] = ACTIONS(1453), + [anon_sym_rshift] = ACTIONS(1453), + [anon_sym_sin] = ACTIONS(1453), + [anon_sym_split] = ACTIONS(1453), + [anon_sym_sprintf] = ACTIONS(1453), + [anon_sym_sqrt] = ACTIONS(1453), + [anon_sym_srand] = ACTIONS(1453), + [anon_sym_strftime] = ACTIONS(1453), + [anon_sym_strtonum] = ACTIONS(1453), + [anon_sym_sub] = ACTIONS(1453), + [anon_sym_substr] = ACTIONS(1453), + [anon_sym_systime] = ACTIONS(1453), + [anon_sym_tolower] = ACTIONS(1453), + [anon_sym_toupper] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_xor] = ACTIONS(1453), + }, + [1077] = { + [sym__getline_exp] = STATE(2019), + [sym_getline_input] = STATE(2019), + [sym_getline_file] = STATE(2019), + [sym__exp] = STATE(2019), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2019), + [sym_assignment_exp] = STATE(2019), + [sym_piped_io_exp] = STATE(2019), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2019), + [sym_regex_constant] = STATE(2019), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2019), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1078] = { + [sym__getline_exp] = STATE(1568), + [sym_getline_input] = STATE(1568), + [sym_getline_file] = STATE(1568), + [sym__exp] = STATE(1568), + [sym_ternary_exp] = STATE(1568), + [sym_binary_exp] = STATE(1568), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1568), + [sym_update_exp] = STATE(1568), + [sym_assignment_exp] = STATE(1568), + [sym_piped_io_exp] = STATE(1568), + [sym_string_concat] = STATE(1568), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1568), + [sym_regex_constant] = STATE(1568), + [sym_grouping] = STATE(1568), + [sym__primitive] = STATE(1568), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1568), + [sym_string] = STATE(1568), + [sym_func_call] = STATE(1568), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1568), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1079] = { + [sym__getline_exp] = STATE(2018), + [sym_getline_input] = STATE(2018), + [sym_getline_file] = STATE(2018), + [sym__exp] = STATE(2018), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2018), + [sym_assignment_exp] = STATE(2018), + [sym_piped_io_exp] = STATE(2018), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2018), + [sym_regex_constant] = STATE(2018), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2018), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1080] = { + [sym__getline_exp] = STATE(1697), + [sym_getline_input] = STATE(1697), + [sym_getline_file] = STATE(1697), + [sym__exp] = STATE(1697), + [sym_ternary_exp] = STATE(1697), + [sym_binary_exp] = STATE(1697), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1697), + [sym_update_exp] = STATE(1697), + [sym_assignment_exp] = STATE(1697), + [sym_piped_io_exp] = STATE(1697), + [sym_string_concat] = STATE(1697), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1697), + [sym_regex_constant] = STATE(1697), + [sym_grouping] = STATE(1697), + [sym__primitive] = STATE(1697), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1697), + [sym_string] = STATE(1697), + [sym_func_call] = STATE(1697), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1697), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1081] = { + [sym__getline_exp] = STATE(1546), + [sym_getline_input] = STATE(1546), + [sym_getline_file] = STATE(1546), + [sym__exp] = STATE(1546), + [sym_ternary_exp] = STATE(1546), + [sym_binary_exp] = STATE(1546), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1546), + [sym_update_exp] = STATE(1546), + [sym_assignment_exp] = STATE(1546), + [sym_piped_io_exp] = STATE(1546), + [sym_string_concat] = STATE(1546), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1546), + [sym_regex_constant] = STATE(1546), + [sym_grouping] = STATE(1546), + [sym__primitive] = STATE(1546), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1546), + [sym_string] = STATE(1546), + [sym_func_call] = STATE(1546), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1546), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1082] = { + [sym__getline_exp] = STATE(1770), + [sym_getline_input] = STATE(1770), + [sym_getline_file] = STATE(1770), + [sym__exp] = STATE(1770), + [sym_ternary_exp] = STATE(1770), + [sym_binary_exp] = STATE(1770), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1770), + [sym_update_exp] = STATE(1770), + [sym_assignment_exp] = STATE(1770), + [sym_piped_io_exp] = STATE(1770), + [sym_string_concat] = STATE(1770), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1770), + [sym_regex_constant] = STATE(1770), + [sym_grouping] = STATE(1770), + [sym__primitive] = STATE(1770), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1770), + [sym_string] = STATE(1770), + [sym_func_call] = STATE(1770), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1770), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1083] = { + [sym__getline_exp] = STATE(1737), + [sym_getline_input] = STATE(1737), + [sym_getline_file] = STATE(1737), + [sym__exp] = STATE(1737), + [sym_ternary_exp] = STATE(1737), + [sym_binary_exp] = STATE(1737), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1737), + [sym_update_exp] = STATE(1737), + [sym_assignment_exp] = STATE(1737), + [sym_piped_io_exp] = STATE(1737), + [sym_string_concat] = STATE(1737), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1737), + [sym_regex_constant] = STATE(1737), + [sym_grouping] = STATE(1737), + [sym__primitive] = STATE(1737), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1737), + [sym_string] = STATE(1737), + [sym_func_call] = STATE(1737), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1737), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1084] = { + [sym__getline_exp] = STATE(1414), + [sym_getline_input] = STATE(1414), + [sym_getline_file] = STATE(1414), + [sym__exp] = STATE(1414), + [sym_ternary_exp] = STATE(1414), + [sym_binary_exp] = STATE(1414), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1414), + [sym_update_exp] = STATE(1414), + [sym_assignment_exp] = STATE(1414), + [sym_piped_io_exp] = STATE(1414), + [sym_string_concat] = STATE(1414), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1414), + [sym_regex_constant] = STATE(1414), + [sym_grouping] = STATE(1414), + [sym__primitive] = STATE(1414), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1414), + [sym_string] = STATE(1414), + [sym_func_call] = STATE(1414), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1414), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_getline] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1475), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1085] = { + [sym__getline_exp] = STATE(449), + [sym_getline_input] = STATE(449), + [sym_getline_file] = STATE(449), + [sym__exp] = STATE(449), + [sym_ternary_exp] = STATE(449), + [sym_binary_exp] = STATE(449), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(449), + [sym_update_exp] = STATE(449), + [sym_assignment_exp] = STATE(449), + [sym_piped_io_exp] = STATE(449), + [sym_string_concat] = STATE(449), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(449), + [sym_regex_constant] = STATE(449), + [sym_grouping] = STATE(449), + [sym__primitive] = STATE(449), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(449), + [sym_string] = STATE(449), + [sym_func_call] = STATE(449), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(449), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1086] = { + [sym__getline_exp] = STATE(1826), + [sym_getline_input] = STATE(1826), + [sym_getline_file] = STATE(1826), + [sym__exp] = STATE(1826), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1826), + [sym_assignment_exp] = STATE(1826), + [sym_piped_io_exp] = STATE(1826), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1826), + [sym_regex_constant] = STATE(1826), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1826), + [sym_identifier] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1087] = { + [sym__getline_exp] = STATE(1380), + [sym_getline_input] = STATE(1380), + [sym_getline_file] = STATE(1380), + [sym__exp] = STATE(1380), + [sym_ternary_exp] = STATE(1380), + [sym_binary_exp] = STATE(1380), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1380), + [sym_update_exp] = STATE(1380), + [sym_assignment_exp] = STATE(1380), + [sym_piped_io_exp] = STATE(1380), + [sym_string_concat] = STATE(1380), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1380), + [sym_regex_constant] = STATE(1380), + [sym_grouping] = STATE(1380), + [sym__primitive] = STATE(1380), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1380), + [sym_string] = STATE(1380), + [sym_func_call] = STATE(1380), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1380), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1088] = { + [sym__getline_exp] = STATE(1575), + [sym_getline_input] = STATE(1575), + [sym_getline_file] = STATE(1575), + [sym__exp] = STATE(1575), + [sym_ternary_exp] = STATE(1575), + [sym_binary_exp] = STATE(1575), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1575), + [sym_update_exp] = STATE(1575), + [sym_assignment_exp] = STATE(1575), + [sym_piped_io_exp] = STATE(1575), + [sym_string_concat] = STATE(1575), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1575), + [sym_regex_constant] = STATE(1575), + [sym_grouping] = STATE(1575), + [sym__primitive] = STATE(1575), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1575), + [sym_string] = STATE(1575), + [sym_func_call] = STATE(1575), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1575), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1089] = { + [sym__getline_exp] = STATE(620), + [sym_getline_input] = STATE(620), + [sym_getline_file] = STATE(620), + [sym__exp] = STATE(620), + [sym_ternary_exp] = STATE(580), + [sym_binary_exp] = STATE(580), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(580), + [sym_update_exp] = STATE(620), + [sym_assignment_exp] = STATE(620), + [sym_piped_io_exp] = STATE(620), + [sym_string_concat] = STATE(580), + [sym_field_ref] = STATE(498), + [sym_array_ref] = STATE(490), + [sym_regex] = STATE(620), + [sym_regex_constant] = STATE(620), + [sym_grouping] = STATE(580), + [sym__primitive] = STATE(580), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(403), + [sym_number] = STATE(580), + [sym_string] = STATE(580), + [sym_func_call] = STATE(580), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(620), + [sym_identifier] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(23), + [anon_sym_DASH_DASH] = ACTIONS(23), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1792), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [1090] = { + [sym__getline_exp] = STATE(1963), + [sym_getline_input] = STATE(1963), + [sym_getline_file] = STATE(1963), + [sym__exp] = STATE(1963), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1963), + [sym_assignment_exp] = STATE(1963), + [sym_piped_io_exp] = STATE(1963), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1963), + [sym_regex_constant] = STATE(1963), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1963), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1091] = { + [sym__getline_exp] = STATE(1997), + [sym_getline_input] = STATE(1997), + [sym_getline_file] = STATE(1997), + [sym__exp] = STATE(1997), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1997), + [sym_assignment_exp] = STATE(1997), + [sym_piped_io_exp] = STATE(1997), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1997), + [sym_regex_constant] = STATE(1997), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1997), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1092] = { + [sym__getline_exp] = STATE(1377), + [sym_getline_input] = STATE(1377), + [sym_getline_file] = STATE(1377), + [sym__exp] = STATE(1377), + [sym_ternary_exp] = STATE(1377), + [sym_binary_exp] = STATE(1377), + [sym__binary_in] = STATE(1361), + [sym_unary_exp] = STATE(1377), + [sym_update_exp] = STATE(1377), + [sym_assignment_exp] = STATE(1377), + [sym_piped_io_exp] = STATE(1377), + [sym_string_concat] = STATE(1377), + [sym_field_ref] = STATE(1388), + [sym_array_ref] = STATE(1341), + [sym_regex] = STATE(1377), + [sym_regex_constant] = STATE(1377), + [sym_grouping] = STATE(1377), + [sym__primitive] = STATE(1377), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1332), + [sym_number] = STATE(1377), + [sym_string] = STATE(1377), + [sym_func_call] = STATE(1377), + [sym__builtin_func_call] = STATE(1397), + [sym_indirect_func_call] = STATE(1377), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_getline] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_AT] = ACTIONS(1503), + [aux_sym_number_token1] = ACTIONS(1505), + [aux_sym_number_token2] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1511), + [anon_sym_asort] = ACTIONS(1511), + [anon_sym_asorti] = ACTIONS(1511), + [anon_sym_bindtextdomain] = ACTIONS(1511), + [anon_sym_compl] = ACTIONS(1511), + [anon_sym_cos] = ACTIONS(1511), + [anon_sym_dcgettext] = ACTIONS(1511), + [anon_sym_dcngettext] = ACTIONS(1511), + [anon_sym_exp] = ACTIONS(1511), + [anon_sym_gensub] = ACTIONS(1511), + [anon_sym_gsub] = ACTIONS(1511), + [anon_sym_index] = ACTIONS(1511), + [anon_sym_int] = ACTIONS(1511), + [anon_sym_isarray] = ACTIONS(1511), + [anon_sym_length] = ACTIONS(1511), + [anon_sym_log] = ACTIONS(1511), + [anon_sym_lshift] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mktime] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1511), + [anon_sym_patsplit] = ACTIONS(1511), + [anon_sym_rand] = ACTIONS(1511), + [anon_sym_rshift] = ACTIONS(1511), + [anon_sym_sin] = ACTIONS(1511), + [anon_sym_split] = ACTIONS(1511), + [anon_sym_sprintf] = ACTIONS(1511), + [anon_sym_sqrt] = ACTIONS(1511), + [anon_sym_srand] = ACTIONS(1511), + [anon_sym_strftime] = ACTIONS(1511), + [anon_sym_strtonum] = ACTIONS(1511), + [anon_sym_sub] = ACTIONS(1511), + [anon_sym_substr] = ACTIONS(1511), + [anon_sym_systime] = ACTIONS(1511), + [anon_sym_tolower] = ACTIONS(1511), + [anon_sym_toupper] = ACTIONS(1511), + [anon_sym_typeof] = ACTIONS(1511), + [anon_sym_xor] = ACTIONS(1511), + }, + [1093] = { + [sym__getline_exp] = STATE(1754), + [sym_getline_input] = STATE(1754), + [sym_getline_file] = STATE(1754), + [sym__exp] = STATE(1754), + [sym_ternary_exp] = STATE(1754), + [sym_binary_exp] = STATE(1754), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1754), + [sym_update_exp] = STATE(1754), + [sym_assignment_exp] = STATE(1754), + [sym_piped_io_exp] = STATE(1754), + [sym_string_concat] = STATE(1754), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1754), + [sym_regex_constant] = STATE(1754), + [sym_grouping] = STATE(1754), + [sym__primitive] = STATE(1754), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1754), + [sym_string] = STATE(1754), + [sym_func_call] = STATE(1754), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1754), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1094] = { + [sym__getline_exp] = STATE(1585), + [sym_getline_input] = STATE(1585), + [sym_getline_file] = STATE(1585), + [sym__exp] = STATE(1585), + [sym_ternary_exp] = STATE(1585), + [sym_binary_exp] = STATE(1585), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1585), + [sym_update_exp] = STATE(1585), + [sym_assignment_exp] = STATE(1585), + [sym_piped_io_exp] = STATE(1585), + [sym_string_concat] = STATE(1585), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1585), + [sym_regex_constant] = STATE(1585), + [sym_grouping] = STATE(1585), + [sym__primitive] = STATE(1585), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1585), + [sym_string] = STATE(1585), + [sym_func_call] = STATE(1585), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1585), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1095] = { + [sym__getline_exp] = STATE(1947), + [sym_getline_input] = STATE(1947), + [sym_getline_file] = STATE(1947), + [sym__exp] = STATE(1947), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1947), + [sym_assignment_exp] = STATE(1947), + [sym_piped_io_exp] = STATE(1947), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1947), + [sym_regex_constant] = STATE(1947), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1947), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1096] = { + [sym__getline_exp] = STATE(1451), + [sym_getline_input] = STATE(1451), + [sym_getline_file] = STATE(1451), + [sym__exp] = STATE(1451), + [sym_ternary_exp] = STATE(1451), + [sym_binary_exp] = STATE(1451), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1451), + [sym_update_exp] = STATE(1451), + [sym_assignment_exp] = STATE(1451), + [sym_piped_io_exp] = STATE(1451), + [sym_string_concat] = STATE(1451), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1451), + [sym_regex_constant] = STATE(1451), + [sym_grouping] = STATE(1451), + [sym__primitive] = STATE(1451), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1451), + [sym_string] = STATE(1451), + [sym_func_call] = STATE(1451), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1451), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1097] = { + [sym__getline_exp] = STATE(1795), + [sym_getline_input] = STATE(1795), + [sym_getline_file] = STATE(1795), + [sym__exp] = STATE(1795), + [sym_ternary_exp] = STATE(1795), + [sym_binary_exp] = STATE(1795), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1795), + [sym_update_exp] = STATE(1795), + [sym_assignment_exp] = STATE(1795), + [sym_piped_io_exp] = STATE(1795), + [sym_string_concat] = STATE(1795), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1795), + [sym_regex_constant] = STATE(1795), + [sym_grouping] = STATE(1795), + [sym__primitive] = STATE(1795), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1795), + [sym_string] = STATE(1795), + [sym_func_call] = STATE(1795), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1795), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1098] = { + [sym__getline_exp] = STATE(239), + [sym_getline_input] = STATE(239), + [sym_getline_file] = STATE(239), + [sym__exp] = STATE(239), + [sym_ternary_exp] = STATE(239), + [sym_binary_exp] = STATE(239), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(239), + [sym_update_exp] = STATE(239), + [sym_assignment_exp] = STATE(239), + [sym_piped_io_exp] = STATE(239), + [sym_string_concat] = STATE(239), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(239), + [sym_regex_constant] = STATE(239), + [sym_grouping] = STATE(239), + [sym__primitive] = STATE(239), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(239), + [sym_string] = STATE(239), + [sym_func_call] = STATE(239), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(239), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1099] = { + [sym__getline_exp] = STATE(1950), + [sym_getline_input] = STATE(1950), + [sym_getline_file] = STATE(1950), + [sym__exp] = STATE(1950), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1950), + [sym_assignment_exp] = STATE(1950), + [sym_piped_io_exp] = STATE(1950), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1950), + [sym_regex_constant] = STATE(1950), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1950), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1100] = { + [sym__getline_exp] = STATE(451), + [sym_getline_input] = STATE(451), + [sym_getline_file] = STATE(451), + [sym__exp] = STATE(451), + [sym_ternary_exp] = STATE(451), + [sym_binary_exp] = STATE(451), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(451), + [sym_update_exp] = STATE(451), + [sym_assignment_exp] = STATE(451), + [sym_piped_io_exp] = STATE(451), + [sym_string_concat] = STATE(451), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(451), + [sym_regex_constant] = STATE(451), + [sym_grouping] = STATE(451), + [sym__primitive] = STATE(451), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(451), + [sym_string] = STATE(451), + [sym_func_call] = STATE(451), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(451), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1101] = { + [sym__getline_exp] = STATE(2015), + [sym_getline_input] = STATE(2015), + [sym_getline_file] = STATE(2015), + [sym__exp] = STATE(2015), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2015), + [sym_assignment_exp] = STATE(2015), + [sym_piped_io_exp] = STATE(2015), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2015), + [sym_regex_constant] = STATE(2015), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2015), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1102] = { + [sym__getline_exp] = STATE(1906), + [sym_getline_input] = STATE(1906), + [sym_getline_file] = STATE(1906), + [sym__exp] = STATE(1906), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1906), + [sym_assignment_exp] = STATE(1906), + [sym_piped_io_exp] = STATE(1906), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1906), + [sym_regex_constant] = STATE(1906), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1906), + [sym_identifier] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1103] = { + [sym__getline_exp] = STATE(1784), + [sym_getline_input] = STATE(1784), + [sym_getline_file] = STATE(1784), + [sym__exp] = STATE(1784), + [sym_ternary_exp] = STATE(1784), + [sym_binary_exp] = STATE(1784), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1784), + [sym_update_exp] = STATE(1784), + [sym_assignment_exp] = STATE(1784), + [sym_piped_io_exp] = STATE(1784), + [sym_string_concat] = STATE(1784), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1784), + [sym_regex_constant] = STATE(1784), + [sym_grouping] = STATE(1784), + [sym__primitive] = STATE(1784), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1784), + [sym_string] = STATE(1784), + [sym_func_call] = STATE(1784), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1784), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1104] = { + [sym__getline_exp] = STATE(1905), + [sym_getline_input] = STATE(1905), + [sym_getline_file] = STATE(1905), + [sym__exp] = STATE(1905), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1905), + [sym_assignment_exp] = STATE(1905), + [sym_piped_io_exp] = STATE(1905), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1905), + [sym_regex_constant] = STATE(1905), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1905), + [sym_identifier] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1105] = { + [sym__getline_exp] = STATE(2025), + [sym_getline_input] = STATE(2025), + [sym_getline_file] = STATE(2025), + [sym__exp] = STATE(2025), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2025), + [sym_assignment_exp] = STATE(2025), + [sym_piped_io_exp] = STATE(2025), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2025), + [sym_regex_constant] = STATE(2025), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2025), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1106] = { + [sym__getline_exp] = STATE(1453), + [sym_getline_input] = STATE(1453), + [sym_getline_file] = STATE(1453), + [sym__exp] = STATE(1453), + [sym_ternary_exp] = STATE(1453), + [sym_binary_exp] = STATE(1453), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1453), + [sym_update_exp] = STATE(1453), + [sym_assignment_exp] = STATE(1453), + [sym_piped_io_exp] = STATE(1453), + [sym_string_concat] = STATE(1453), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1453), + [sym_regex_constant] = STATE(1453), + [sym_grouping] = STATE(1453), + [sym__primitive] = STATE(1453), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1453), + [sym_string] = STATE(1453), + [sym_func_call] = STATE(1453), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1453), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1107] = { + [sym__getline_exp] = STATE(1818), + [sym_getline_input] = STATE(1818), + [sym_getline_file] = STATE(1818), + [sym__exp] = STATE(1818), + [sym_ternary_exp] = STATE(1818), + [sym_binary_exp] = STATE(1818), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1818), + [sym_update_exp] = STATE(1818), + [sym_assignment_exp] = STATE(1818), + [sym_piped_io_exp] = STATE(1818), + [sym_string_concat] = STATE(1818), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1818), + [sym_regex_constant] = STATE(1818), + [sym_grouping] = STATE(1818), + [sym__primitive] = STATE(1818), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1818), + [sym_string] = STATE(1818), + [sym_func_call] = STATE(1818), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1818), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1108] = { + [sym__getline_exp] = STATE(572), + [sym_getline_input] = STATE(572), + [sym_getline_file] = STATE(572), + [sym__exp] = STATE(572), + [sym_ternary_exp] = STATE(572), + [sym_binary_exp] = STATE(572), + [sym__binary_in] = STATE(581), + [sym_unary_exp] = STATE(572), + [sym_update_exp] = STATE(572), + [sym_assignment_exp] = STATE(572), + [sym_piped_io_exp] = STATE(572), + [sym_string_concat] = STATE(572), + [sym_field_ref] = STATE(499), + [sym_array_ref] = STATE(482), + [sym_regex] = STATE(572), + [sym_regex_constant] = STATE(572), + [sym_grouping] = STATE(572), + [sym__primitive] = STATE(572), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(417), + [sym_number] = STATE(572), + [sym_string] = STATE(572), + [sym_func_call] = STATE(572), + [sym__builtin_func_call] = STATE(583), + [sym_indirect_func_call] = STATE(572), + [sym_identifier] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_getline] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1625), + [aux_sym_number_token1] = ACTIONS(29), + [aux_sym_number_token2] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(33), + [anon_sym_and] = ACTIONS(37), + [anon_sym_asort] = ACTIONS(37), + [anon_sym_asorti] = ACTIONS(37), + [anon_sym_bindtextdomain] = ACTIONS(37), + [anon_sym_compl] = ACTIONS(37), + [anon_sym_cos] = ACTIONS(37), + [anon_sym_dcgettext] = ACTIONS(37), + [anon_sym_dcngettext] = ACTIONS(37), + [anon_sym_exp] = ACTIONS(37), + [anon_sym_gensub] = ACTIONS(37), + [anon_sym_gsub] = ACTIONS(37), + [anon_sym_index] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_isarray] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_log] = ACTIONS(37), + [anon_sym_lshift] = ACTIONS(37), + [anon_sym_match] = ACTIONS(37), + [anon_sym_mktime] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_patsplit] = ACTIONS(37), + [anon_sym_rand] = ACTIONS(37), + [anon_sym_rshift] = ACTIONS(37), + [anon_sym_sin] = ACTIONS(37), + [anon_sym_split] = ACTIONS(37), + [anon_sym_sprintf] = ACTIONS(37), + [anon_sym_sqrt] = ACTIONS(37), + [anon_sym_srand] = ACTIONS(37), + [anon_sym_strftime] = ACTIONS(37), + [anon_sym_strtonum] = ACTIONS(37), + [anon_sym_sub] = ACTIONS(37), + [anon_sym_substr] = ACTIONS(37), + [anon_sym_systime] = ACTIONS(37), + [anon_sym_tolower] = ACTIONS(37), + [anon_sym_toupper] = ACTIONS(37), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_xor] = ACTIONS(37), + }, + [1109] = { + [sym__getline_exp] = STATE(1746), + [sym_getline_input] = STATE(1746), + [sym_getline_file] = STATE(1746), + [sym__exp] = STATE(1746), + [sym_ternary_exp] = STATE(1746), + [sym_binary_exp] = STATE(1746), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1746), + [sym_update_exp] = STATE(1746), + [sym_assignment_exp] = STATE(1746), + [sym_piped_io_exp] = STATE(1746), + [sym_string_concat] = STATE(1746), + [sym_field_ref] = STATE(1452), + [sym_array_ref] = STATE(1405), + [sym_regex] = STATE(1746), + [sym_regex_constant] = STATE(1746), + [sym_grouping] = STATE(1746), + [sym__primitive] = STATE(1746), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1364), + [sym_number] = STATE(1746), + [sym_string] = STATE(1746), + [sym_func_call] = STATE(1746), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1746), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1413), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1110] = { + [sym__getline_exp] = STATE(236), + [sym_getline_input] = STATE(236), + [sym_getline_file] = STATE(236), + [sym__exp] = STATE(236), + [sym_ternary_exp] = STATE(236), + [sym_binary_exp] = STATE(236), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(236), + [sym_update_exp] = STATE(236), + [sym_assignment_exp] = STATE(236), + [sym_piped_io_exp] = STATE(236), + [sym_string_concat] = STATE(236), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(236), + [sym_regex_constant] = STATE(236), + [sym_grouping] = STATE(236), + [sym__primitive] = STATE(236), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(236), + [sym_string] = STATE(236), + [sym_func_call] = STATE(236), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(236), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1111] = { + [sym__getline_exp] = STATE(2036), + [sym_getline_input] = STATE(2036), + [sym_getline_file] = STATE(2036), + [sym__exp] = STATE(2036), + [sym_ternary_exp] = STATE(457), + [sym_binary_exp] = STATE(457), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(457), + [sym_update_exp] = STATE(2036), + [sym_assignment_exp] = STATE(2036), + [sym_piped_io_exp] = STATE(2036), + [sym_string_concat] = STATE(457), + [sym_field_ref] = STATE(282), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(2036), + [sym_regex_constant] = STATE(2036), + [sym_grouping] = STATE(457), + [sym__primitive] = STATE(457), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(199), + [sym_number] = STATE(457), + [sym_string] = STATE(457), + [sym_func_call] = STATE(457), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(2036), + [sym_identifier] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1112] = { + [sym__getline_exp] = STATE(1726), + [sym_getline_input] = STATE(1726), + [sym_getline_file] = STATE(1726), + [sym__exp] = STATE(1726), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1726), + [sym_assignment_exp] = STATE(1726), + [sym_piped_io_exp] = STATE(1726), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1726), + [sym_regex_constant] = STATE(1726), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1726), + [sym_identifier] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1113] = { + [sym__getline_exp] = STATE(2029), + [sym_getline_input] = STATE(2029), + [sym_getline_file] = STATE(2029), + [sym__exp] = STATE(2029), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2029), + [sym_assignment_exp] = STATE(2029), + [sym_piped_io_exp] = STATE(2029), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2029), + [sym_regex_constant] = STATE(2029), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2029), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1114] = { + [sym__getline_exp] = STATE(208), + [sym_getline_input] = STATE(208), + [sym_getline_file] = STATE(208), + [sym__exp] = STATE(208), + [sym_ternary_exp] = STATE(208), + [sym_binary_exp] = STATE(208), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(208), + [sym_update_exp] = STATE(208), + [sym_assignment_exp] = STATE(208), + [sym_piped_io_exp] = STATE(208), + [sym_string_concat] = STATE(208), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(208), + [sym_regex_constant] = STATE(208), + [sym_grouping] = STATE(208), + [sym__primitive] = STATE(208), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(208), + [sym_string] = STATE(208), + [sym_func_call] = STATE(208), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(208), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1115] = { + [sym__getline_exp] = STATE(2023), + [sym_getline_input] = STATE(2023), + [sym_getline_file] = STATE(2023), + [sym__exp] = STATE(2023), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2023), + [sym_assignment_exp] = STATE(2023), + [sym_piped_io_exp] = STATE(2023), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2023), + [sym_regex_constant] = STATE(2023), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2023), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1116] = { + [sym__getline_exp] = STATE(1759), + [sym_getline_input] = STATE(1759), + [sym_getline_file] = STATE(1759), + [sym__exp] = STATE(1759), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1759), + [sym_assignment_exp] = STATE(1759), + [sym_piped_io_exp] = STATE(1759), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1759), + [sym_regex_constant] = STATE(1759), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1759), + [sym_identifier] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1117] = { + [sym__getline_exp] = STATE(1974), + [sym_getline_input] = STATE(1974), + [sym_getline_file] = STATE(1974), + [sym__exp] = STATE(1974), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1974), + [sym_assignment_exp] = STATE(1974), + [sym_piped_io_exp] = STATE(1974), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1974), + [sym_regex_constant] = STATE(1974), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1974), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1118] = { + [sym__getline_exp] = STATE(541), + [sym_getline_input] = STATE(541), + [sym_getline_file] = STATE(541), + [sym__exp] = STATE(541), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(541), + [sym_assignment_exp] = STATE(541), + [sym_piped_io_exp] = STATE(541), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(541), + [sym_regex_constant] = STATE(541), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(541), + [sym_identifier] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1119] = { + [sym__getline_exp] = STATE(542), + [sym_getline_input] = STATE(542), + [sym_getline_file] = STATE(542), + [sym__exp] = STATE(542), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(542), + [sym_assignment_exp] = STATE(542), + [sym_piped_io_exp] = STATE(542), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(542), + [sym_regex_constant] = STATE(542), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(542), + [sym_identifier] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1120] = { + [sym__getline_exp] = STATE(1792), + [sym_getline_input] = STATE(1792), + [sym_getline_file] = STATE(1792), + [sym__exp] = STATE(1792), + [sym_ternary_exp] = STATE(1792), + [sym_binary_exp] = STATE(1792), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1792), + [sym_update_exp] = STATE(1792), + [sym_assignment_exp] = STATE(1792), + [sym_piped_io_exp] = STATE(1792), + [sym_string_concat] = STATE(1792), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1792), + [sym_regex_constant] = STATE(1792), + [sym_grouping] = STATE(1792), + [sym__primitive] = STATE(1792), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1792), + [sym_string] = STATE(1792), + [sym_func_call] = STATE(1792), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1792), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1121] = { + [sym__getline_exp] = STATE(469), + [sym_getline_input] = STATE(469), + [sym_getline_file] = STATE(469), + [sym__exp] = STATE(469), + [sym_ternary_exp] = STATE(398), + [sym_binary_exp] = STATE(398), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(398), + [sym_update_exp] = STATE(469), + [sym_assignment_exp] = STATE(469), + [sym_piped_io_exp] = STATE(469), + [sym_string_concat] = STATE(398), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(469), + [sym_regex_constant] = STATE(469), + [sym_grouping] = STATE(398), + [sym__primitive] = STATE(398), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(193), + [sym_number] = STATE(398), + [sym_string] = STATE(398), + [sym_func_call] = STATE(398), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(469), + [sym_identifier] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1122] = { + [sym__getline_exp] = STATE(1571), + [sym_getline_input] = STATE(1571), + [sym_getline_file] = STATE(1571), + [sym__exp] = STATE(1571), + [sym_ternary_exp] = STATE(1571), + [sym_binary_exp] = STATE(1571), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1571), + [sym_update_exp] = STATE(1571), + [sym_assignment_exp] = STATE(1571), + [sym_piped_io_exp] = STATE(1571), + [sym_string_concat] = STATE(1571), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1571), + [sym_regex_constant] = STATE(1571), + [sym_grouping] = STATE(1571), + [sym__primitive] = STATE(1571), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1571), + [sym_string] = STATE(1571), + [sym_func_call] = STATE(1571), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1571), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1123] = { + [sym__getline_exp] = STATE(1576), + [sym_getline_input] = STATE(1576), + [sym_getline_file] = STATE(1576), + [sym__exp] = STATE(1576), + [sym_ternary_exp] = STATE(1576), + [sym_binary_exp] = STATE(1576), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1576), + [sym_update_exp] = STATE(1576), + [sym_assignment_exp] = STATE(1576), + [sym_piped_io_exp] = STATE(1576), + [sym_string_concat] = STATE(1576), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1576), + [sym_regex_constant] = STATE(1576), + [sym_grouping] = STATE(1576), + [sym__primitive] = STATE(1576), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1576), + [sym_string] = STATE(1576), + [sym_func_call] = STATE(1576), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1576), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1124] = { + [sym__getline_exp] = STATE(1672), + [sym_getline_input] = STATE(1672), + [sym_getline_file] = STATE(1672), + [sym__exp] = STATE(1672), + [sym_ternary_exp] = STATE(1672), + [sym_binary_exp] = STATE(1672), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1672), + [sym_update_exp] = STATE(1672), + [sym_assignment_exp] = STATE(1672), + [sym_piped_io_exp] = STATE(1672), + [sym_string_concat] = STATE(1672), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1672), + [sym_regex_constant] = STATE(1672), + [sym_grouping] = STATE(1672), + [sym__primitive] = STATE(1672), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1672), + [sym_string] = STATE(1672), + [sym_func_call] = STATE(1672), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1672), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1125] = { + [sym__getline_exp] = STATE(366), + [sym_getline_input] = STATE(366), + [sym_getline_file] = STATE(366), + [sym__exp] = STATE(366), + [sym_ternary_exp] = STATE(366), + [sym_binary_exp] = STATE(366), + [sym__binary_in] = STATE(372), + [sym_unary_exp] = STATE(366), + [sym_update_exp] = STATE(366), + [sym_assignment_exp] = STATE(366), + [sym_piped_io_exp] = STATE(366), + [sym_string_concat] = STATE(366), + [sym_field_ref] = STATE(228), + [sym_array_ref] = STATE(188), + [sym_regex] = STATE(366), + [sym_regex_constant] = STATE(366), + [sym_grouping] = STATE(366), + [sym__primitive] = STATE(366), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(184), + [sym_number] = STATE(366), + [sym_string] = STATE(366), + [sym_func_call] = STATE(366), + [sym__builtin_func_call] = STATE(354), + [sym_indirect_func_call] = STATE(366), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_getline] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1485), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_and] = ACTIONS(381), + [anon_sym_asort] = ACTIONS(381), + [anon_sym_asorti] = ACTIONS(381), + [anon_sym_bindtextdomain] = ACTIONS(381), + [anon_sym_compl] = ACTIONS(381), + [anon_sym_cos] = ACTIONS(381), + [anon_sym_dcgettext] = ACTIONS(381), + [anon_sym_dcngettext] = ACTIONS(381), + [anon_sym_exp] = ACTIONS(381), + [anon_sym_gensub] = ACTIONS(381), + [anon_sym_gsub] = ACTIONS(381), + [anon_sym_index] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_isarray] = ACTIONS(381), + [anon_sym_length] = ACTIONS(381), + [anon_sym_log] = ACTIONS(381), + [anon_sym_lshift] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_mktime] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_patsplit] = ACTIONS(381), + [anon_sym_rand] = ACTIONS(381), + [anon_sym_rshift] = ACTIONS(381), + [anon_sym_sin] = ACTIONS(381), + [anon_sym_split] = ACTIONS(381), + [anon_sym_sprintf] = ACTIONS(381), + [anon_sym_sqrt] = ACTIONS(381), + [anon_sym_srand] = ACTIONS(381), + [anon_sym_strftime] = ACTIONS(381), + [anon_sym_strtonum] = ACTIONS(381), + [anon_sym_sub] = ACTIONS(381), + [anon_sym_substr] = ACTIONS(381), + [anon_sym_systime] = ACTIONS(381), + [anon_sym_tolower] = ACTIONS(381), + [anon_sym_toupper] = ACTIONS(381), + [anon_sym_typeof] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + }, + [1126] = { + [sym__getline_exp] = STATE(1581), + [sym_getline_input] = STATE(1581), + [sym_getline_file] = STATE(1581), + [sym__exp] = STATE(1581), + [sym_ternary_exp] = STATE(1581), + [sym_binary_exp] = STATE(1581), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1581), + [sym_update_exp] = STATE(1581), + [sym_assignment_exp] = STATE(1581), + [sym_piped_io_exp] = STATE(1581), + [sym_string_concat] = STATE(1581), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1581), + [sym_regex_constant] = STATE(1581), + [sym_grouping] = STATE(1581), + [sym__primitive] = STATE(1581), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1581), + [sym_string] = STATE(1581), + [sym_func_call] = STATE(1581), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1581), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1127] = { + [sym__getline_exp] = STATE(406), + [sym_getline_input] = STATE(406), + [sym_getline_file] = STATE(406), + [sym__exp] = STATE(406), + [sym_ternary_exp] = STATE(406), + [sym_binary_exp] = STATE(406), + [sym__binary_in] = STATE(431), + [sym_unary_exp] = STATE(406), + [sym_update_exp] = STATE(406), + [sym_assignment_exp] = STATE(406), + [sym_piped_io_exp] = STATE(406), + [sym_string_concat] = STATE(406), + [sym_field_ref] = STATE(278), + [sym_array_ref] = STATE(240), + [sym_regex] = STATE(406), + [sym_regex_constant] = STATE(406), + [sym_grouping] = STATE(406), + [sym__primitive] = STATE(406), + [sym_namespace] = STATE(2450), + [sym_ns_qualified_name] = STATE(195), + [sym_number] = STATE(406), + [sym_string] = STATE(406), + [sym_func_call] = STATE(406), + [sym__builtin_func_call] = STATE(407), + [sym_indirect_func_call] = STATE(406), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_getline] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(1645), + [aux_sym_number_token1] = ACTIONS(133), + [aux_sym_number_token2] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_and] = ACTIONS(139), + [anon_sym_asort] = ACTIONS(139), + [anon_sym_asorti] = ACTIONS(139), + [anon_sym_bindtextdomain] = ACTIONS(139), + [anon_sym_compl] = ACTIONS(139), + [anon_sym_cos] = ACTIONS(139), + [anon_sym_dcgettext] = ACTIONS(139), + [anon_sym_dcngettext] = ACTIONS(139), + [anon_sym_exp] = ACTIONS(139), + [anon_sym_gensub] = ACTIONS(139), + [anon_sym_gsub] = ACTIONS(139), + [anon_sym_index] = ACTIONS(139), + [anon_sym_int] = ACTIONS(139), + [anon_sym_isarray] = ACTIONS(139), + [anon_sym_length] = ACTIONS(139), + [anon_sym_log] = ACTIONS(139), + [anon_sym_lshift] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_mktime] = ACTIONS(139), + [anon_sym_or] = ACTIONS(139), + [anon_sym_patsplit] = ACTIONS(139), + [anon_sym_rand] = ACTIONS(139), + [anon_sym_rshift] = ACTIONS(139), + [anon_sym_sin] = ACTIONS(139), + [anon_sym_split] = ACTIONS(139), + [anon_sym_sprintf] = ACTIONS(139), + [anon_sym_sqrt] = ACTIONS(139), + [anon_sym_srand] = ACTIONS(139), + [anon_sym_strftime] = ACTIONS(139), + [anon_sym_strtonum] = ACTIONS(139), + [anon_sym_sub] = ACTIONS(139), + [anon_sym_substr] = ACTIONS(139), + [anon_sym_systime] = ACTIONS(139), + [anon_sym_tolower] = ACTIONS(139), + [anon_sym_toupper] = ACTIONS(139), + [anon_sym_typeof] = ACTIONS(139), + [anon_sym_xor] = ACTIONS(139), + }, + [1128] = { + [sym__getline_exp] = STATE(1465), + [sym_getline_input] = STATE(1465), + [sym_getline_file] = STATE(1465), + [sym__exp] = STATE(1465), + [sym_ternary_exp] = STATE(1465), + [sym_binary_exp] = STATE(1465), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1465), + [sym_update_exp] = STATE(1465), + [sym_assignment_exp] = STATE(1465), + [sym_piped_io_exp] = STATE(1465), + [sym_string_concat] = STATE(1465), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1465), + [sym_regex_constant] = STATE(1465), + [sym_grouping] = STATE(1465), + [sym__primitive] = STATE(1465), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1465), + [sym_string] = STATE(1465), + [sym_func_call] = STATE(1465), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1465), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1129] = { + [sym__getline_exp] = STATE(214), + [sym_getline_input] = STATE(214), + [sym_getline_file] = STATE(214), + [sym__exp] = STATE(214), + [sym_ternary_exp] = STATE(214), + [sym_binary_exp] = STATE(214), + [sym__binary_in] = STATE(215), + [sym_unary_exp] = STATE(214), + [sym_update_exp] = STATE(214), + [sym_assignment_exp] = STATE(214), + [sym_piped_io_exp] = STATE(214), + [sym_string_concat] = STATE(214), + [sym_field_ref] = STATE(220), + [sym_array_ref] = STATE(186), + [sym_regex] = STATE(214), + [sym_regex_constant] = STATE(214), + [sym_grouping] = STATE(214), + [sym__primitive] = STATE(214), + [sym_namespace] = STATE(2516), + [sym_ns_qualified_name] = STATE(183), + [sym_number] = STATE(214), + [sym_string] = STATE(214), + [sym_func_call] = STATE(214), + [sym__builtin_func_call] = STATE(229), + [sym_indirect_func_call] = STATE(214), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_getline] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(1527), + [aux_sym_number_token1] = ACTIONS(1529), + [aux_sym_number_token2] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1535), + [anon_sym_asort] = ACTIONS(1535), + [anon_sym_asorti] = ACTIONS(1535), + [anon_sym_bindtextdomain] = ACTIONS(1535), + [anon_sym_compl] = ACTIONS(1535), + [anon_sym_cos] = ACTIONS(1535), + [anon_sym_dcgettext] = ACTIONS(1535), + [anon_sym_dcngettext] = ACTIONS(1535), + [anon_sym_exp] = ACTIONS(1535), + [anon_sym_gensub] = ACTIONS(1535), + [anon_sym_gsub] = ACTIONS(1535), + [anon_sym_index] = ACTIONS(1535), + [anon_sym_int] = ACTIONS(1535), + [anon_sym_isarray] = ACTIONS(1535), + [anon_sym_length] = ACTIONS(1535), + [anon_sym_log] = ACTIONS(1535), + [anon_sym_lshift] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mktime] = ACTIONS(1535), + [anon_sym_or] = ACTIONS(1535), + [anon_sym_patsplit] = ACTIONS(1535), + [anon_sym_rand] = ACTIONS(1535), + [anon_sym_rshift] = ACTIONS(1535), + [anon_sym_sin] = ACTIONS(1535), + [anon_sym_split] = ACTIONS(1535), + [anon_sym_sprintf] = ACTIONS(1535), + [anon_sym_sqrt] = ACTIONS(1535), + [anon_sym_srand] = ACTIONS(1535), + [anon_sym_strftime] = ACTIONS(1535), + [anon_sym_strtonum] = ACTIONS(1535), + [anon_sym_sub] = ACTIONS(1535), + [anon_sym_substr] = ACTIONS(1535), + [anon_sym_systime] = ACTIONS(1535), + [anon_sym_tolower] = ACTIONS(1535), + [anon_sym_toupper] = ACTIONS(1535), + [anon_sym_typeof] = ACTIONS(1535), + [anon_sym_xor] = ACTIONS(1535), + }, + [1130] = { + [sym__getline_exp] = STATE(1957), + [sym_getline_input] = STATE(1957), + [sym_getline_file] = STATE(1957), + [sym__exp] = STATE(1957), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1957), + [sym_assignment_exp] = STATE(1957), + [sym_piped_io_exp] = STATE(1957), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1957), + [sym_regex_constant] = STATE(1957), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1957), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1131] = { + [sym__getline_exp] = STATE(1469), + [sym_getline_input] = STATE(1469), + [sym_getline_file] = STATE(1469), + [sym__exp] = STATE(1469), + [sym_ternary_exp] = STATE(1469), + [sym_binary_exp] = STATE(1469), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1469), + [sym_update_exp] = STATE(1469), + [sym_assignment_exp] = STATE(1469), + [sym_piped_io_exp] = STATE(1469), + [sym_string_concat] = STATE(1469), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1469), + [sym_regex_constant] = STATE(1469), + [sym_grouping] = STATE(1469), + [sym__primitive] = STATE(1469), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1469), + [sym_string] = STATE(1469), + [sym_func_call] = STATE(1469), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1469), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1132] = { + [sym__getline_exp] = STATE(2002), + [sym_getline_input] = STATE(2002), + [sym_getline_file] = STATE(2002), + [sym__exp] = STATE(2002), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(2002), + [sym_assignment_exp] = STATE(2002), + [sym_piped_io_exp] = STATE(2002), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(2002), + [sym_regex_constant] = STATE(2002), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(2002), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1133] = { + [sym__getline_exp] = STATE(1413), + [sym_getline_input] = STATE(1413), + [sym_getline_file] = STATE(1413), + [sym__exp] = STATE(1413), + [sym_ternary_exp] = STATE(1413), + [sym_binary_exp] = STATE(1413), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1413), + [sym_update_exp] = STATE(1413), + [sym_assignment_exp] = STATE(1413), + [sym_piped_io_exp] = STATE(1413), + [sym_string_concat] = STATE(1413), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1413), + [sym_regex_constant] = STATE(1413), + [sym_grouping] = STATE(1413), + [sym__primitive] = STATE(1413), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1413), + [sym_string] = STATE(1413), + [sym_func_call] = STATE(1413), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1413), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1134] = { + [sym__getline_exp] = STATE(1470), + [sym_getline_input] = STATE(1470), + [sym_getline_file] = STATE(1470), + [sym__exp] = STATE(1470), + [sym_ternary_exp] = STATE(1470), + [sym_binary_exp] = STATE(1470), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1470), + [sym_update_exp] = STATE(1470), + [sym_assignment_exp] = STATE(1470), + [sym_piped_io_exp] = STATE(1470), + [sym_string_concat] = STATE(1470), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1470), + [sym_regex_constant] = STATE(1470), + [sym_grouping] = STATE(1470), + [sym__primitive] = STATE(1470), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1470), + [sym_string] = STATE(1470), + [sym_func_call] = STATE(1470), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1470), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1135] = { + [sym__getline_exp] = STATE(1468), + [sym_getline_input] = STATE(1468), + [sym_getline_file] = STATE(1468), + [sym__exp] = STATE(1468), + [sym_ternary_exp] = STATE(1468), + [sym_binary_exp] = STATE(1468), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1468), + [sym_update_exp] = STATE(1468), + [sym_assignment_exp] = STATE(1468), + [sym_piped_io_exp] = STATE(1468), + [sym_string_concat] = STATE(1468), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1468), + [sym_regex_constant] = STATE(1468), + [sym_grouping] = STATE(1468), + [sym__primitive] = STATE(1468), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1468), + [sym_string] = STATE(1468), + [sym_func_call] = STATE(1468), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1468), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1136] = { + [sym__getline_exp] = STATE(2035), + [sym_getline_input] = STATE(2035), + [sym_getline_file] = STATE(2035), + [sym__exp] = STATE(2035), + [sym_ternary_exp] = STATE(1647), + [sym_binary_exp] = STATE(1647), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1647), + [sym_update_exp] = STATE(2035), + [sym_assignment_exp] = STATE(2035), + [sym_piped_io_exp] = STATE(2035), + [sym_string_concat] = STATE(1647), + [sym_field_ref] = STATE(1394), + [sym_array_ref] = STATE(1349), + [sym_regex] = STATE(2035), + [sym_regex_constant] = STATE(2035), + [sym_grouping] = STATE(1647), + [sym__primitive] = STATE(1647), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1325), + [sym_number] = STATE(1647), + [sym_string] = STATE(1647), + [sym_func_call] = STATE(1647), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(2035), + [sym_identifier] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1137] = { + [sym__getline_exp] = STATE(1450), + [sym_getline_input] = STATE(1450), + [sym_getline_file] = STATE(1450), + [sym__exp] = STATE(1450), + [sym_ternary_exp] = STATE(1450), + [sym_binary_exp] = STATE(1450), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1450), + [sym_update_exp] = STATE(1450), + [sym_assignment_exp] = STATE(1450), + [sym_piped_io_exp] = STATE(1450), + [sym_string_concat] = STATE(1450), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1450), + [sym_regex_constant] = STATE(1450), + [sym_grouping] = STATE(1450), + [sym__primitive] = STATE(1450), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1450), + [sym_string] = STATE(1450), + [sym_func_call] = STATE(1450), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1450), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1138] = { + [sym__getline_exp] = STATE(1798), + [sym_getline_input] = STATE(1798), + [sym_getline_file] = STATE(1798), + [sym__exp] = STATE(1798), + [sym_ternary_exp] = STATE(1798), + [sym_binary_exp] = STATE(1798), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1798), + [sym_update_exp] = STATE(1798), + [sym_assignment_exp] = STATE(1798), + [sym_piped_io_exp] = STATE(1798), + [sym_string_concat] = STATE(1798), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1798), + [sym_regex_constant] = STATE(1798), + [sym_grouping] = STATE(1798), + [sym__primitive] = STATE(1798), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1798), + [sym_string] = STATE(1798), + [sym_func_call] = STATE(1798), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1798), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1139] = { + [sym__getline_exp] = STATE(1565), + [sym_getline_input] = STATE(1565), + [sym_getline_file] = STATE(1565), + [sym__exp] = STATE(1565), + [sym_ternary_exp] = STATE(1565), + [sym_binary_exp] = STATE(1565), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1565), + [sym_update_exp] = STATE(1565), + [sym_assignment_exp] = STATE(1565), + [sym_piped_io_exp] = STATE(1565), + [sym_string_concat] = STATE(1565), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1565), + [sym_regex_constant] = STATE(1565), + [sym_grouping] = STATE(1565), + [sym__primitive] = STATE(1565), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1565), + [sym_string] = STATE(1565), + [sym_func_call] = STATE(1565), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1565), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1140] = { + [sym__getline_exp] = STATE(1772), + [sym_getline_input] = STATE(1772), + [sym_getline_file] = STATE(1772), + [sym__exp] = STATE(1772), + [sym_ternary_exp] = STATE(1772), + [sym_binary_exp] = STATE(1772), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1772), + [sym_update_exp] = STATE(1772), + [sym_assignment_exp] = STATE(1772), + [sym_piped_io_exp] = STATE(1772), + [sym_string_concat] = STATE(1772), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1772), + [sym_regex_constant] = STATE(1772), + [sym_grouping] = STATE(1772), + [sym__primitive] = STATE(1772), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1772), + [sym_string] = STATE(1772), + [sym_func_call] = STATE(1772), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1772), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1141] = { + [sym__getline_exp] = STATE(1776), + [sym_getline_input] = STATE(1776), + [sym_getline_file] = STATE(1776), + [sym__exp] = STATE(1776), + [sym_ternary_exp] = STATE(1776), + [sym_binary_exp] = STATE(1776), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1776), + [sym_update_exp] = STATE(1776), + [sym_assignment_exp] = STATE(1776), + [sym_piped_io_exp] = STATE(1776), + [sym_string_concat] = STATE(1776), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1776), + [sym_regex_constant] = STATE(1776), + [sym_grouping] = STATE(1776), + [sym__primitive] = STATE(1776), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1776), + [sym_string] = STATE(1776), + [sym_func_call] = STATE(1776), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1776), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1142] = { + [sym__getline_exp] = STATE(1651), + [sym_getline_input] = STATE(1651), + [sym_getline_file] = STATE(1651), + [sym__exp] = STATE(1651), + [sym_ternary_exp] = STATE(1651), + [sym_binary_exp] = STATE(1651), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1651), + [sym_update_exp] = STATE(1651), + [sym_assignment_exp] = STATE(1651), + [sym_piped_io_exp] = STATE(1651), + [sym_string_concat] = STATE(1651), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1651), + [sym_regex_constant] = STATE(1651), + [sym_grouping] = STATE(1651), + [sym__primitive] = STATE(1651), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1651), + [sym_string] = STATE(1651), + [sym_func_call] = STATE(1651), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1651), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1143] = { + [sym__getline_exp] = STATE(1778), + [sym_getline_input] = STATE(1778), + [sym_getline_file] = STATE(1778), + [sym__exp] = STATE(1778), + [sym_ternary_exp] = STATE(1778), + [sym_binary_exp] = STATE(1778), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1778), + [sym_update_exp] = STATE(1778), + [sym_assignment_exp] = STATE(1778), + [sym_piped_io_exp] = STATE(1778), + [sym_string_concat] = STATE(1778), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1778), + [sym_regex_constant] = STATE(1778), + [sym_grouping] = STATE(1778), + [sym__primitive] = STATE(1778), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1778), + [sym_string] = STATE(1778), + [sym_func_call] = STATE(1778), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1778), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1144] = { + [sym__getline_exp] = STATE(1782), + [sym_getline_input] = STATE(1782), + [sym_getline_file] = STATE(1782), + [sym__exp] = STATE(1782), + [sym_ternary_exp] = STATE(1782), + [sym_binary_exp] = STATE(1782), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1782), + [sym_update_exp] = STATE(1782), + [sym_assignment_exp] = STATE(1782), + [sym_piped_io_exp] = STATE(1782), + [sym_string_concat] = STATE(1782), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1782), + [sym_regex_constant] = STATE(1782), + [sym_grouping] = STATE(1782), + [sym__primitive] = STATE(1782), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1782), + [sym_string] = STATE(1782), + [sym_func_call] = STATE(1782), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1782), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1145] = { + [sym__getline_exp] = STATE(1796), + [sym_getline_input] = STATE(1796), + [sym_getline_file] = STATE(1796), + [sym__exp] = STATE(1796), + [sym_ternary_exp] = STATE(1796), + [sym_binary_exp] = STATE(1796), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1796), + [sym_update_exp] = STATE(1796), + [sym_assignment_exp] = STATE(1796), + [sym_piped_io_exp] = STATE(1796), + [sym_string_concat] = STATE(1796), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1796), + [sym_regex_constant] = STATE(1796), + [sym_grouping] = STATE(1796), + [sym__primitive] = STATE(1796), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1796), + [sym_string] = STATE(1796), + [sym_func_call] = STATE(1796), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1796), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1146] = { + [sym__getline_exp] = STATE(1791), + [sym_getline_input] = STATE(1791), + [sym_getline_file] = STATE(1791), + [sym__exp] = STATE(1791), + [sym_ternary_exp] = STATE(1791), + [sym_binary_exp] = STATE(1791), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1791), + [sym_update_exp] = STATE(1791), + [sym_assignment_exp] = STATE(1791), + [sym_piped_io_exp] = STATE(1791), + [sym_string_concat] = STATE(1791), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1791), + [sym_regex_constant] = STATE(1791), + [sym_grouping] = STATE(1791), + [sym__primitive] = STATE(1791), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1791), + [sym_string] = STATE(1791), + [sym_func_call] = STATE(1791), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1791), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1147] = { + [sym__getline_exp] = STATE(1790), + [sym_getline_input] = STATE(1790), + [sym_getline_file] = STATE(1790), + [sym__exp] = STATE(1790), + [sym_ternary_exp] = STATE(1790), + [sym_binary_exp] = STATE(1790), + [sym__binary_in] = STATE(1635), + [sym_unary_exp] = STATE(1790), + [sym_update_exp] = STATE(1790), + [sym_assignment_exp] = STATE(1790), + [sym_piped_io_exp] = STATE(1790), + [sym_string_concat] = STATE(1790), + [sym_field_ref] = STATE(1503), + [sym_array_ref] = STATE(1479), + [sym_regex] = STATE(1790), + [sym_regex_constant] = STATE(1790), + [sym_grouping] = STATE(1790), + [sym__primitive] = STATE(1790), + [sym_namespace] = STATE(2520), + [sym_ns_qualified_name] = STATE(1461), + [sym_number] = STATE(1790), + [sym_string] = STATE(1790), + [sym_func_call] = STATE(1790), + [sym__builtin_func_call] = STATE(1644), + [sym_indirect_func_call] = STATE(1790), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_getline] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_AT] = ACTIONS(1587), + [aux_sym_number_token1] = ACTIONS(81), + [aux_sym_number_token2] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_and] = ACTIONS(85), + [anon_sym_asort] = ACTIONS(85), + [anon_sym_asorti] = ACTIONS(85), + [anon_sym_bindtextdomain] = ACTIONS(85), + [anon_sym_compl] = ACTIONS(85), + [anon_sym_cos] = ACTIONS(85), + [anon_sym_dcgettext] = ACTIONS(85), + [anon_sym_dcngettext] = ACTIONS(85), + [anon_sym_exp] = ACTIONS(85), + [anon_sym_gensub] = ACTIONS(85), + [anon_sym_gsub] = ACTIONS(85), + [anon_sym_index] = ACTIONS(85), + [anon_sym_int] = ACTIONS(85), + [anon_sym_isarray] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_log] = ACTIONS(85), + [anon_sym_lshift] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_mktime] = ACTIONS(85), + [anon_sym_or] = ACTIONS(85), + [anon_sym_patsplit] = ACTIONS(85), + [anon_sym_rand] = ACTIONS(85), + [anon_sym_rshift] = ACTIONS(85), + [anon_sym_sin] = ACTIONS(85), + [anon_sym_split] = ACTIONS(85), + [anon_sym_sprintf] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_srand] = ACTIONS(85), + [anon_sym_strftime] = ACTIONS(85), + [anon_sym_strtonum] = ACTIONS(85), + [anon_sym_sub] = ACTIONS(85), + [anon_sym_substr] = ACTIONS(85), + [anon_sym_systime] = ACTIONS(85), + [anon_sym_tolower] = ACTIONS(85), + [anon_sym_toupper] = ACTIONS(85), + [anon_sym_typeof] = ACTIONS(85), + [anon_sym_xor] = ACTIONS(85), + }, + [1148] = { + [sym__getline_exp] = STATE(1981), + [sym_getline_input] = STATE(1981), + [sym_getline_file] = STATE(1981), + [sym__exp] = STATE(1981), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1981), + [sym_assignment_exp] = STATE(1981), + [sym_piped_io_exp] = STATE(1981), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1981), + [sym_regex_constant] = STATE(1981), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1981), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1149] = { + [sym__getline_exp] = STATE(1449), + [sym_getline_input] = STATE(1449), + [sym_getline_file] = STATE(1449), + [sym__exp] = STATE(1449), + [sym_ternary_exp] = STATE(1449), + [sym_binary_exp] = STATE(1449), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1449), + [sym_update_exp] = STATE(1449), + [sym_assignment_exp] = STATE(1449), + [sym_piped_io_exp] = STATE(1449), + [sym_string_concat] = STATE(1449), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1449), + [sym_regex_constant] = STATE(1449), + [sym_grouping] = STATE(1449), + [sym__primitive] = STATE(1449), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1449), + [sym_string] = STATE(1449), + [sym_func_call] = STATE(1449), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1449), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1150] = { + [sym__getline_exp] = STATE(1675), + [sym_getline_input] = STATE(1675), + [sym_getline_file] = STATE(1675), + [sym__exp] = STATE(1675), + [sym_ternary_exp] = STATE(1675), + [sym_binary_exp] = STATE(1675), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1675), + [sym_update_exp] = STATE(1675), + [sym_assignment_exp] = STATE(1675), + [sym_piped_io_exp] = STATE(1675), + [sym_string_concat] = STATE(1675), + [sym_field_ref] = STATE(1516), + [sym_array_ref] = STATE(1488), + [sym_regex] = STATE(1675), + [sym_regex_constant] = STATE(1675), + [sym_grouping] = STATE(1675), + [sym__primitive] = STATE(1675), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1480), + [sym_number] = STATE(1675), + [sym_string] = STATE(1675), + [sym_func_call] = STATE(1675), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1675), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(1429), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1151] = { + [sym__getline_exp] = STATE(1456), + [sym_getline_input] = STATE(1456), + [sym_getline_file] = STATE(1456), + [sym__exp] = STATE(1456), + [sym_ternary_exp] = STATE(1456), + [sym_binary_exp] = STATE(1456), + [sym__binary_in] = STATE(1404), + [sym_unary_exp] = STATE(1456), + [sym_update_exp] = STATE(1456), + [sym_assignment_exp] = STATE(1456), + [sym_piped_io_exp] = STATE(1456), + [sym_string_concat] = STATE(1456), + [sym_field_ref] = STATE(1402), + [sym_array_ref] = STATE(1362), + [sym_regex] = STATE(1456), + [sym_regex_constant] = STATE(1456), + [sym_grouping] = STATE(1456), + [sym__primitive] = STATE(1456), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1350), + [sym_number] = STATE(1456), + [sym_string] = STATE(1456), + [sym_func_call] = STATE(1456), + [sym__builtin_func_call] = STATE(1400), + [sym_indirect_func_call] = STATE(1456), + [sym_identifier] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_getline] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(1363), + [aux_sym_number_token1] = ACTIONS(1365), + [aux_sym_number_token2] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_asort] = ACTIONS(1371), + [anon_sym_asorti] = ACTIONS(1371), + [anon_sym_bindtextdomain] = ACTIONS(1371), + [anon_sym_compl] = ACTIONS(1371), + [anon_sym_cos] = ACTIONS(1371), + [anon_sym_dcgettext] = ACTIONS(1371), + [anon_sym_dcngettext] = ACTIONS(1371), + [anon_sym_exp] = ACTIONS(1371), + [anon_sym_gensub] = ACTIONS(1371), + [anon_sym_gsub] = ACTIONS(1371), + [anon_sym_index] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_isarray] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_log] = ACTIONS(1371), + [anon_sym_lshift] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mktime] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_patsplit] = ACTIONS(1371), + [anon_sym_rand] = ACTIONS(1371), + [anon_sym_rshift] = ACTIONS(1371), + [anon_sym_sin] = ACTIONS(1371), + [anon_sym_split] = ACTIONS(1371), + [anon_sym_sprintf] = ACTIONS(1371), + [anon_sym_sqrt] = ACTIONS(1371), + [anon_sym_srand] = ACTIONS(1371), + [anon_sym_strftime] = ACTIONS(1371), + [anon_sym_strtonum] = ACTIONS(1371), + [anon_sym_sub] = ACTIONS(1371), + [anon_sym_substr] = ACTIONS(1371), + [anon_sym_systime] = ACTIONS(1371), + [anon_sym_tolower] = ACTIONS(1371), + [anon_sym_toupper] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_xor] = ACTIONS(1371), + }, + [1152] = { + [sym__getline_exp] = STATE(1750), + [sym_getline_input] = STATE(1750), + [sym_getline_file] = STATE(1750), + [sym__exp] = STATE(1750), + [sym_ternary_exp] = STATE(1801), + [sym_binary_exp] = STATE(1801), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1801), + [sym_update_exp] = STATE(1750), + [sym_assignment_exp] = STATE(1750), + [sym_piped_io_exp] = STATE(1750), + [sym_string_concat] = STATE(1801), + [sym_field_ref] = STATE(1526), + [sym_array_ref] = STATE(1511), + [sym_regex] = STATE(1750), + [sym_regex_constant] = STATE(1750), + [sym_grouping] = STATE(1801), + [sym__primitive] = STATE(1801), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1475), + [sym_number] = STATE(1801), + [sym_string] = STATE(1801), + [sym_func_call] = STATE(1801), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1750), + [sym_identifier] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_getline] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(599), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1153] = { + [sym__getline_exp] = STATE(1991), + [sym_getline_input] = STATE(1991), + [sym_getline_file] = STATE(1991), + [sym__exp] = STATE(1991), + [sym_ternary_exp] = STATE(1876), + [sym_binary_exp] = STATE(1876), + [sym__binary_in] = STATE(1878), + [sym_unary_exp] = STATE(1876), + [sym_update_exp] = STATE(1991), + [sym_assignment_exp] = STATE(1991), + [sym_piped_io_exp] = STATE(1991), + [sym_string_concat] = STATE(1876), + [sym_field_ref] = STATE(1587), + [sym_array_ref] = STATE(1542), + [sym_regex] = STATE(1991), + [sym_regex_constant] = STATE(1991), + [sym_grouping] = STATE(1876), + [sym__primitive] = STATE(1876), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1489), + [sym_number] = STATE(1876), + [sym_string] = STATE(1876), + [sym_func_call] = STATE(1876), + [sym__builtin_func_call] = STATE(1879), + [sym_indirect_func_call] = STATE(1991), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_getline] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [aux_sym_number_token1] = ACTIONS(1307), + [aux_sym_number_token2] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1313), + [anon_sym_asort] = ACTIONS(1313), + [anon_sym_asorti] = ACTIONS(1313), + [anon_sym_bindtextdomain] = ACTIONS(1313), + [anon_sym_compl] = ACTIONS(1313), + [anon_sym_cos] = ACTIONS(1313), + [anon_sym_dcgettext] = ACTIONS(1313), + [anon_sym_dcngettext] = ACTIONS(1313), + [anon_sym_exp] = ACTIONS(1313), + [anon_sym_gensub] = ACTIONS(1313), + [anon_sym_gsub] = ACTIONS(1313), + [anon_sym_index] = ACTIONS(1313), + [anon_sym_int] = ACTIONS(1313), + [anon_sym_isarray] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_log] = ACTIONS(1313), + [anon_sym_lshift] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mktime] = ACTIONS(1313), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_patsplit] = ACTIONS(1313), + [anon_sym_rand] = ACTIONS(1313), + [anon_sym_rshift] = ACTIONS(1313), + [anon_sym_sin] = ACTIONS(1313), + [anon_sym_split] = ACTIONS(1313), + [anon_sym_sprintf] = ACTIONS(1313), + [anon_sym_sqrt] = ACTIONS(1313), + [anon_sym_srand] = ACTIONS(1313), + [anon_sym_strftime] = ACTIONS(1313), + [anon_sym_strtonum] = ACTIONS(1313), + [anon_sym_sub] = ACTIONS(1313), + [anon_sym_substr] = ACTIONS(1313), + [anon_sym_systime] = ACTIONS(1313), + [anon_sym_tolower] = ACTIONS(1313), + [anon_sym_toupper] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym_xor] = ACTIONS(1313), + }, + [1154] = { + [sym__getline_exp] = STATE(1559), + [sym_getline_input] = STATE(1559), + [sym_getline_file] = STATE(1559), + [sym__exp] = STATE(1559), + [sym_ternary_exp] = STATE(1559), + [sym_binary_exp] = STATE(1559), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1559), + [sym_update_exp] = STATE(1559), + [sym_assignment_exp] = STATE(1559), + [sym_piped_io_exp] = STATE(1559), + [sym_string_concat] = STATE(1559), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1559), + [sym_regex_constant] = STATE(1559), + [sym_grouping] = STATE(1559), + [sym__primitive] = STATE(1559), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1559), + [sym_string] = STATE(1559), + [sym_func_call] = STATE(1559), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1559), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1155] = { + [sym__getline_exp] = STATE(1557), + [sym_getline_input] = STATE(1557), + [sym_getline_file] = STATE(1557), + [sym__exp] = STATE(1557), + [sym_ternary_exp] = STATE(1557), + [sym_binary_exp] = STATE(1557), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1557), + [sym_update_exp] = STATE(1557), + [sym_assignment_exp] = STATE(1557), + [sym_piped_io_exp] = STATE(1557), + [sym_string_concat] = STATE(1557), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1557), + [sym_regex_constant] = STATE(1557), + [sym_grouping] = STATE(1557), + [sym__primitive] = STATE(1557), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1557), + [sym_string] = STATE(1557), + [sym_func_call] = STATE(1557), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1557), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1156] = { + [sym__getline_exp] = STATE(1556), + [sym_getline_input] = STATE(1556), + [sym_getline_file] = STATE(1556), + [sym__exp] = STATE(1556), + [sym_ternary_exp] = STATE(1556), + [sym_binary_exp] = STATE(1556), + [sym__binary_in] = STATE(1583), + [sym_unary_exp] = STATE(1556), + [sym_update_exp] = STATE(1556), + [sym_assignment_exp] = STATE(1556), + [sym_piped_io_exp] = STATE(1556), + [sym_string_concat] = STATE(1556), + [sym_field_ref] = STATE(1547), + [sym_array_ref] = STATE(1517), + [sym_regex] = STATE(1556), + [sym_regex_constant] = STATE(1556), + [sym_grouping] = STATE(1556), + [sym__primitive] = STATE(1556), + [sym_namespace] = STATE(2369), + [sym_ns_qualified_name] = STATE(1501), + [sym_number] = STATE(1556), + [sym_string] = STATE(1556), + [sym_func_call] = STATE(1556), + [sym__builtin_func_call] = STATE(1551), + [sym_indirect_func_call] = STATE(1556), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_getline] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1567), + [aux_sym_number_token1] = ACTIONS(1569), + [aux_sym_number_token2] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_asort] = ACTIONS(1575), + [anon_sym_asorti] = ACTIONS(1575), + [anon_sym_bindtextdomain] = ACTIONS(1575), + [anon_sym_compl] = ACTIONS(1575), + [anon_sym_cos] = ACTIONS(1575), + [anon_sym_dcgettext] = ACTIONS(1575), + [anon_sym_dcngettext] = ACTIONS(1575), + [anon_sym_exp] = ACTIONS(1575), + [anon_sym_gensub] = ACTIONS(1575), + [anon_sym_gsub] = ACTIONS(1575), + [anon_sym_index] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_isarray] = ACTIONS(1575), + [anon_sym_length] = ACTIONS(1575), + [anon_sym_log] = ACTIONS(1575), + [anon_sym_lshift] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mktime] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_patsplit] = ACTIONS(1575), + [anon_sym_rand] = ACTIONS(1575), + [anon_sym_rshift] = ACTIONS(1575), + [anon_sym_sin] = ACTIONS(1575), + [anon_sym_split] = ACTIONS(1575), + [anon_sym_sprintf] = ACTIONS(1575), + [anon_sym_sqrt] = ACTIONS(1575), + [anon_sym_srand] = ACTIONS(1575), + [anon_sym_strftime] = ACTIONS(1575), + [anon_sym_strtonum] = ACTIONS(1575), + [anon_sym_sub] = ACTIONS(1575), + [anon_sym_substr] = ACTIONS(1575), + [anon_sym_systime] = ACTIONS(1575), + [anon_sym_tolower] = ACTIONS(1575), + [anon_sym_toupper] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + }, + [1157] = { + [sym__getline_exp] = STATE(507), + [sym_getline_input] = STATE(507), + [sym_getline_file] = STATE(507), + [sym__exp] = STATE(507), + [sym_ternary_exp] = STATE(507), + [sym_binary_exp] = STATE(507), + [sym__binary_in] = STATE(500), + [sym_unary_exp] = STATE(507), + [sym_update_exp] = STATE(507), + [sym_assignment_exp] = STATE(507), + [sym_piped_io_exp] = STATE(507), + [sym_string_concat] = STATE(507), + [sym_field_ref] = STATE(522), + [sym_array_ref] = STATE(481), + [sym_regex] = STATE(507), + [sym_regex_constant] = STATE(507), + [sym_grouping] = STATE(507), + [sym__primitive] = STATE(507), + [sym_namespace] = STATE(2374), + [sym_ns_qualified_name] = STATE(409), + [sym_number] = STATE(507), + [sym_string] = STATE(507), + [sym_func_call] = STATE(507), + [sym__builtin_func_call] = STATE(497), + [sym_indirect_func_call] = STATE(507), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_getline] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1391), + [aux_sym_number_token1] = ACTIONS(1393), + [aux_sym_number_token2] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_asort] = ACTIONS(1399), + [anon_sym_asorti] = ACTIONS(1399), + [anon_sym_bindtextdomain] = ACTIONS(1399), + [anon_sym_compl] = ACTIONS(1399), + [anon_sym_cos] = ACTIONS(1399), + [anon_sym_dcgettext] = ACTIONS(1399), + [anon_sym_dcngettext] = ACTIONS(1399), + [anon_sym_exp] = ACTIONS(1399), + [anon_sym_gensub] = ACTIONS(1399), + [anon_sym_gsub] = ACTIONS(1399), + [anon_sym_index] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_isarray] = ACTIONS(1399), + [anon_sym_length] = ACTIONS(1399), + [anon_sym_log] = ACTIONS(1399), + [anon_sym_lshift] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mktime] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_patsplit] = ACTIONS(1399), + [anon_sym_rand] = ACTIONS(1399), + [anon_sym_rshift] = ACTIONS(1399), + [anon_sym_sin] = ACTIONS(1399), + [anon_sym_split] = ACTIONS(1399), + [anon_sym_sprintf] = ACTIONS(1399), + [anon_sym_sqrt] = ACTIONS(1399), + [anon_sym_srand] = ACTIONS(1399), + [anon_sym_strftime] = ACTIONS(1399), + [anon_sym_strtonum] = ACTIONS(1399), + [anon_sym_sub] = ACTIONS(1399), + [anon_sym_substr] = ACTIONS(1399), + [anon_sym_systime] = ACTIONS(1399), + [anon_sym_tolower] = ACTIONS(1399), + [anon_sym_toupper] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_xor] = ACTIONS(1399), + }, + [1158] = { + [sym__getline_exp] = STATE(1755), + [sym_getline_input] = STATE(1755), + [sym_getline_file] = STATE(1755), + [sym__exp] = STATE(1755), + [sym_ternary_exp] = STATE(1719), + [sym_binary_exp] = STATE(1719), + [sym__binary_in] = STATE(1684), + [sym_unary_exp] = STATE(1719), + [sym_update_exp] = STATE(1755), + [sym_assignment_exp] = STATE(1755), + [sym_piped_io_exp] = STATE(1755), + [sym_string_concat] = STATE(1719), + [sym_field_ref] = STATE(1464), + [sym_array_ref] = STATE(1427), + [sym_regex] = STATE(1755), + [sym_regex_constant] = STATE(1755), + [sym_grouping] = STATE(1719), + [sym__primitive] = STATE(1719), + [sym_namespace] = STATE(2483), + [sym_ns_qualified_name] = STATE(1375), + [sym_number] = STATE(1719), + [sym_string] = STATE(1719), + [sym_func_call] = STATE(1719), + [sym__builtin_func_call] = STATE(1657), + [sym_indirect_func_call] = STATE(1755), + [sym_identifier] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_getline] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [aux_sym_number_token1] = ACTIONS(175), + [aux_sym_number_token2] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_and] = ACTIONS(179), + [anon_sym_asort] = ACTIONS(179), + [anon_sym_asorti] = ACTIONS(179), + [anon_sym_bindtextdomain] = ACTIONS(179), + [anon_sym_compl] = ACTIONS(179), + [anon_sym_cos] = ACTIONS(179), + [anon_sym_dcgettext] = ACTIONS(179), + [anon_sym_dcngettext] = ACTIONS(179), + [anon_sym_exp] = ACTIONS(179), + [anon_sym_gensub] = ACTIONS(179), + [anon_sym_gsub] = ACTIONS(179), + [anon_sym_index] = ACTIONS(179), + [anon_sym_int] = ACTIONS(179), + [anon_sym_isarray] = ACTIONS(179), + [anon_sym_length] = ACTIONS(179), + [anon_sym_log] = ACTIONS(179), + [anon_sym_lshift] = ACTIONS(179), + [anon_sym_match] = ACTIONS(179), + [anon_sym_mktime] = ACTIONS(179), + [anon_sym_or] = ACTIONS(179), + [anon_sym_patsplit] = ACTIONS(179), + [anon_sym_rand] = ACTIONS(179), + [anon_sym_rshift] = ACTIONS(179), + [anon_sym_sin] = ACTIONS(179), + [anon_sym_split] = ACTIONS(179), + [anon_sym_sprintf] = ACTIONS(179), + [anon_sym_sqrt] = ACTIONS(179), + [anon_sym_srand] = ACTIONS(179), + [anon_sym_strftime] = ACTIONS(179), + [anon_sym_strtonum] = ACTIONS(179), + [anon_sym_sub] = ACTIONS(179), + [anon_sym_substr] = ACTIONS(179), + [anon_sym_systime] = ACTIONS(179), + [anon_sym_tolower] = ACTIONS(179), + [anon_sym_toupper] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(179), + }, + [1159] = { + [sym_identifier] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_LF] = ACTIONS(1804), + [anon_sym_CR_LF] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [sym_break_statement] = ACTIONS(1804), + [sym_continue_statement] = ACTIONS(1804), + [anon_sym_delete] = ACTIONS(1804), + [anon_sym_exit] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_switch] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_getline] = ACTIONS(1804), + [sym_next_statement] = ACTIONS(1804), + [sym_nextfile_statement] = ACTIONS(1804), + [anon_sym_print] = ACTIONS(1804), + [anon_sym_printf] = ACTIONS(1804), + [anon_sym_GT] = ACTIONS(1816), + [anon_sym_GT_GT] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_AT] = ACTIONS(1804), + [aux_sym_number_token1] = ACTIONS(1804), + [aux_sym_number_token2] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_and] = ACTIONS(1804), + [anon_sym_asort] = ACTIONS(1804), + [anon_sym_asorti] = ACTIONS(1804), + [anon_sym_bindtextdomain] = ACTIONS(1804), + [anon_sym_compl] = ACTIONS(1804), + [anon_sym_cos] = ACTIONS(1804), + [anon_sym_dcgettext] = ACTIONS(1804), + [anon_sym_dcngettext] = ACTIONS(1804), + [anon_sym_exp] = ACTIONS(1804), + [anon_sym_gensub] = ACTIONS(1804), + [anon_sym_gsub] = ACTIONS(1804), + [anon_sym_index] = ACTIONS(1804), + [anon_sym_int] = ACTIONS(1804), + [anon_sym_isarray] = ACTIONS(1804), + [anon_sym_length] = ACTIONS(1804), + [anon_sym_log] = ACTIONS(1804), + [anon_sym_lshift] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_mktime] = ACTIONS(1804), + [anon_sym_or] = ACTIONS(1804), + [anon_sym_patsplit] = ACTIONS(1804), + [anon_sym_rand] = ACTIONS(1804), + [anon_sym_rshift] = ACTIONS(1804), + [anon_sym_sin] = ACTIONS(1804), + [anon_sym_split] = ACTIONS(1804), + [anon_sym_sprintf] = ACTIONS(1804), + [anon_sym_sqrt] = ACTIONS(1804), + [anon_sym_srand] = ACTIONS(1804), + [anon_sym_strftime] = ACTIONS(1804), + [anon_sym_strtonum] = ACTIONS(1804), + [anon_sym_sub] = ACTIONS(1804), + [anon_sym_substr] = ACTIONS(1804), + [anon_sym_systime] = ACTIONS(1804), + [anon_sym_tolower] = ACTIONS(1804), + [anon_sym_toupper] = ACTIONS(1804), + [anon_sym_typeof] = ACTIONS(1804), + [anon_sym_xor] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(1804), + }, + [1160] = { + [sym_identifier] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_LF] = ACTIONS(1794), + [anon_sym_CR_LF] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [sym_break_statement] = ACTIONS(1794), + [sym_continue_statement] = ACTIONS(1794), + [anon_sym_delete] = ACTIONS(1794), + [anon_sym_exit] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_getline] = ACTIONS(1794), + [sym_next_statement] = ACTIONS(1794), + [sym_nextfile_statement] = ACTIONS(1794), + [anon_sym_print] = ACTIONS(1794), + [anon_sym_printf] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_PLUS_PLUS] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(1794), + [aux_sym_number_token1] = ACTIONS(1794), + [aux_sym_number_token2] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_and] = ACTIONS(1794), + [anon_sym_asort] = ACTIONS(1794), + [anon_sym_asorti] = ACTIONS(1794), + [anon_sym_bindtextdomain] = ACTIONS(1794), + [anon_sym_compl] = ACTIONS(1794), + [anon_sym_cos] = ACTIONS(1794), + [anon_sym_dcgettext] = ACTIONS(1794), + [anon_sym_dcngettext] = ACTIONS(1794), + [anon_sym_exp] = ACTIONS(1794), + [anon_sym_gensub] = ACTIONS(1794), + [anon_sym_gsub] = ACTIONS(1794), + [anon_sym_index] = ACTIONS(1794), + [anon_sym_int] = ACTIONS(1794), + [anon_sym_isarray] = ACTIONS(1794), + [anon_sym_length] = ACTIONS(1794), + [anon_sym_log] = ACTIONS(1794), + [anon_sym_lshift] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_mktime] = ACTIONS(1794), + [anon_sym_or] = ACTIONS(1794), + [anon_sym_patsplit] = ACTIONS(1794), + [anon_sym_rand] = ACTIONS(1794), + [anon_sym_rshift] = ACTIONS(1794), + [anon_sym_sin] = ACTIONS(1794), + [anon_sym_split] = ACTIONS(1794), + [anon_sym_sprintf] = ACTIONS(1794), + [anon_sym_sqrt] = ACTIONS(1794), + [anon_sym_srand] = ACTIONS(1794), + [anon_sym_strftime] = ACTIONS(1794), + [anon_sym_strtonum] = ACTIONS(1794), + [anon_sym_sub] = ACTIONS(1794), + [anon_sym_substr] = ACTIONS(1794), + [anon_sym_systime] = ACTIONS(1794), + [anon_sym_tolower] = ACTIONS(1794), + [anon_sym_toupper] = ACTIONS(1794), + [anon_sym_typeof] = ACTIONS(1794), + [anon_sym_xor] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1794), + [sym__if_else_separator] = ACTIONS(1796), + }, + [1161] = { + [sym_identifier] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_LF] = ACTIONS(1794), + [anon_sym_CR_LF] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [sym_break_statement] = ACTIONS(1794), + [sym_continue_statement] = ACTIONS(1794), + [anon_sym_delete] = ACTIONS(1794), + [anon_sym_exit] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_getline] = ACTIONS(1794), + [sym_next_statement] = ACTIONS(1794), + [sym_nextfile_statement] = ACTIONS(1794), + [anon_sym_print] = ACTIONS(1794), + [anon_sym_printf] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_PLUS_PLUS] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(1794), + [anon_sym_COLON_COLON] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(1794), + [aux_sym_number_token2] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_and] = ACTIONS(1794), + [anon_sym_asort] = ACTIONS(1794), + [anon_sym_asorti] = ACTIONS(1794), + [anon_sym_bindtextdomain] = ACTIONS(1794), + [anon_sym_compl] = ACTIONS(1794), + [anon_sym_cos] = ACTIONS(1794), + [anon_sym_dcgettext] = ACTIONS(1794), + [anon_sym_dcngettext] = ACTIONS(1794), + [anon_sym_exp] = ACTIONS(1794), + [anon_sym_gensub] = ACTIONS(1794), + [anon_sym_gsub] = ACTIONS(1794), + [anon_sym_index] = ACTIONS(1794), + [anon_sym_int] = ACTIONS(1794), + [anon_sym_isarray] = ACTIONS(1794), + [anon_sym_length] = ACTIONS(1794), + [anon_sym_log] = ACTIONS(1794), + [anon_sym_lshift] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_mktime] = ACTIONS(1794), + [anon_sym_or] = ACTIONS(1794), + [anon_sym_patsplit] = ACTIONS(1794), + [anon_sym_rand] = ACTIONS(1794), + [anon_sym_rshift] = ACTIONS(1794), + [anon_sym_sin] = ACTIONS(1794), + [anon_sym_split] = ACTIONS(1794), + [anon_sym_sprintf] = ACTIONS(1794), + [anon_sym_sqrt] = ACTIONS(1794), + [anon_sym_srand] = ACTIONS(1794), + [anon_sym_strftime] = ACTIONS(1794), + [anon_sym_strtonum] = ACTIONS(1794), + [anon_sym_sub] = ACTIONS(1794), + [anon_sym_substr] = ACTIONS(1794), + [anon_sym_systime] = ACTIONS(1794), + [anon_sym_tolower] = ACTIONS(1794), + [anon_sym_toupper] = ACTIONS(1794), + [anon_sym_typeof] = ACTIONS(1794), + [anon_sym_xor] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1794), + }, + [1162] = { + [sym_identifier] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [sym_break_statement] = ACTIONS(1820), + [sym_continue_statement] = ACTIONS(1820), + [anon_sym_delete] = ACTIONS(1820), + [anon_sym_exit] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_getline] = ACTIONS(1820), + [sym_next_statement] = ACTIONS(1820), + [sym_nextfile_statement] = ACTIONS(1820), + [anon_sym_print] = ACTIONS(1820), + [anon_sym_printf] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_AT] = ACTIONS(1820), + [aux_sym_number_token1] = ACTIONS(1820), + [aux_sym_number_token2] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [anon_sym_and] = ACTIONS(1820), + [anon_sym_asort] = ACTIONS(1820), + [anon_sym_asorti] = ACTIONS(1820), + [anon_sym_bindtextdomain] = ACTIONS(1820), + [anon_sym_compl] = ACTIONS(1820), + [anon_sym_cos] = ACTIONS(1820), + [anon_sym_dcgettext] = ACTIONS(1820), + [anon_sym_dcngettext] = ACTIONS(1820), + [anon_sym_exp] = ACTIONS(1820), + [anon_sym_gensub] = ACTIONS(1820), + [anon_sym_gsub] = ACTIONS(1820), + [anon_sym_index] = ACTIONS(1820), + [anon_sym_int] = ACTIONS(1820), + [anon_sym_isarray] = ACTIONS(1820), + [anon_sym_length] = ACTIONS(1820), + [anon_sym_log] = ACTIONS(1820), + [anon_sym_lshift] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_mktime] = ACTIONS(1820), + [anon_sym_or] = ACTIONS(1820), + [anon_sym_patsplit] = ACTIONS(1820), + [anon_sym_rand] = ACTIONS(1820), + [anon_sym_rshift] = ACTIONS(1820), + [anon_sym_sin] = ACTIONS(1820), + [anon_sym_split] = ACTIONS(1820), + [anon_sym_sprintf] = ACTIONS(1820), + [anon_sym_sqrt] = ACTIONS(1820), + [anon_sym_srand] = ACTIONS(1820), + [anon_sym_strftime] = ACTIONS(1820), + [anon_sym_strtonum] = ACTIONS(1820), + [anon_sym_sub] = ACTIONS(1820), + [anon_sym_substr] = ACTIONS(1820), + [anon_sym_systime] = ACTIONS(1820), + [anon_sym_tolower] = ACTIONS(1820), + [anon_sym_toupper] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1820), + [anon_sym_xor] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(1820), + [sym__if_else_separator] = ACTIONS(1824), + }, + [1163] = { + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [sym_break_statement] = ACTIONS(1826), + [sym_continue_statement] = ACTIONS(1826), + [anon_sym_delete] = ACTIONS(1826), + [anon_sym_exit] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_switch] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_case] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_getline] = ACTIONS(1826), + [sym_next_statement] = ACTIONS(1826), + [sym_nextfile_statement] = ACTIONS(1826), + [anon_sym_print] = ACTIONS(1826), + [anon_sym_printf] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1826), + [aux_sym_number_token1] = ACTIONS(1826), + [aux_sym_number_token2] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_and] = ACTIONS(1826), + [anon_sym_asort] = ACTIONS(1826), + [anon_sym_asorti] = ACTIONS(1826), + [anon_sym_bindtextdomain] = ACTIONS(1826), + [anon_sym_compl] = ACTIONS(1826), + [anon_sym_cos] = ACTIONS(1826), + [anon_sym_dcgettext] = ACTIONS(1826), + [anon_sym_dcngettext] = ACTIONS(1826), + [anon_sym_exp] = ACTIONS(1826), + [anon_sym_gensub] = ACTIONS(1826), + [anon_sym_gsub] = ACTIONS(1826), + [anon_sym_index] = ACTIONS(1826), + [anon_sym_int] = ACTIONS(1826), + [anon_sym_isarray] = ACTIONS(1826), + [anon_sym_length] = ACTIONS(1826), + [anon_sym_log] = ACTIONS(1826), + [anon_sym_lshift] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mktime] = ACTIONS(1826), + [anon_sym_or] = ACTIONS(1826), + [anon_sym_patsplit] = ACTIONS(1826), + [anon_sym_rand] = ACTIONS(1826), + [anon_sym_rshift] = ACTIONS(1826), + [anon_sym_sin] = ACTIONS(1826), + [anon_sym_split] = ACTIONS(1826), + [anon_sym_sprintf] = ACTIONS(1826), + [anon_sym_sqrt] = ACTIONS(1826), + [anon_sym_srand] = ACTIONS(1826), + [anon_sym_strftime] = ACTIONS(1826), + [anon_sym_strtonum] = ACTIONS(1826), + [anon_sym_sub] = ACTIONS(1826), + [anon_sym_substr] = ACTIONS(1826), + [anon_sym_systime] = ACTIONS(1826), + [anon_sym_tolower] = ACTIONS(1826), + [anon_sym_toupper] = ACTIONS(1826), + [anon_sym_typeof] = ACTIONS(1826), + [anon_sym_xor] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1826), + [sym__if_else_separator] = ACTIONS(1828), + }, + [1164] = { + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_CR_LF] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [sym_break_statement] = ACTIONS(1830), + [sym_continue_statement] = ACTIONS(1830), + [anon_sym_delete] = ACTIONS(1830), + [anon_sym_exit] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_switch] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_case] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_getline] = ACTIONS(1830), + [sym_next_statement] = ACTIONS(1830), + [sym_nextfile_statement] = ACTIONS(1830), + [anon_sym_print] = ACTIONS(1830), + [anon_sym_printf] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1830), + [aux_sym_number_token1] = ACTIONS(1830), + [aux_sym_number_token2] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_and] = ACTIONS(1830), + [anon_sym_asort] = ACTIONS(1830), + [anon_sym_asorti] = ACTIONS(1830), + [anon_sym_bindtextdomain] = ACTIONS(1830), + [anon_sym_compl] = ACTIONS(1830), + [anon_sym_cos] = ACTIONS(1830), + [anon_sym_dcgettext] = ACTIONS(1830), + [anon_sym_dcngettext] = ACTIONS(1830), + [anon_sym_exp] = ACTIONS(1830), + [anon_sym_gensub] = ACTIONS(1830), + [anon_sym_gsub] = ACTIONS(1830), + [anon_sym_index] = ACTIONS(1830), + [anon_sym_int] = ACTIONS(1830), + [anon_sym_isarray] = ACTIONS(1830), + [anon_sym_length] = ACTIONS(1830), + [anon_sym_log] = ACTIONS(1830), + [anon_sym_lshift] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mktime] = ACTIONS(1830), + [anon_sym_or] = ACTIONS(1830), + [anon_sym_patsplit] = ACTIONS(1830), + [anon_sym_rand] = ACTIONS(1830), + [anon_sym_rshift] = ACTIONS(1830), + [anon_sym_sin] = ACTIONS(1830), + [anon_sym_split] = ACTIONS(1830), + [anon_sym_sprintf] = ACTIONS(1830), + [anon_sym_sqrt] = ACTIONS(1830), + [anon_sym_srand] = ACTIONS(1830), + [anon_sym_strftime] = ACTIONS(1830), + [anon_sym_strtonum] = ACTIONS(1830), + [anon_sym_sub] = ACTIONS(1830), + [anon_sym_substr] = ACTIONS(1830), + [anon_sym_systime] = ACTIONS(1830), + [anon_sym_tolower] = ACTIONS(1830), + [anon_sym_toupper] = ACTIONS(1830), + [anon_sym_typeof] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1830), + [sym__if_else_separator] = ACTIONS(1832), + }, + [1165] = { + [sym_identifier] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_CR_LF] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_do] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [sym_break_statement] = ACTIONS(1834), + [sym_continue_statement] = ACTIONS(1834), + [anon_sym_delete] = ACTIONS(1834), + [anon_sym_exit] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_getline] = ACTIONS(1834), + [sym_next_statement] = ACTIONS(1834), + [sym_nextfile_statement] = ACTIONS(1834), + [anon_sym_print] = ACTIONS(1834), + [anon_sym_printf] = ACTIONS(1834), + [anon_sym_SLASH] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(1834), + [aux_sym_number_token1] = ACTIONS(1834), + [aux_sym_number_token2] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_and] = ACTIONS(1834), + [anon_sym_asort] = ACTIONS(1834), + [anon_sym_asorti] = ACTIONS(1834), + [anon_sym_bindtextdomain] = ACTIONS(1834), + [anon_sym_compl] = ACTIONS(1834), + [anon_sym_cos] = ACTIONS(1834), + [anon_sym_dcgettext] = ACTIONS(1834), + [anon_sym_dcngettext] = ACTIONS(1834), + [anon_sym_exp] = ACTIONS(1834), + [anon_sym_gensub] = ACTIONS(1834), + [anon_sym_gsub] = ACTIONS(1834), + [anon_sym_index] = ACTIONS(1834), + [anon_sym_int] = ACTIONS(1834), + [anon_sym_isarray] = ACTIONS(1834), + [anon_sym_length] = ACTIONS(1834), + [anon_sym_log] = ACTIONS(1834), + [anon_sym_lshift] = ACTIONS(1834), + [anon_sym_match] = ACTIONS(1834), + [anon_sym_mktime] = ACTIONS(1834), + [anon_sym_or] = ACTIONS(1834), + [anon_sym_patsplit] = ACTIONS(1834), + [anon_sym_rand] = ACTIONS(1834), + [anon_sym_rshift] = ACTIONS(1834), + [anon_sym_sin] = ACTIONS(1834), + [anon_sym_split] = ACTIONS(1834), + [anon_sym_sprintf] = ACTIONS(1834), + [anon_sym_sqrt] = ACTIONS(1834), + [anon_sym_srand] = ACTIONS(1834), + [anon_sym_strftime] = ACTIONS(1834), + [anon_sym_strtonum] = ACTIONS(1834), + [anon_sym_sub] = ACTIONS(1834), + [anon_sym_substr] = ACTIONS(1834), + [anon_sym_systime] = ACTIONS(1834), + [anon_sym_tolower] = ACTIONS(1834), + [anon_sym_toupper] = ACTIONS(1834), + [anon_sym_typeof] = ACTIONS(1834), + [anon_sym_xor] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1834), + [sym__if_else_separator] = ACTIONS(1836), + }, + [1166] = { + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [sym_break_statement] = ACTIONS(1838), + [sym_continue_statement] = ACTIONS(1838), + [anon_sym_delete] = ACTIONS(1838), + [anon_sym_exit] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_switch] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_getline] = ACTIONS(1838), + [sym_next_statement] = ACTIONS(1838), + [sym_nextfile_statement] = ACTIONS(1838), + [anon_sym_print] = ACTIONS(1838), + [anon_sym_printf] = ACTIONS(1838), + [anon_sym_SLASH] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1838), + [aux_sym_number_token1] = ACTIONS(1838), + [aux_sym_number_token2] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_and] = ACTIONS(1838), + [anon_sym_asort] = ACTIONS(1838), + [anon_sym_asorti] = ACTIONS(1838), + [anon_sym_bindtextdomain] = ACTIONS(1838), + [anon_sym_compl] = ACTIONS(1838), + [anon_sym_cos] = ACTIONS(1838), + [anon_sym_dcgettext] = ACTIONS(1838), + [anon_sym_dcngettext] = ACTIONS(1838), + [anon_sym_exp] = ACTIONS(1838), + [anon_sym_gensub] = ACTIONS(1838), + [anon_sym_gsub] = ACTIONS(1838), + [anon_sym_index] = ACTIONS(1838), + [anon_sym_int] = ACTIONS(1838), + [anon_sym_isarray] = ACTIONS(1838), + [anon_sym_length] = ACTIONS(1838), + [anon_sym_log] = ACTIONS(1838), + [anon_sym_lshift] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mktime] = ACTIONS(1838), + [anon_sym_or] = ACTIONS(1838), + [anon_sym_patsplit] = ACTIONS(1838), + [anon_sym_rand] = ACTIONS(1838), + [anon_sym_rshift] = ACTIONS(1838), + [anon_sym_sin] = ACTIONS(1838), + [anon_sym_split] = ACTIONS(1838), + [anon_sym_sprintf] = ACTIONS(1838), + [anon_sym_sqrt] = ACTIONS(1838), + [anon_sym_srand] = ACTIONS(1838), + [anon_sym_strftime] = ACTIONS(1838), + [anon_sym_strtonum] = ACTIONS(1838), + [anon_sym_sub] = ACTIONS(1838), + [anon_sym_substr] = ACTIONS(1838), + [anon_sym_systime] = ACTIONS(1838), + [anon_sym_tolower] = ACTIONS(1838), + [anon_sym_toupper] = ACTIONS(1838), + [anon_sym_typeof] = ACTIONS(1838), + [anon_sym_xor] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1838), + [sym__if_else_separator] = ACTIONS(1840), + }, + [1167] = { + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1838), + [anon_sym_CR_LF] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [sym_break_statement] = ACTIONS(1838), + [sym_continue_statement] = ACTIONS(1838), + [anon_sym_delete] = ACTIONS(1838), + [anon_sym_exit] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_switch] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_getline] = ACTIONS(1838), + [sym_next_statement] = ACTIONS(1838), + [sym_nextfile_statement] = ACTIONS(1838), + [anon_sym_print] = ACTIONS(1838), + [anon_sym_printf] = ACTIONS(1838), + [anon_sym_SLASH] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1838), + [aux_sym_number_token1] = ACTIONS(1838), + [aux_sym_number_token2] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_and] = ACTIONS(1838), + [anon_sym_asort] = ACTIONS(1838), + [anon_sym_asorti] = ACTIONS(1838), + [anon_sym_bindtextdomain] = ACTIONS(1838), + [anon_sym_compl] = ACTIONS(1838), + [anon_sym_cos] = ACTIONS(1838), + [anon_sym_dcgettext] = ACTIONS(1838), + [anon_sym_dcngettext] = ACTIONS(1838), + [anon_sym_exp] = ACTIONS(1838), + [anon_sym_gensub] = ACTIONS(1838), + [anon_sym_gsub] = ACTIONS(1838), + [anon_sym_index] = ACTIONS(1838), + [anon_sym_int] = ACTIONS(1838), + [anon_sym_isarray] = ACTIONS(1838), + [anon_sym_length] = ACTIONS(1838), + [anon_sym_log] = ACTIONS(1838), + [anon_sym_lshift] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mktime] = ACTIONS(1838), + [anon_sym_or] = ACTIONS(1838), + [anon_sym_patsplit] = ACTIONS(1838), + [anon_sym_rand] = ACTIONS(1838), + [anon_sym_rshift] = ACTIONS(1838), + [anon_sym_sin] = ACTIONS(1838), + [anon_sym_split] = ACTIONS(1838), + [anon_sym_sprintf] = ACTIONS(1838), + [anon_sym_sqrt] = ACTIONS(1838), + [anon_sym_srand] = ACTIONS(1838), + [anon_sym_strftime] = ACTIONS(1838), + [anon_sym_strtonum] = ACTIONS(1838), + [anon_sym_sub] = ACTIONS(1838), + [anon_sym_substr] = ACTIONS(1838), + [anon_sym_systime] = ACTIONS(1838), + [anon_sym_tolower] = ACTIONS(1838), + [anon_sym_toupper] = ACTIONS(1838), + [anon_sym_typeof] = ACTIONS(1838), + [anon_sym_xor] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1838), + [sym__if_else_separator] = ACTIONS(1840), + }, + [1168] = { + [sym_identifier] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1842), + [anon_sym_CR_LF] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_do] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [sym_break_statement] = ACTIONS(1842), + [sym_continue_statement] = ACTIONS(1842), + [anon_sym_delete] = ACTIONS(1842), + [anon_sym_exit] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_switch] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_case] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_getline] = ACTIONS(1842), + [sym_next_statement] = ACTIONS(1842), + [sym_nextfile_statement] = ACTIONS(1842), + [anon_sym_print] = ACTIONS(1842), + [anon_sym_printf] = ACTIONS(1842), + [anon_sym_SLASH] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(1842), + [aux_sym_number_token1] = ACTIONS(1842), + [aux_sym_number_token2] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_and] = ACTIONS(1842), + [anon_sym_asort] = ACTIONS(1842), + [anon_sym_asorti] = ACTIONS(1842), + [anon_sym_bindtextdomain] = ACTIONS(1842), + [anon_sym_compl] = ACTIONS(1842), + [anon_sym_cos] = ACTIONS(1842), + [anon_sym_dcgettext] = ACTIONS(1842), + [anon_sym_dcngettext] = ACTIONS(1842), + [anon_sym_exp] = ACTIONS(1842), + [anon_sym_gensub] = ACTIONS(1842), + [anon_sym_gsub] = ACTIONS(1842), + [anon_sym_index] = ACTIONS(1842), + [anon_sym_int] = ACTIONS(1842), + [anon_sym_isarray] = ACTIONS(1842), + [anon_sym_length] = ACTIONS(1842), + [anon_sym_log] = ACTIONS(1842), + [anon_sym_lshift] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mktime] = ACTIONS(1842), + [anon_sym_or] = ACTIONS(1842), + [anon_sym_patsplit] = ACTIONS(1842), + [anon_sym_rand] = ACTIONS(1842), + [anon_sym_rshift] = ACTIONS(1842), + [anon_sym_sin] = ACTIONS(1842), + [anon_sym_split] = ACTIONS(1842), + [anon_sym_sprintf] = ACTIONS(1842), + [anon_sym_sqrt] = ACTIONS(1842), + [anon_sym_srand] = ACTIONS(1842), + [anon_sym_strftime] = ACTIONS(1842), + [anon_sym_strtonum] = ACTIONS(1842), + [anon_sym_sub] = ACTIONS(1842), + [anon_sym_substr] = ACTIONS(1842), + [anon_sym_systime] = ACTIONS(1842), + [anon_sym_tolower] = ACTIONS(1842), + [anon_sym_toupper] = ACTIONS(1842), + [anon_sym_typeof] = ACTIONS(1842), + [anon_sym_xor] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(1842), + [sym__if_else_separator] = ACTIONS(1844), + }, + [1169] = { + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [sym_break_statement] = ACTIONS(1846), + [sym_continue_statement] = ACTIONS(1846), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_exit] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_switch] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_case] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_getline] = ACTIONS(1846), + [sym_next_statement] = ACTIONS(1846), + [sym_nextfile_statement] = ACTIONS(1846), + [anon_sym_print] = ACTIONS(1846), + [anon_sym_printf] = ACTIONS(1846), + [anon_sym_SLASH] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1846), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1846), + [aux_sym_number_token1] = ACTIONS(1846), + [aux_sym_number_token2] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_and] = ACTIONS(1846), + [anon_sym_asort] = ACTIONS(1846), + [anon_sym_asorti] = ACTIONS(1846), + [anon_sym_bindtextdomain] = ACTIONS(1846), + [anon_sym_compl] = ACTIONS(1846), + [anon_sym_cos] = ACTIONS(1846), + [anon_sym_dcgettext] = ACTIONS(1846), + [anon_sym_dcngettext] = ACTIONS(1846), + [anon_sym_exp] = ACTIONS(1846), + [anon_sym_gensub] = ACTIONS(1846), + [anon_sym_gsub] = ACTIONS(1846), + [anon_sym_index] = ACTIONS(1846), + [anon_sym_int] = ACTIONS(1846), + [anon_sym_isarray] = ACTIONS(1846), + [anon_sym_length] = ACTIONS(1846), + [anon_sym_log] = ACTIONS(1846), + [anon_sym_lshift] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mktime] = ACTIONS(1846), + [anon_sym_or] = ACTIONS(1846), + [anon_sym_patsplit] = ACTIONS(1846), + [anon_sym_rand] = ACTIONS(1846), + [anon_sym_rshift] = ACTIONS(1846), + [anon_sym_sin] = ACTIONS(1846), + [anon_sym_split] = ACTIONS(1846), + [anon_sym_sprintf] = ACTIONS(1846), + [anon_sym_sqrt] = ACTIONS(1846), + [anon_sym_srand] = ACTIONS(1846), + [anon_sym_strftime] = ACTIONS(1846), + [anon_sym_strtonum] = ACTIONS(1846), + [anon_sym_sub] = ACTIONS(1846), + [anon_sym_substr] = ACTIONS(1846), + [anon_sym_systime] = ACTIONS(1846), + [anon_sym_tolower] = ACTIONS(1846), + [anon_sym_toupper] = ACTIONS(1846), + [anon_sym_typeof] = ACTIONS(1846), + [anon_sym_xor] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1846), + [sym__if_else_separator] = ACTIONS(1848), + }, + [1170] = { + [sym_identifier] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_LF] = ACTIONS(1850), + [anon_sym_CR_LF] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_do] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [sym_break_statement] = ACTIONS(1850), + [sym_continue_statement] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1850), + [anon_sym_exit] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_case] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_getline] = ACTIONS(1850), + [sym_next_statement] = ACTIONS(1850), + [sym_nextfile_statement] = ACTIONS(1850), + [anon_sym_print] = ACTIONS(1850), + [anon_sym_printf] = ACTIONS(1850), + [anon_sym_SLASH] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1850), + [aux_sym_number_token1] = ACTIONS(1850), + [aux_sym_number_token2] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [anon_sym_and] = ACTIONS(1850), + [anon_sym_asort] = ACTIONS(1850), + [anon_sym_asorti] = ACTIONS(1850), + [anon_sym_bindtextdomain] = ACTIONS(1850), + [anon_sym_compl] = ACTIONS(1850), + [anon_sym_cos] = ACTIONS(1850), + [anon_sym_dcgettext] = ACTIONS(1850), + [anon_sym_dcngettext] = ACTIONS(1850), + [anon_sym_exp] = ACTIONS(1850), + [anon_sym_gensub] = ACTIONS(1850), + [anon_sym_gsub] = ACTIONS(1850), + [anon_sym_index] = ACTIONS(1850), + [anon_sym_int] = ACTIONS(1850), + [anon_sym_isarray] = ACTIONS(1850), + [anon_sym_length] = ACTIONS(1850), + [anon_sym_log] = ACTIONS(1850), + [anon_sym_lshift] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_mktime] = ACTIONS(1850), + [anon_sym_or] = ACTIONS(1850), + [anon_sym_patsplit] = ACTIONS(1850), + [anon_sym_rand] = ACTIONS(1850), + [anon_sym_rshift] = ACTIONS(1850), + [anon_sym_sin] = ACTIONS(1850), + [anon_sym_split] = ACTIONS(1850), + [anon_sym_sprintf] = ACTIONS(1850), + [anon_sym_sqrt] = ACTIONS(1850), + [anon_sym_srand] = ACTIONS(1850), + [anon_sym_strftime] = ACTIONS(1850), + [anon_sym_strtonum] = ACTIONS(1850), + [anon_sym_sub] = ACTIONS(1850), + [anon_sym_substr] = ACTIONS(1850), + [anon_sym_systime] = ACTIONS(1850), + [anon_sym_tolower] = ACTIONS(1850), + [anon_sym_toupper] = ACTIONS(1850), + [anon_sym_typeof] = ACTIONS(1850), + [anon_sym_xor] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1850), + [sym__if_else_separator] = ACTIONS(1852), + }, + [1171] = { + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [sym_break_statement] = ACTIONS(1854), + [sym_continue_statement] = ACTIONS(1854), + [anon_sym_delete] = ACTIONS(1854), + [anon_sym_exit] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_getline] = ACTIONS(1854), + [sym_next_statement] = ACTIONS(1854), + [sym_nextfile_statement] = ACTIONS(1854), + [anon_sym_print] = ACTIONS(1854), + [anon_sym_printf] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1854), + [aux_sym_number_token1] = ACTIONS(1854), + [aux_sym_number_token2] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [anon_sym_and] = ACTIONS(1854), + [anon_sym_asort] = ACTIONS(1854), + [anon_sym_asorti] = ACTIONS(1854), + [anon_sym_bindtextdomain] = ACTIONS(1854), + [anon_sym_compl] = ACTIONS(1854), + [anon_sym_cos] = ACTIONS(1854), + [anon_sym_dcgettext] = ACTIONS(1854), + [anon_sym_dcngettext] = ACTIONS(1854), + [anon_sym_exp] = ACTIONS(1854), + [anon_sym_gensub] = ACTIONS(1854), + [anon_sym_gsub] = ACTIONS(1854), + [anon_sym_index] = ACTIONS(1854), + [anon_sym_int] = ACTIONS(1854), + [anon_sym_isarray] = ACTIONS(1854), + [anon_sym_length] = ACTIONS(1854), + [anon_sym_log] = ACTIONS(1854), + [anon_sym_lshift] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mktime] = ACTIONS(1854), + [anon_sym_or] = ACTIONS(1854), + [anon_sym_patsplit] = ACTIONS(1854), + [anon_sym_rand] = ACTIONS(1854), + [anon_sym_rshift] = ACTIONS(1854), + [anon_sym_sin] = ACTIONS(1854), + [anon_sym_split] = ACTIONS(1854), + [anon_sym_sprintf] = ACTIONS(1854), + [anon_sym_sqrt] = ACTIONS(1854), + [anon_sym_srand] = ACTIONS(1854), + [anon_sym_strftime] = ACTIONS(1854), + [anon_sym_strtonum] = ACTIONS(1854), + [anon_sym_sub] = ACTIONS(1854), + [anon_sym_substr] = ACTIONS(1854), + [anon_sym_systime] = ACTIONS(1854), + [anon_sym_tolower] = ACTIONS(1854), + [anon_sym_toupper] = ACTIONS(1854), + [anon_sym_typeof] = ACTIONS(1854), + [anon_sym_xor] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1854), + [sym__if_else_separator] = ACTIONS(1856), + }, + [1172] = { + [sym_identifier] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_LF] = ACTIONS(1794), + [anon_sym_CR_LF] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [sym_break_statement] = ACTIONS(1794), + [sym_continue_statement] = ACTIONS(1794), + [anon_sym_delete] = ACTIONS(1794), + [anon_sym_exit] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_getline] = ACTIONS(1794), + [sym_next_statement] = ACTIONS(1794), + [sym_nextfile_statement] = ACTIONS(1794), + [anon_sym_print] = ACTIONS(1794), + [anon_sym_printf] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_PLUS_PLUS] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(1794), + [aux_sym_number_token1] = ACTIONS(1794), + [aux_sym_number_token2] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_and] = ACTIONS(1794), + [anon_sym_asort] = ACTIONS(1794), + [anon_sym_asorti] = ACTIONS(1794), + [anon_sym_bindtextdomain] = ACTIONS(1794), + [anon_sym_compl] = ACTIONS(1794), + [anon_sym_cos] = ACTIONS(1794), + [anon_sym_dcgettext] = ACTIONS(1794), + [anon_sym_dcngettext] = ACTIONS(1794), + [anon_sym_exp] = ACTIONS(1794), + [anon_sym_gensub] = ACTIONS(1794), + [anon_sym_gsub] = ACTIONS(1794), + [anon_sym_index] = ACTIONS(1794), + [anon_sym_int] = ACTIONS(1794), + [anon_sym_isarray] = ACTIONS(1794), + [anon_sym_length] = ACTIONS(1794), + [anon_sym_log] = ACTIONS(1794), + [anon_sym_lshift] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_mktime] = ACTIONS(1794), + [anon_sym_or] = ACTIONS(1794), + [anon_sym_patsplit] = ACTIONS(1794), + [anon_sym_rand] = ACTIONS(1794), + [anon_sym_rshift] = ACTIONS(1794), + [anon_sym_sin] = ACTIONS(1794), + [anon_sym_split] = ACTIONS(1794), + [anon_sym_sprintf] = ACTIONS(1794), + [anon_sym_sqrt] = ACTIONS(1794), + [anon_sym_srand] = ACTIONS(1794), + [anon_sym_strftime] = ACTIONS(1794), + [anon_sym_strtonum] = ACTIONS(1794), + [anon_sym_sub] = ACTIONS(1794), + [anon_sym_substr] = ACTIONS(1794), + [anon_sym_systime] = ACTIONS(1794), + [anon_sym_tolower] = ACTIONS(1794), + [anon_sym_toupper] = ACTIONS(1794), + [anon_sym_typeof] = ACTIONS(1794), + [anon_sym_xor] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1794), + }, + [1173] = { + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_LF] = ACTIONS(1854), + [anon_sym_CR_LF] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [sym_break_statement] = ACTIONS(1854), + [sym_continue_statement] = ACTIONS(1854), + [anon_sym_delete] = ACTIONS(1854), + [anon_sym_exit] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_getline] = ACTIONS(1854), + [sym_next_statement] = ACTIONS(1854), + [sym_nextfile_statement] = ACTIONS(1854), + [anon_sym_print] = ACTIONS(1854), + [anon_sym_printf] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1854), + [aux_sym_number_token1] = ACTIONS(1854), + [aux_sym_number_token2] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [anon_sym_and] = ACTIONS(1854), + [anon_sym_asort] = ACTIONS(1854), + [anon_sym_asorti] = ACTIONS(1854), + [anon_sym_bindtextdomain] = ACTIONS(1854), + [anon_sym_compl] = ACTIONS(1854), + [anon_sym_cos] = ACTIONS(1854), + [anon_sym_dcgettext] = ACTIONS(1854), + [anon_sym_dcngettext] = ACTIONS(1854), + [anon_sym_exp] = ACTIONS(1854), + [anon_sym_gensub] = ACTIONS(1854), + [anon_sym_gsub] = ACTIONS(1854), + [anon_sym_index] = ACTIONS(1854), + [anon_sym_int] = ACTIONS(1854), + [anon_sym_isarray] = ACTIONS(1854), + [anon_sym_length] = ACTIONS(1854), + [anon_sym_log] = ACTIONS(1854), + [anon_sym_lshift] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mktime] = ACTIONS(1854), + [anon_sym_or] = ACTIONS(1854), + [anon_sym_patsplit] = ACTIONS(1854), + [anon_sym_rand] = ACTIONS(1854), + [anon_sym_rshift] = ACTIONS(1854), + [anon_sym_sin] = ACTIONS(1854), + [anon_sym_split] = ACTIONS(1854), + [anon_sym_sprintf] = ACTIONS(1854), + [anon_sym_sqrt] = ACTIONS(1854), + [anon_sym_srand] = ACTIONS(1854), + [anon_sym_strftime] = ACTIONS(1854), + [anon_sym_strtonum] = ACTIONS(1854), + [anon_sym_sub] = ACTIONS(1854), + [anon_sym_substr] = ACTIONS(1854), + [anon_sym_systime] = ACTIONS(1854), + [anon_sym_tolower] = ACTIONS(1854), + [anon_sym_toupper] = ACTIONS(1854), + [anon_sym_typeof] = ACTIONS(1854), + [anon_sym_xor] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1854), + [sym__if_else_separator] = ACTIONS(1856), + }, + [1174] = { + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [sym_break_statement] = ACTIONS(1858), + [sym_continue_statement] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(1858), + [anon_sym_exit] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_getline] = ACTIONS(1858), + [sym_next_statement] = ACTIONS(1858), + [sym_nextfile_statement] = ACTIONS(1858), + [anon_sym_print] = ACTIONS(1858), + [anon_sym_printf] = ACTIONS(1858), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1858), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1858), + [aux_sym_number_token1] = ACTIONS(1858), + [aux_sym_number_token2] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_and] = ACTIONS(1858), + [anon_sym_asort] = ACTIONS(1858), + [anon_sym_asorti] = ACTIONS(1858), + [anon_sym_bindtextdomain] = ACTIONS(1858), + [anon_sym_compl] = ACTIONS(1858), + [anon_sym_cos] = ACTIONS(1858), + [anon_sym_dcgettext] = ACTIONS(1858), + [anon_sym_dcngettext] = ACTIONS(1858), + [anon_sym_exp] = ACTIONS(1858), + [anon_sym_gensub] = ACTIONS(1858), + [anon_sym_gsub] = ACTIONS(1858), + [anon_sym_index] = ACTIONS(1858), + [anon_sym_int] = ACTIONS(1858), + [anon_sym_isarray] = ACTIONS(1858), + [anon_sym_length] = ACTIONS(1858), + [anon_sym_log] = ACTIONS(1858), + [anon_sym_lshift] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mktime] = ACTIONS(1858), + [anon_sym_or] = ACTIONS(1858), + [anon_sym_patsplit] = ACTIONS(1858), + [anon_sym_rand] = ACTIONS(1858), + [anon_sym_rshift] = ACTIONS(1858), + [anon_sym_sin] = ACTIONS(1858), + [anon_sym_split] = ACTIONS(1858), + [anon_sym_sprintf] = ACTIONS(1858), + [anon_sym_sqrt] = ACTIONS(1858), + [anon_sym_srand] = ACTIONS(1858), + [anon_sym_strftime] = ACTIONS(1858), + [anon_sym_strtonum] = ACTIONS(1858), + [anon_sym_sub] = ACTIONS(1858), + [anon_sym_substr] = ACTIONS(1858), + [anon_sym_systime] = ACTIONS(1858), + [anon_sym_tolower] = ACTIONS(1858), + [anon_sym_toupper] = ACTIONS(1858), + [anon_sym_typeof] = ACTIONS(1858), + [anon_sym_xor] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1858), + [sym__if_else_separator] = ACTIONS(1860), + }, + [1175] = { + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [sym_break_statement] = ACTIONS(1830), + [sym_continue_statement] = ACTIONS(1830), + [anon_sym_delete] = ACTIONS(1830), + [anon_sym_exit] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_switch] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_case] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_getline] = ACTIONS(1830), + [sym_next_statement] = ACTIONS(1830), + [sym_nextfile_statement] = ACTIONS(1830), + [anon_sym_print] = ACTIONS(1830), + [anon_sym_printf] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1830), + [aux_sym_number_token1] = ACTIONS(1830), + [aux_sym_number_token2] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_and] = ACTIONS(1830), + [anon_sym_asort] = ACTIONS(1830), + [anon_sym_asorti] = ACTIONS(1830), + [anon_sym_bindtextdomain] = ACTIONS(1830), + [anon_sym_compl] = ACTIONS(1830), + [anon_sym_cos] = ACTIONS(1830), + [anon_sym_dcgettext] = ACTIONS(1830), + [anon_sym_dcngettext] = ACTIONS(1830), + [anon_sym_exp] = ACTIONS(1830), + [anon_sym_gensub] = ACTIONS(1830), + [anon_sym_gsub] = ACTIONS(1830), + [anon_sym_index] = ACTIONS(1830), + [anon_sym_int] = ACTIONS(1830), + [anon_sym_isarray] = ACTIONS(1830), + [anon_sym_length] = ACTIONS(1830), + [anon_sym_log] = ACTIONS(1830), + [anon_sym_lshift] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mktime] = ACTIONS(1830), + [anon_sym_or] = ACTIONS(1830), + [anon_sym_patsplit] = ACTIONS(1830), + [anon_sym_rand] = ACTIONS(1830), + [anon_sym_rshift] = ACTIONS(1830), + [anon_sym_sin] = ACTIONS(1830), + [anon_sym_split] = ACTIONS(1830), + [anon_sym_sprintf] = ACTIONS(1830), + [anon_sym_sqrt] = ACTIONS(1830), + [anon_sym_srand] = ACTIONS(1830), + [anon_sym_strftime] = ACTIONS(1830), + [anon_sym_strtonum] = ACTIONS(1830), + [anon_sym_sub] = ACTIONS(1830), + [anon_sym_substr] = ACTIONS(1830), + [anon_sym_systime] = ACTIONS(1830), + [anon_sym_tolower] = ACTIONS(1830), + [anon_sym_toupper] = ACTIONS(1830), + [anon_sym_typeof] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1830), + [sym__if_else_separator] = ACTIONS(1832), + }, + [1176] = { + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_LF] = ACTIONS(1862), + [anon_sym_CR_LF] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [sym_break_statement] = ACTIONS(1862), + [sym_continue_statement] = ACTIONS(1862), + [anon_sym_delete] = ACTIONS(1862), + [anon_sym_exit] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_switch] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_case] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_getline] = ACTIONS(1862), + [sym_next_statement] = ACTIONS(1862), + [sym_nextfile_statement] = ACTIONS(1862), + [anon_sym_print] = ACTIONS(1862), + [anon_sym_printf] = ACTIONS(1862), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [aux_sym_number_token1] = ACTIONS(1862), + [aux_sym_number_token2] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_and] = ACTIONS(1862), + [anon_sym_asort] = ACTIONS(1862), + [anon_sym_asorti] = ACTIONS(1862), + [anon_sym_bindtextdomain] = ACTIONS(1862), + [anon_sym_compl] = ACTIONS(1862), + [anon_sym_cos] = ACTIONS(1862), + [anon_sym_dcgettext] = ACTIONS(1862), + [anon_sym_dcngettext] = ACTIONS(1862), + [anon_sym_exp] = ACTIONS(1862), + [anon_sym_gensub] = ACTIONS(1862), + [anon_sym_gsub] = ACTIONS(1862), + [anon_sym_index] = ACTIONS(1862), + [anon_sym_int] = ACTIONS(1862), + [anon_sym_isarray] = ACTIONS(1862), + [anon_sym_length] = ACTIONS(1862), + [anon_sym_log] = ACTIONS(1862), + [anon_sym_lshift] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mktime] = ACTIONS(1862), + [anon_sym_or] = ACTIONS(1862), + [anon_sym_patsplit] = ACTIONS(1862), + [anon_sym_rand] = ACTIONS(1862), + [anon_sym_rshift] = ACTIONS(1862), + [anon_sym_sin] = ACTIONS(1862), + [anon_sym_split] = ACTIONS(1862), + [anon_sym_sprintf] = ACTIONS(1862), + [anon_sym_sqrt] = ACTIONS(1862), + [anon_sym_srand] = ACTIONS(1862), + [anon_sym_strftime] = ACTIONS(1862), + [anon_sym_strtonum] = ACTIONS(1862), + [anon_sym_sub] = ACTIONS(1862), + [anon_sym_substr] = ACTIONS(1862), + [anon_sym_systime] = ACTIONS(1862), + [anon_sym_tolower] = ACTIONS(1862), + [anon_sym_toupper] = ACTIONS(1862), + [anon_sym_typeof] = ACTIONS(1862), + [anon_sym_xor] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1862), + [sym__if_else_separator] = ACTIONS(1864), + }, + [1177] = { + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1866), + [anon_sym_CR_LF] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [sym_break_statement] = ACTIONS(1866), + [sym_continue_statement] = ACTIONS(1866), + [anon_sym_delete] = ACTIONS(1866), + [anon_sym_exit] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_case] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_getline] = ACTIONS(1866), + [sym_next_statement] = ACTIONS(1866), + [sym_nextfile_statement] = ACTIONS(1866), + [anon_sym_print] = ACTIONS(1866), + [anon_sym_printf] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1866), + [aux_sym_number_token1] = ACTIONS(1866), + [aux_sym_number_token2] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_and] = ACTIONS(1866), + [anon_sym_asort] = ACTIONS(1866), + [anon_sym_asorti] = ACTIONS(1866), + [anon_sym_bindtextdomain] = ACTIONS(1866), + [anon_sym_compl] = ACTIONS(1866), + [anon_sym_cos] = ACTIONS(1866), + [anon_sym_dcgettext] = ACTIONS(1866), + [anon_sym_dcngettext] = ACTIONS(1866), + [anon_sym_exp] = ACTIONS(1866), + [anon_sym_gensub] = ACTIONS(1866), + [anon_sym_gsub] = ACTIONS(1866), + [anon_sym_index] = ACTIONS(1866), + [anon_sym_int] = ACTIONS(1866), + [anon_sym_isarray] = ACTIONS(1866), + [anon_sym_length] = ACTIONS(1866), + [anon_sym_log] = ACTIONS(1866), + [anon_sym_lshift] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mktime] = ACTIONS(1866), + [anon_sym_or] = ACTIONS(1866), + [anon_sym_patsplit] = ACTIONS(1866), + [anon_sym_rand] = ACTIONS(1866), + [anon_sym_rshift] = ACTIONS(1866), + [anon_sym_sin] = ACTIONS(1866), + [anon_sym_split] = ACTIONS(1866), + [anon_sym_sprintf] = ACTIONS(1866), + [anon_sym_sqrt] = ACTIONS(1866), + [anon_sym_srand] = ACTIONS(1866), + [anon_sym_strftime] = ACTIONS(1866), + [anon_sym_strtonum] = ACTIONS(1866), + [anon_sym_sub] = ACTIONS(1866), + [anon_sym_substr] = ACTIONS(1866), + [anon_sym_systime] = ACTIONS(1866), + [anon_sym_tolower] = ACTIONS(1866), + [anon_sym_toupper] = ACTIONS(1866), + [anon_sym_typeof] = ACTIONS(1866), + [anon_sym_xor] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1866), + [sym__if_else_separator] = ACTIONS(1868), + }, + [1178] = { + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_CR_LF] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_do] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [sym_break_statement] = ACTIONS(1870), + [sym_continue_statement] = ACTIONS(1870), + [anon_sym_delete] = ACTIONS(1870), + [anon_sym_exit] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_switch] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_getline] = ACTIONS(1870), + [sym_next_statement] = ACTIONS(1870), + [sym_nextfile_statement] = ACTIONS(1870), + [anon_sym_print] = ACTIONS(1870), + [anon_sym_printf] = ACTIONS(1870), + [anon_sym_SLASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1870), + [aux_sym_number_token1] = ACTIONS(1870), + [aux_sym_number_token2] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [anon_sym_and] = ACTIONS(1870), + [anon_sym_asort] = ACTIONS(1870), + [anon_sym_asorti] = ACTIONS(1870), + [anon_sym_bindtextdomain] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_cos] = ACTIONS(1870), + [anon_sym_dcgettext] = ACTIONS(1870), + [anon_sym_dcngettext] = ACTIONS(1870), + [anon_sym_exp] = ACTIONS(1870), + [anon_sym_gensub] = ACTIONS(1870), + [anon_sym_gsub] = ACTIONS(1870), + [anon_sym_index] = ACTIONS(1870), + [anon_sym_int] = ACTIONS(1870), + [anon_sym_isarray] = ACTIONS(1870), + [anon_sym_length] = ACTIONS(1870), + [anon_sym_log] = ACTIONS(1870), + [anon_sym_lshift] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mktime] = ACTIONS(1870), + [anon_sym_or] = ACTIONS(1870), + [anon_sym_patsplit] = ACTIONS(1870), + [anon_sym_rand] = ACTIONS(1870), + [anon_sym_rshift] = ACTIONS(1870), + [anon_sym_sin] = ACTIONS(1870), + [anon_sym_split] = ACTIONS(1870), + [anon_sym_sprintf] = ACTIONS(1870), + [anon_sym_sqrt] = ACTIONS(1870), + [anon_sym_srand] = ACTIONS(1870), + [anon_sym_strftime] = ACTIONS(1870), + [anon_sym_strtonum] = ACTIONS(1870), + [anon_sym_sub] = ACTIONS(1870), + [anon_sym_substr] = ACTIONS(1870), + [anon_sym_systime] = ACTIONS(1870), + [anon_sym_tolower] = ACTIONS(1870), + [anon_sym_toupper] = ACTIONS(1870), + [anon_sym_typeof] = ACTIONS(1870), + [anon_sym_xor] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1870), + [sym__if_else_separator] = ACTIONS(1872), + }, + [1179] = { + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1874), + [anon_sym_CR_LF] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [sym_break_statement] = ACTIONS(1874), + [sym_continue_statement] = ACTIONS(1874), + [anon_sym_delete] = ACTIONS(1874), + [anon_sym_exit] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_switch] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_case] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_getline] = ACTIONS(1874), + [sym_next_statement] = ACTIONS(1874), + [sym_nextfile_statement] = ACTIONS(1874), + [anon_sym_print] = ACTIONS(1874), + [anon_sym_printf] = ACTIONS(1874), + [anon_sym_SLASH] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1874), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1874), + [aux_sym_number_token1] = ACTIONS(1874), + [aux_sym_number_token2] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_and] = ACTIONS(1874), + [anon_sym_asort] = ACTIONS(1874), + [anon_sym_asorti] = ACTIONS(1874), + [anon_sym_bindtextdomain] = ACTIONS(1874), + [anon_sym_compl] = ACTIONS(1874), + [anon_sym_cos] = ACTIONS(1874), + [anon_sym_dcgettext] = ACTIONS(1874), + [anon_sym_dcngettext] = ACTIONS(1874), + [anon_sym_exp] = ACTIONS(1874), + [anon_sym_gensub] = ACTIONS(1874), + [anon_sym_gsub] = ACTIONS(1874), + [anon_sym_index] = ACTIONS(1874), + [anon_sym_int] = ACTIONS(1874), + [anon_sym_isarray] = ACTIONS(1874), + [anon_sym_length] = ACTIONS(1874), + [anon_sym_log] = ACTIONS(1874), + [anon_sym_lshift] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mktime] = ACTIONS(1874), + [anon_sym_or] = ACTIONS(1874), + [anon_sym_patsplit] = ACTIONS(1874), + [anon_sym_rand] = ACTIONS(1874), + [anon_sym_rshift] = ACTIONS(1874), + [anon_sym_sin] = ACTIONS(1874), + [anon_sym_split] = ACTIONS(1874), + [anon_sym_sprintf] = ACTIONS(1874), + [anon_sym_sqrt] = ACTIONS(1874), + [anon_sym_srand] = ACTIONS(1874), + [anon_sym_strftime] = ACTIONS(1874), + [anon_sym_strtonum] = ACTIONS(1874), + [anon_sym_sub] = ACTIONS(1874), + [anon_sym_substr] = ACTIONS(1874), + [anon_sym_systime] = ACTIONS(1874), + [anon_sym_tolower] = ACTIONS(1874), + [anon_sym_toupper] = ACTIONS(1874), + [anon_sym_typeof] = ACTIONS(1874), + [anon_sym_xor] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1874), + [sym__if_else_separator] = ACTIONS(1876), + }, + [1180] = { + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [sym_break_statement] = ACTIONS(1878), + [sym_continue_statement] = ACTIONS(1878), + [anon_sym_delete] = ACTIONS(1878), + [anon_sym_exit] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_getline] = ACTIONS(1878), + [sym_next_statement] = ACTIONS(1878), + [sym_nextfile_statement] = ACTIONS(1878), + [anon_sym_print] = ACTIONS(1878), + [anon_sym_printf] = ACTIONS(1878), + [anon_sym_SLASH] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1878), + [aux_sym_number_token1] = ACTIONS(1878), + [aux_sym_number_token2] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_and] = ACTIONS(1878), + [anon_sym_asort] = ACTIONS(1878), + [anon_sym_asorti] = ACTIONS(1878), + [anon_sym_bindtextdomain] = ACTIONS(1878), + [anon_sym_compl] = ACTIONS(1878), + [anon_sym_cos] = ACTIONS(1878), + [anon_sym_dcgettext] = ACTIONS(1878), + [anon_sym_dcngettext] = ACTIONS(1878), + [anon_sym_exp] = ACTIONS(1878), + [anon_sym_gensub] = ACTIONS(1878), + [anon_sym_gsub] = ACTIONS(1878), + [anon_sym_index] = ACTIONS(1878), + [anon_sym_int] = ACTIONS(1878), + [anon_sym_isarray] = ACTIONS(1878), + [anon_sym_length] = ACTIONS(1878), + [anon_sym_log] = ACTIONS(1878), + [anon_sym_lshift] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mktime] = ACTIONS(1878), + [anon_sym_or] = ACTIONS(1878), + [anon_sym_patsplit] = ACTIONS(1878), + [anon_sym_rand] = ACTIONS(1878), + [anon_sym_rshift] = ACTIONS(1878), + [anon_sym_sin] = ACTIONS(1878), + [anon_sym_split] = ACTIONS(1878), + [anon_sym_sprintf] = ACTIONS(1878), + [anon_sym_sqrt] = ACTIONS(1878), + [anon_sym_srand] = ACTIONS(1878), + [anon_sym_strftime] = ACTIONS(1878), + [anon_sym_strtonum] = ACTIONS(1878), + [anon_sym_sub] = ACTIONS(1878), + [anon_sym_substr] = ACTIONS(1878), + [anon_sym_systime] = ACTIONS(1878), + [anon_sym_tolower] = ACTIONS(1878), + [anon_sym_toupper] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1878), + [anon_sym_xor] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1878), + [sym__if_else_separator] = ACTIONS(1880), + }, + [1181] = { + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [sym_break_statement] = ACTIONS(1862), + [sym_continue_statement] = ACTIONS(1862), + [anon_sym_delete] = ACTIONS(1862), + [anon_sym_exit] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_switch] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_case] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_getline] = ACTIONS(1862), + [sym_next_statement] = ACTIONS(1862), + [sym_nextfile_statement] = ACTIONS(1862), + [anon_sym_print] = ACTIONS(1862), + [anon_sym_printf] = ACTIONS(1862), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [aux_sym_number_token1] = ACTIONS(1862), + [aux_sym_number_token2] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_and] = ACTIONS(1862), + [anon_sym_asort] = ACTIONS(1862), + [anon_sym_asorti] = ACTIONS(1862), + [anon_sym_bindtextdomain] = ACTIONS(1862), + [anon_sym_compl] = ACTIONS(1862), + [anon_sym_cos] = ACTIONS(1862), + [anon_sym_dcgettext] = ACTIONS(1862), + [anon_sym_dcngettext] = ACTIONS(1862), + [anon_sym_exp] = ACTIONS(1862), + [anon_sym_gensub] = ACTIONS(1862), + [anon_sym_gsub] = ACTIONS(1862), + [anon_sym_index] = ACTIONS(1862), + [anon_sym_int] = ACTIONS(1862), + [anon_sym_isarray] = ACTIONS(1862), + [anon_sym_length] = ACTIONS(1862), + [anon_sym_log] = ACTIONS(1862), + [anon_sym_lshift] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mktime] = ACTIONS(1862), + [anon_sym_or] = ACTIONS(1862), + [anon_sym_patsplit] = ACTIONS(1862), + [anon_sym_rand] = ACTIONS(1862), + [anon_sym_rshift] = ACTIONS(1862), + [anon_sym_sin] = ACTIONS(1862), + [anon_sym_split] = ACTIONS(1862), + [anon_sym_sprintf] = ACTIONS(1862), + [anon_sym_sqrt] = ACTIONS(1862), + [anon_sym_srand] = ACTIONS(1862), + [anon_sym_strftime] = ACTIONS(1862), + [anon_sym_strtonum] = ACTIONS(1862), + [anon_sym_sub] = ACTIONS(1862), + [anon_sym_substr] = ACTIONS(1862), + [anon_sym_systime] = ACTIONS(1862), + [anon_sym_tolower] = ACTIONS(1862), + [anon_sym_toupper] = ACTIONS(1862), + [anon_sym_typeof] = ACTIONS(1862), + [anon_sym_xor] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1862), + [sym__if_else_separator] = ACTIONS(1864), + }, + [1182] = { + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_CR_LF] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [sym_break_statement] = ACTIONS(1882), + [sym_continue_statement] = ACTIONS(1882), + [anon_sym_delete] = ACTIONS(1882), + [anon_sym_exit] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_switch] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_getline] = ACTIONS(1882), + [sym_next_statement] = ACTIONS(1882), + [sym_nextfile_statement] = ACTIONS(1882), + [anon_sym_print] = ACTIONS(1882), + [anon_sym_printf] = ACTIONS(1882), + [anon_sym_SLASH] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1882), + [aux_sym_number_token1] = ACTIONS(1882), + [aux_sym_number_token2] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_and] = ACTIONS(1882), + [anon_sym_asort] = ACTIONS(1882), + [anon_sym_asorti] = ACTIONS(1882), + [anon_sym_bindtextdomain] = ACTIONS(1882), + [anon_sym_compl] = ACTIONS(1882), + [anon_sym_cos] = ACTIONS(1882), + [anon_sym_dcgettext] = ACTIONS(1882), + [anon_sym_dcngettext] = ACTIONS(1882), + [anon_sym_exp] = ACTIONS(1882), + [anon_sym_gensub] = ACTIONS(1882), + [anon_sym_gsub] = ACTIONS(1882), + [anon_sym_index] = ACTIONS(1882), + [anon_sym_int] = ACTIONS(1882), + [anon_sym_isarray] = ACTIONS(1882), + [anon_sym_length] = ACTIONS(1882), + [anon_sym_log] = ACTIONS(1882), + [anon_sym_lshift] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mktime] = ACTIONS(1882), + [anon_sym_or] = ACTIONS(1882), + [anon_sym_patsplit] = ACTIONS(1882), + [anon_sym_rand] = ACTIONS(1882), + [anon_sym_rshift] = ACTIONS(1882), + [anon_sym_sin] = ACTIONS(1882), + [anon_sym_split] = ACTIONS(1882), + [anon_sym_sprintf] = ACTIONS(1882), + [anon_sym_sqrt] = ACTIONS(1882), + [anon_sym_srand] = ACTIONS(1882), + [anon_sym_strftime] = ACTIONS(1882), + [anon_sym_strtonum] = ACTIONS(1882), + [anon_sym_sub] = ACTIONS(1882), + [anon_sym_substr] = ACTIONS(1882), + [anon_sym_systime] = ACTIONS(1882), + [anon_sym_tolower] = ACTIONS(1882), + [anon_sym_toupper] = ACTIONS(1882), + [anon_sym_typeof] = ACTIONS(1882), + [anon_sym_xor] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1882), + [sym__if_else_separator] = ACTIONS(1884), + }, + [1183] = { + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_CR_LF] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [sym_break_statement] = ACTIONS(1886), + [sym_continue_statement] = ACTIONS(1886), + [anon_sym_delete] = ACTIONS(1886), + [anon_sym_exit] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_getline] = ACTIONS(1886), + [sym_next_statement] = ACTIONS(1886), + [sym_nextfile_statement] = ACTIONS(1886), + [anon_sym_print] = ACTIONS(1886), + [anon_sym_printf] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1886), + [aux_sym_number_token1] = ACTIONS(1886), + [aux_sym_number_token2] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_and] = ACTIONS(1886), + [anon_sym_asort] = ACTIONS(1886), + [anon_sym_asorti] = ACTIONS(1886), + [anon_sym_bindtextdomain] = ACTIONS(1886), + [anon_sym_compl] = ACTIONS(1886), + [anon_sym_cos] = ACTIONS(1886), + [anon_sym_dcgettext] = ACTIONS(1886), + [anon_sym_dcngettext] = ACTIONS(1886), + [anon_sym_exp] = ACTIONS(1886), + [anon_sym_gensub] = ACTIONS(1886), + [anon_sym_gsub] = ACTIONS(1886), + [anon_sym_index] = ACTIONS(1886), + [anon_sym_int] = ACTIONS(1886), + [anon_sym_isarray] = ACTIONS(1886), + [anon_sym_length] = ACTIONS(1886), + [anon_sym_log] = ACTIONS(1886), + [anon_sym_lshift] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mktime] = ACTIONS(1886), + [anon_sym_or] = ACTIONS(1886), + [anon_sym_patsplit] = ACTIONS(1886), + [anon_sym_rand] = ACTIONS(1886), + [anon_sym_rshift] = ACTIONS(1886), + [anon_sym_sin] = ACTIONS(1886), + [anon_sym_split] = ACTIONS(1886), + [anon_sym_sprintf] = ACTIONS(1886), + [anon_sym_sqrt] = ACTIONS(1886), + [anon_sym_srand] = ACTIONS(1886), + [anon_sym_strftime] = ACTIONS(1886), + [anon_sym_strtonum] = ACTIONS(1886), + [anon_sym_sub] = ACTIONS(1886), + [anon_sym_substr] = ACTIONS(1886), + [anon_sym_systime] = ACTIONS(1886), + [anon_sym_tolower] = ACTIONS(1886), + [anon_sym_toupper] = ACTIONS(1886), + [anon_sym_typeof] = ACTIONS(1886), + [anon_sym_xor] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1886), + [sym__if_else_separator] = ACTIONS(1888), + }, + [1184] = { + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_CR_LF] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [sym_break_statement] = ACTIONS(1846), + [sym_continue_statement] = ACTIONS(1846), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_exit] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_switch] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_case] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_getline] = ACTIONS(1846), + [sym_next_statement] = ACTIONS(1846), + [sym_nextfile_statement] = ACTIONS(1846), + [anon_sym_print] = ACTIONS(1846), + [anon_sym_printf] = ACTIONS(1846), + [anon_sym_SLASH] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1846), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1846), + [aux_sym_number_token1] = ACTIONS(1846), + [aux_sym_number_token2] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_and] = ACTIONS(1846), + [anon_sym_asort] = ACTIONS(1846), + [anon_sym_asorti] = ACTIONS(1846), + [anon_sym_bindtextdomain] = ACTIONS(1846), + [anon_sym_compl] = ACTIONS(1846), + [anon_sym_cos] = ACTIONS(1846), + [anon_sym_dcgettext] = ACTIONS(1846), + [anon_sym_dcngettext] = ACTIONS(1846), + [anon_sym_exp] = ACTIONS(1846), + [anon_sym_gensub] = ACTIONS(1846), + [anon_sym_gsub] = ACTIONS(1846), + [anon_sym_index] = ACTIONS(1846), + [anon_sym_int] = ACTIONS(1846), + [anon_sym_isarray] = ACTIONS(1846), + [anon_sym_length] = ACTIONS(1846), + [anon_sym_log] = ACTIONS(1846), + [anon_sym_lshift] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mktime] = ACTIONS(1846), + [anon_sym_or] = ACTIONS(1846), + [anon_sym_patsplit] = ACTIONS(1846), + [anon_sym_rand] = ACTIONS(1846), + [anon_sym_rshift] = ACTIONS(1846), + [anon_sym_sin] = ACTIONS(1846), + [anon_sym_split] = ACTIONS(1846), + [anon_sym_sprintf] = ACTIONS(1846), + [anon_sym_sqrt] = ACTIONS(1846), + [anon_sym_srand] = ACTIONS(1846), + [anon_sym_strftime] = ACTIONS(1846), + [anon_sym_strtonum] = ACTIONS(1846), + [anon_sym_sub] = ACTIONS(1846), + [anon_sym_substr] = ACTIONS(1846), + [anon_sym_systime] = ACTIONS(1846), + [anon_sym_tolower] = ACTIONS(1846), + [anon_sym_toupper] = ACTIONS(1846), + [anon_sym_typeof] = ACTIONS(1846), + [anon_sym_xor] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1846), + [sym__if_else_separator] = ACTIONS(1848), + }, + [1185] = { + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_CR_LF] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [sym_break_statement] = ACTIONS(1890), + [sym_continue_statement] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_exit] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_getline] = ACTIONS(1890), + [sym_next_statement] = ACTIONS(1890), + [sym_nextfile_statement] = ACTIONS(1890), + [anon_sym_print] = ACTIONS(1890), + [anon_sym_printf] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1890), + [aux_sym_number_token1] = ACTIONS(1890), + [aux_sym_number_token2] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_and] = ACTIONS(1890), + [anon_sym_asort] = ACTIONS(1890), + [anon_sym_asorti] = ACTIONS(1890), + [anon_sym_bindtextdomain] = ACTIONS(1890), + [anon_sym_compl] = ACTIONS(1890), + [anon_sym_cos] = ACTIONS(1890), + [anon_sym_dcgettext] = ACTIONS(1890), + [anon_sym_dcngettext] = ACTIONS(1890), + [anon_sym_exp] = ACTIONS(1890), + [anon_sym_gensub] = ACTIONS(1890), + [anon_sym_gsub] = ACTIONS(1890), + [anon_sym_index] = ACTIONS(1890), + [anon_sym_int] = ACTIONS(1890), + [anon_sym_isarray] = ACTIONS(1890), + [anon_sym_length] = ACTIONS(1890), + [anon_sym_log] = ACTIONS(1890), + [anon_sym_lshift] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mktime] = ACTIONS(1890), + [anon_sym_or] = ACTIONS(1890), + [anon_sym_patsplit] = ACTIONS(1890), + [anon_sym_rand] = ACTIONS(1890), + [anon_sym_rshift] = ACTIONS(1890), + [anon_sym_sin] = ACTIONS(1890), + [anon_sym_split] = ACTIONS(1890), + [anon_sym_sprintf] = ACTIONS(1890), + [anon_sym_sqrt] = ACTIONS(1890), + [anon_sym_srand] = ACTIONS(1890), + [anon_sym_strftime] = ACTIONS(1890), + [anon_sym_strtonum] = ACTIONS(1890), + [anon_sym_sub] = ACTIONS(1890), + [anon_sym_substr] = ACTIONS(1890), + [anon_sym_systime] = ACTIONS(1890), + [anon_sym_tolower] = ACTIONS(1890), + [anon_sym_toupper] = ACTIONS(1890), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_xor] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + [sym__if_else_separator] = ACTIONS(1892), + }, + [1186] = { + [sym_identifier] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_LF] = ACTIONS(1820), + [anon_sym_CR_LF] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [sym_break_statement] = ACTIONS(1820), + [sym_continue_statement] = ACTIONS(1820), + [anon_sym_delete] = ACTIONS(1820), + [anon_sym_exit] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_getline] = ACTIONS(1820), + [sym_next_statement] = ACTIONS(1820), + [sym_nextfile_statement] = ACTIONS(1820), + [anon_sym_print] = ACTIONS(1820), + [anon_sym_printf] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_AT] = ACTIONS(1820), + [aux_sym_number_token1] = ACTIONS(1820), + [aux_sym_number_token2] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [anon_sym_and] = ACTIONS(1820), + [anon_sym_asort] = ACTIONS(1820), + [anon_sym_asorti] = ACTIONS(1820), + [anon_sym_bindtextdomain] = ACTIONS(1820), + [anon_sym_compl] = ACTIONS(1820), + [anon_sym_cos] = ACTIONS(1820), + [anon_sym_dcgettext] = ACTIONS(1820), + [anon_sym_dcngettext] = ACTIONS(1820), + [anon_sym_exp] = ACTIONS(1820), + [anon_sym_gensub] = ACTIONS(1820), + [anon_sym_gsub] = ACTIONS(1820), + [anon_sym_index] = ACTIONS(1820), + [anon_sym_int] = ACTIONS(1820), + [anon_sym_isarray] = ACTIONS(1820), + [anon_sym_length] = ACTIONS(1820), + [anon_sym_log] = ACTIONS(1820), + [anon_sym_lshift] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_mktime] = ACTIONS(1820), + [anon_sym_or] = ACTIONS(1820), + [anon_sym_patsplit] = ACTIONS(1820), + [anon_sym_rand] = ACTIONS(1820), + [anon_sym_rshift] = ACTIONS(1820), + [anon_sym_sin] = ACTIONS(1820), + [anon_sym_split] = ACTIONS(1820), + [anon_sym_sprintf] = ACTIONS(1820), + [anon_sym_sqrt] = ACTIONS(1820), + [anon_sym_srand] = ACTIONS(1820), + [anon_sym_strftime] = ACTIONS(1820), + [anon_sym_strtonum] = ACTIONS(1820), + [anon_sym_sub] = ACTIONS(1820), + [anon_sym_substr] = ACTIONS(1820), + [anon_sym_systime] = ACTIONS(1820), + [anon_sym_tolower] = ACTIONS(1820), + [anon_sym_toupper] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1820), + [anon_sym_xor] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(1820), + [sym__if_else_separator] = ACTIONS(1824), + }, + [1187] = { + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [sym_break_statement] = ACTIONS(1894), + [sym_continue_statement] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_exit] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_getline] = ACTIONS(1894), + [sym_next_statement] = ACTIONS(1894), + [sym_nextfile_statement] = ACTIONS(1894), + [anon_sym_print] = ACTIONS(1894), + [anon_sym_printf] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1894), + [aux_sym_number_token1] = ACTIONS(1894), + [aux_sym_number_token2] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_and] = ACTIONS(1894), + [anon_sym_asort] = ACTIONS(1894), + [anon_sym_asorti] = ACTIONS(1894), + [anon_sym_bindtextdomain] = ACTIONS(1894), + [anon_sym_compl] = ACTIONS(1894), + [anon_sym_cos] = ACTIONS(1894), + [anon_sym_dcgettext] = ACTIONS(1894), + [anon_sym_dcngettext] = ACTIONS(1894), + [anon_sym_exp] = ACTIONS(1894), + [anon_sym_gensub] = ACTIONS(1894), + [anon_sym_gsub] = ACTIONS(1894), + [anon_sym_index] = ACTIONS(1894), + [anon_sym_int] = ACTIONS(1894), + [anon_sym_isarray] = ACTIONS(1894), + [anon_sym_length] = ACTIONS(1894), + [anon_sym_log] = ACTIONS(1894), + [anon_sym_lshift] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mktime] = ACTIONS(1894), + [anon_sym_or] = ACTIONS(1894), + [anon_sym_patsplit] = ACTIONS(1894), + [anon_sym_rand] = ACTIONS(1894), + [anon_sym_rshift] = ACTIONS(1894), + [anon_sym_sin] = ACTIONS(1894), + [anon_sym_split] = ACTIONS(1894), + [anon_sym_sprintf] = ACTIONS(1894), + [anon_sym_sqrt] = ACTIONS(1894), + [anon_sym_srand] = ACTIONS(1894), + [anon_sym_strftime] = ACTIONS(1894), + [anon_sym_strtonum] = ACTIONS(1894), + [anon_sym_sub] = ACTIONS(1894), + [anon_sym_substr] = ACTIONS(1894), + [anon_sym_systime] = ACTIONS(1894), + [anon_sym_tolower] = ACTIONS(1894), + [anon_sym_toupper] = ACTIONS(1894), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_xor] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1894), + [sym__if_else_separator] = ACTIONS(1896), + }, + [1188] = { + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_LF] = ACTIONS(1858), + [anon_sym_CR_LF] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [sym_break_statement] = ACTIONS(1858), + [sym_continue_statement] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(1858), + [anon_sym_exit] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_getline] = ACTIONS(1858), + [sym_next_statement] = ACTIONS(1858), + [sym_nextfile_statement] = ACTIONS(1858), + [anon_sym_print] = ACTIONS(1858), + [anon_sym_printf] = ACTIONS(1858), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1858), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1858), + [aux_sym_number_token1] = ACTIONS(1858), + [aux_sym_number_token2] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_and] = ACTIONS(1858), + [anon_sym_asort] = ACTIONS(1858), + [anon_sym_asorti] = ACTIONS(1858), + [anon_sym_bindtextdomain] = ACTIONS(1858), + [anon_sym_compl] = ACTIONS(1858), + [anon_sym_cos] = ACTIONS(1858), + [anon_sym_dcgettext] = ACTIONS(1858), + [anon_sym_dcngettext] = ACTIONS(1858), + [anon_sym_exp] = ACTIONS(1858), + [anon_sym_gensub] = ACTIONS(1858), + [anon_sym_gsub] = ACTIONS(1858), + [anon_sym_index] = ACTIONS(1858), + [anon_sym_int] = ACTIONS(1858), + [anon_sym_isarray] = ACTIONS(1858), + [anon_sym_length] = ACTIONS(1858), + [anon_sym_log] = ACTIONS(1858), + [anon_sym_lshift] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mktime] = ACTIONS(1858), + [anon_sym_or] = ACTIONS(1858), + [anon_sym_patsplit] = ACTIONS(1858), + [anon_sym_rand] = ACTIONS(1858), + [anon_sym_rshift] = ACTIONS(1858), + [anon_sym_sin] = ACTIONS(1858), + [anon_sym_split] = ACTIONS(1858), + [anon_sym_sprintf] = ACTIONS(1858), + [anon_sym_sqrt] = ACTIONS(1858), + [anon_sym_srand] = ACTIONS(1858), + [anon_sym_strftime] = ACTIONS(1858), + [anon_sym_strtonum] = ACTIONS(1858), + [anon_sym_sub] = ACTIONS(1858), + [anon_sym_substr] = ACTIONS(1858), + [anon_sym_systime] = ACTIONS(1858), + [anon_sym_tolower] = ACTIONS(1858), + [anon_sym_toupper] = ACTIONS(1858), + [anon_sym_typeof] = ACTIONS(1858), + [anon_sym_xor] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1858), + [sym__if_else_separator] = ACTIONS(1860), + }, + [1189] = { + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_LF] = ACTIONS(1898), + [anon_sym_CR_LF] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_do] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [sym_break_statement] = ACTIONS(1898), + [sym_continue_statement] = ACTIONS(1898), + [anon_sym_delete] = ACTIONS(1898), + [anon_sym_exit] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_switch] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_case] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_getline] = ACTIONS(1898), + [sym_next_statement] = ACTIONS(1898), + [sym_nextfile_statement] = ACTIONS(1898), + [anon_sym_print] = ACTIONS(1898), + [anon_sym_printf] = ACTIONS(1898), + [anon_sym_SLASH] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_PLUS_PLUS] = ACTIONS(1898), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1898), + [aux_sym_number_token1] = ACTIONS(1898), + [aux_sym_number_token2] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [anon_sym_and] = ACTIONS(1898), + [anon_sym_asort] = ACTIONS(1898), + [anon_sym_asorti] = ACTIONS(1898), + [anon_sym_bindtextdomain] = ACTIONS(1898), + [anon_sym_compl] = ACTIONS(1898), + [anon_sym_cos] = ACTIONS(1898), + [anon_sym_dcgettext] = ACTIONS(1898), + [anon_sym_dcngettext] = ACTIONS(1898), + [anon_sym_exp] = ACTIONS(1898), + [anon_sym_gensub] = ACTIONS(1898), + [anon_sym_gsub] = ACTIONS(1898), + [anon_sym_index] = ACTIONS(1898), + [anon_sym_int] = ACTIONS(1898), + [anon_sym_isarray] = ACTIONS(1898), + [anon_sym_length] = ACTIONS(1898), + [anon_sym_log] = ACTIONS(1898), + [anon_sym_lshift] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mktime] = ACTIONS(1898), + [anon_sym_or] = ACTIONS(1898), + [anon_sym_patsplit] = ACTIONS(1898), + [anon_sym_rand] = ACTIONS(1898), + [anon_sym_rshift] = ACTIONS(1898), + [anon_sym_sin] = ACTIONS(1898), + [anon_sym_split] = ACTIONS(1898), + [anon_sym_sprintf] = ACTIONS(1898), + [anon_sym_sqrt] = ACTIONS(1898), + [anon_sym_srand] = ACTIONS(1898), + [anon_sym_strftime] = ACTIONS(1898), + [anon_sym_strtonum] = ACTIONS(1898), + [anon_sym_sub] = ACTIONS(1898), + [anon_sym_substr] = ACTIONS(1898), + [anon_sym_systime] = ACTIONS(1898), + [anon_sym_tolower] = ACTIONS(1898), + [anon_sym_toupper] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1898), + [anon_sym_xor] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1898), + [sym__if_else_separator] = ACTIONS(1900), + }, + [1190] = { + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_do] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [sym_break_statement] = ACTIONS(1902), + [sym_continue_statement] = ACTIONS(1902), + [anon_sym_delete] = ACTIONS(1902), + [anon_sym_exit] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_switch] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_case] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_getline] = ACTIONS(1902), + [sym_next_statement] = ACTIONS(1902), + [sym_nextfile_statement] = ACTIONS(1902), + [anon_sym_print] = ACTIONS(1902), + [anon_sym_printf] = ACTIONS(1902), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1902), + [aux_sym_number_token1] = ACTIONS(1902), + [aux_sym_number_token2] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [anon_sym_and] = ACTIONS(1902), + [anon_sym_asort] = ACTIONS(1902), + [anon_sym_asorti] = ACTIONS(1902), + [anon_sym_bindtextdomain] = ACTIONS(1902), + [anon_sym_compl] = ACTIONS(1902), + [anon_sym_cos] = ACTIONS(1902), + [anon_sym_dcgettext] = ACTIONS(1902), + [anon_sym_dcngettext] = ACTIONS(1902), + [anon_sym_exp] = ACTIONS(1902), + [anon_sym_gensub] = ACTIONS(1902), + [anon_sym_gsub] = ACTIONS(1902), + [anon_sym_index] = ACTIONS(1902), + [anon_sym_int] = ACTIONS(1902), + [anon_sym_isarray] = ACTIONS(1902), + [anon_sym_length] = ACTIONS(1902), + [anon_sym_log] = ACTIONS(1902), + [anon_sym_lshift] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mktime] = ACTIONS(1902), + [anon_sym_or] = ACTIONS(1902), + [anon_sym_patsplit] = ACTIONS(1902), + [anon_sym_rand] = ACTIONS(1902), + [anon_sym_rshift] = ACTIONS(1902), + [anon_sym_sin] = ACTIONS(1902), + [anon_sym_split] = ACTIONS(1902), + [anon_sym_sprintf] = ACTIONS(1902), + [anon_sym_sqrt] = ACTIONS(1902), + [anon_sym_srand] = ACTIONS(1902), + [anon_sym_strftime] = ACTIONS(1902), + [anon_sym_strtonum] = ACTIONS(1902), + [anon_sym_sub] = ACTIONS(1902), + [anon_sym_substr] = ACTIONS(1902), + [anon_sym_systime] = ACTIONS(1902), + [anon_sym_tolower] = ACTIONS(1902), + [anon_sym_toupper] = ACTIONS(1902), + [anon_sym_typeof] = ACTIONS(1902), + [anon_sym_xor] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1902), + [sym__if_else_separator] = ACTIONS(1904), + }, + [1191] = { + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1906), + [anon_sym_CR_LF] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_do] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [sym_break_statement] = ACTIONS(1906), + [sym_continue_statement] = ACTIONS(1906), + [anon_sym_delete] = ACTIONS(1906), + [anon_sym_exit] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_case] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_getline] = ACTIONS(1906), + [sym_next_statement] = ACTIONS(1906), + [sym_nextfile_statement] = ACTIONS(1906), + [anon_sym_print] = ACTIONS(1906), + [anon_sym_printf] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1906), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_AT] = ACTIONS(1906), + [aux_sym_number_token1] = ACTIONS(1906), + [aux_sym_number_token2] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_and] = ACTIONS(1906), + [anon_sym_asort] = ACTIONS(1906), + [anon_sym_asorti] = ACTIONS(1906), + [anon_sym_bindtextdomain] = ACTIONS(1906), + [anon_sym_compl] = ACTIONS(1906), + [anon_sym_cos] = ACTIONS(1906), + [anon_sym_dcgettext] = ACTIONS(1906), + [anon_sym_dcngettext] = ACTIONS(1906), + [anon_sym_exp] = ACTIONS(1906), + [anon_sym_gensub] = ACTIONS(1906), + [anon_sym_gsub] = ACTIONS(1906), + [anon_sym_index] = ACTIONS(1906), + [anon_sym_int] = ACTIONS(1906), + [anon_sym_isarray] = ACTIONS(1906), + [anon_sym_length] = ACTIONS(1906), + [anon_sym_log] = ACTIONS(1906), + [anon_sym_lshift] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mktime] = ACTIONS(1906), + [anon_sym_or] = ACTIONS(1906), + [anon_sym_patsplit] = ACTIONS(1906), + [anon_sym_rand] = ACTIONS(1906), + [anon_sym_rshift] = ACTIONS(1906), + [anon_sym_sin] = ACTIONS(1906), + [anon_sym_split] = ACTIONS(1906), + [anon_sym_sprintf] = ACTIONS(1906), + [anon_sym_sqrt] = ACTIONS(1906), + [anon_sym_srand] = ACTIONS(1906), + [anon_sym_strftime] = ACTIONS(1906), + [anon_sym_strtonum] = ACTIONS(1906), + [anon_sym_sub] = ACTIONS(1906), + [anon_sym_substr] = ACTIONS(1906), + [anon_sym_systime] = ACTIONS(1906), + [anon_sym_tolower] = ACTIONS(1906), + [anon_sym_toupper] = ACTIONS(1906), + [anon_sym_typeof] = ACTIONS(1906), + [anon_sym_xor] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1906), + [sym__if_else_separator] = ACTIONS(1908), + }, + [1192] = { + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_do] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [sym_break_statement] = ACTIONS(1906), + [sym_continue_statement] = ACTIONS(1906), + [anon_sym_delete] = ACTIONS(1906), + [anon_sym_exit] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_case] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_getline] = ACTIONS(1906), + [sym_next_statement] = ACTIONS(1906), + [sym_nextfile_statement] = ACTIONS(1906), + [anon_sym_print] = ACTIONS(1906), + [anon_sym_printf] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1906), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_AT] = ACTIONS(1906), + [aux_sym_number_token1] = ACTIONS(1906), + [aux_sym_number_token2] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_and] = ACTIONS(1906), + [anon_sym_asort] = ACTIONS(1906), + [anon_sym_asorti] = ACTIONS(1906), + [anon_sym_bindtextdomain] = ACTIONS(1906), + [anon_sym_compl] = ACTIONS(1906), + [anon_sym_cos] = ACTIONS(1906), + [anon_sym_dcgettext] = ACTIONS(1906), + [anon_sym_dcngettext] = ACTIONS(1906), + [anon_sym_exp] = ACTIONS(1906), + [anon_sym_gensub] = ACTIONS(1906), + [anon_sym_gsub] = ACTIONS(1906), + [anon_sym_index] = ACTIONS(1906), + [anon_sym_int] = ACTIONS(1906), + [anon_sym_isarray] = ACTIONS(1906), + [anon_sym_length] = ACTIONS(1906), + [anon_sym_log] = ACTIONS(1906), + [anon_sym_lshift] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mktime] = ACTIONS(1906), + [anon_sym_or] = ACTIONS(1906), + [anon_sym_patsplit] = ACTIONS(1906), + [anon_sym_rand] = ACTIONS(1906), + [anon_sym_rshift] = ACTIONS(1906), + [anon_sym_sin] = ACTIONS(1906), + [anon_sym_split] = ACTIONS(1906), + [anon_sym_sprintf] = ACTIONS(1906), + [anon_sym_sqrt] = ACTIONS(1906), + [anon_sym_srand] = ACTIONS(1906), + [anon_sym_strftime] = ACTIONS(1906), + [anon_sym_strtonum] = ACTIONS(1906), + [anon_sym_sub] = ACTIONS(1906), + [anon_sym_substr] = ACTIONS(1906), + [anon_sym_systime] = ACTIONS(1906), + [anon_sym_tolower] = ACTIONS(1906), + [anon_sym_toupper] = ACTIONS(1906), + [anon_sym_typeof] = ACTIONS(1906), + [anon_sym_xor] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1906), + [sym__if_else_separator] = ACTIONS(1908), + }, + [1193] = { + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_LF] = ACTIONS(1910), + [anon_sym_CR_LF] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_do] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [sym_break_statement] = ACTIONS(1910), + [sym_continue_statement] = ACTIONS(1910), + [anon_sym_delete] = ACTIONS(1910), + [anon_sym_exit] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_switch] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_case] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_getline] = ACTIONS(1910), + [sym_next_statement] = ACTIONS(1910), + [sym_nextfile_statement] = ACTIONS(1910), + [anon_sym_print] = ACTIONS(1910), + [anon_sym_printf] = ACTIONS(1910), + [anon_sym_SLASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1910), + [aux_sym_number_token1] = ACTIONS(1910), + [aux_sym_number_token2] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [anon_sym_and] = ACTIONS(1910), + [anon_sym_asort] = ACTIONS(1910), + [anon_sym_asorti] = ACTIONS(1910), + [anon_sym_bindtextdomain] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_cos] = ACTIONS(1910), + [anon_sym_dcgettext] = ACTIONS(1910), + [anon_sym_dcngettext] = ACTIONS(1910), + [anon_sym_exp] = ACTIONS(1910), + [anon_sym_gensub] = ACTIONS(1910), + [anon_sym_gsub] = ACTIONS(1910), + [anon_sym_index] = ACTIONS(1910), + [anon_sym_int] = ACTIONS(1910), + [anon_sym_isarray] = ACTIONS(1910), + [anon_sym_length] = ACTIONS(1910), + [anon_sym_log] = ACTIONS(1910), + [anon_sym_lshift] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mktime] = ACTIONS(1910), + [anon_sym_or] = ACTIONS(1910), + [anon_sym_patsplit] = ACTIONS(1910), + [anon_sym_rand] = ACTIONS(1910), + [anon_sym_rshift] = ACTIONS(1910), + [anon_sym_sin] = ACTIONS(1910), + [anon_sym_split] = ACTIONS(1910), + [anon_sym_sprintf] = ACTIONS(1910), + [anon_sym_sqrt] = ACTIONS(1910), + [anon_sym_srand] = ACTIONS(1910), + [anon_sym_strftime] = ACTIONS(1910), + [anon_sym_strtonum] = ACTIONS(1910), + [anon_sym_sub] = ACTIONS(1910), + [anon_sym_substr] = ACTIONS(1910), + [anon_sym_systime] = ACTIONS(1910), + [anon_sym_tolower] = ACTIONS(1910), + [anon_sym_toupper] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1910), + [anon_sym_xor] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1910), + [sym__if_else_separator] = ACTIONS(1912), + }, + [1194] = { + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_do] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [sym_break_statement] = ACTIONS(1910), + [sym_continue_statement] = ACTIONS(1910), + [anon_sym_delete] = ACTIONS(1910), + [anon_sym_exit] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_switch] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_case] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_getline] = ACTIONS(1910), + [sym_next_statement] = ACTIONS(1910), + [sym_nextfile_statement] = ACTIONS(1910), + [anon_sym_print] = ACTIONS(1910), + [anon_sym_printf] = ACTIONS(1910), + [anon_sym_SLASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1910), + [aux_sym_number_token1] = ACTIONS(1910), + [aux_sym_number_token2] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [anon_sym_and] = ACTIONS(1910), + [anon_sym_asort] = ACTIONS(1910), + [anon_sym_asorti] = ACTIONS(1910), + [anon_sym_bindtextdomain] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_cos] = ACTIONS(1910), + [anon_sym_dcgettext] = ACTIONS(1910), + [anon_sym_dcngettext] = ACTIONS(1910), + [anon_sym_exp] = ACTIONS(1910), + [anon_sym_gensub] = ACTIONS(1910), + [anon_sym_gsub] = ACTIONS(1910), + [anon_sym_index] = ACTIONS(1910), + [anon_sym_int] = ACTIONS(1910), + [anon_sym_isarray] = ACTIONS(1910), + [anon_sym_length] = ACTIONS(1910), + [anon_sym_log] = ACTIONS(1910), + [anon_sym_lshift] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mktime] = ACTIONS(1910), + [anon_sym_or] = ACTIONS(1910), + [anon_sym_patsplit] = ACTIONS(1910), + [anon_sym_rand] = ACTIONS(1910), + [anon_sym_rshift] = ACTIONS(1910), + [anon_sym_sin] = ACTIONS(1910), + [anon_sym_split] = ACTIONS(1910), + [anon_sym_sprintf] = ACTIONS(1910), + [anon_sym_sqrt] = ACTIONS(1910), + [anon_sym_srand] = ACTIONS(1910), + [anon_sym_strftime] = ACTIONS(1910), + [anon_sym_strtonum] = ACTIONS(1910), + [anon_sym_sub] = ACTIONS(1910), + [anon_sym_substr] = ACTIONS(1910), + [anon_sym_systime] = ACTIONS(1910), + [anon_sym_tolower] = ACTIONS(1910), + [anon_sym_toupper] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1910), + [anon_sym_xor] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1910), + [sym__if_else_separator] = ACTIONS(1912), + }, + [1195] = { + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_CR_LF] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_do] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [sym_break_statement] = ACTIONS(1914), + [sym_continue_statement] = ACTIONS(1914), + [anon_sym_delete] = ACTIONS(1914), + [anon_sym_exit] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_switch] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_case] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_getline] = ACTIONS(1914), + [sym_next_statement] = ACTIONS(1914), + [sym_nextfile_statement] = ACTIONS(1914), + [anon_sym_print] = ACTIONS(1914), + [anon_sym_printf] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1914), + [aux_sym_number_token1] = ACTIONS(1914), + [aux_sym_number_token2] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_and] = ACTIONS(1914), + [anon_sym_asort] = ACTIONS(1914), + [anon_sym_asorti] = ACTIONS(1914), + [anon_sym_bindtextdomain] = ACTIONS(1914), + [anon_sym_compl] = ACTIONS(1914), + [anon_sym_cos] = ACTIONS(1914), + [anon_sym_dcgettext] = ACTIONS(1914), + [anon_sym_dcngettext] = ACTIONS(1914), + [anon_sym_exp] = ACTIONS(1914), + [anon_sym_gensub] = ACTIONS(1914), + [anon_sym_gsub] = ACTIONS(1914), + [anon_sym_index] = ACTIONS(1914), + [anon_sym_int] = ACTIONS(1914), + [anon_sym_isarray] = ACTIONS(1914), + [anon_sym_length] = ACTIONS(1914), + [anon_sym_log] = ACTIONS(1914), + [anon_sym_lshift] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mktime] = ACTIONS(1914), + [anon_sym_or] = ACTIONS(1914), + [anon_sym_patsplit] = ACTIONS(1914), + [anon_sym_rand] = ACTIONS(1914), + [anon_sym_rshift] = ACTIONS(1914), + [anon_sym_sin] = ACTIONS(1914), + [anon_sym_split] = ACTIONS(1914), + [anon_sym_sprintf] = ACTIONS(1914), + [anon_sym_sqrt] = ACTIONS(1914), + [anon_sym_srand] = ACTIONS(1914), + [anon_sym_strftime] = ACTIONS(1914), + [anon_sym_strtonum] = ACTIONS(1914), + [anon_sym_sub] = ACTIONS(1914), + [anon_sym_substr] = ACTIONS(1914), + [anon_sym_systime] = ACTIONS(1914), + [anon_sym_tolower] = ACTIONS(1914), + [anon_sym_toupper] = ACTIONS(1914), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_xor] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [sym__if_else_separator] = ACTIONS(1916), + }, + [1196] = { + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_LF] = ACTIONS(1918), + [anon_sym_CR_LF] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [sym_break_statement] = ACTIONS(1918), + [sym_continue_statement] = ACTIONS(1918), + [anon_sym_delete] = ACTIONS(1918), + [anon_sym_exit] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_case] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_getline] = ACTIONS(1918), + [sym_next_statement] = ACTIONS(1918), + [sym_nextfile_statement] = ACTIONS(1918), + [anon_sym_print] = ACTIONS(1918), + [anon_sym_printf] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1918), + [anon_sym_DASH_DASH] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1918), + [aux_sym_number_token1] = ACTIONS(1918), + [aux_sym_number_token2] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_and] = ACTIONS(1918), + [anon_sym_asort] = ACTIONS(1918), + [anon_sym_asorti] = ACTIONS(1918), + [anon_sym_bindtextdomain] = ACTIONS(1918), + [anon_sym_compl] = ACTIONS(1918), + [anon_sym_cos] = ACTIONS(1918), + [anon_sym_dcgettext] = ACTIONS(1918), + [anon_sym_dcngettext] = ACTIONS(1918), + [anon_sym_exp] = ACTIONS(1918), + [anon_sym_gensub] = ACTIONS(1918), + [anon_sym_gsub] = ACTIONS(1918), + [anon_sym_index] = ACTIONS(1918), + [anon_sym_int] = ACTIONS(1918), + [anon_sym_isarray] = ACTIONS(1918), + [anon_sym_length] = ACTIONS(1918), + [anon_sym_log] = ACTIONS(1918), + [anon_sym_lshift] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mktime] = ACTIONS(1918), + [anon_sym_or] = ACTIONS(1918), + [anon_sym_patsplit] = ACTIONS(1918), + [anon_sym_rand] = ACTIONS(1918), + [anon_sym_rshift] = ACTIONS(1918), + [anon_sym_sin] = ACTIONS(1918), + [anon_sym_split] = ACTIONS(1918), + [anon_sym_sprintf] = ACTIONS(1918), + [anon_sym_sqrt] = ACTIONS(1918), + [anon_sym_srand] = ACTIONS(1918), + [anon_sym_strftime] = ACTIONS(1918), + [anon_sym_strtonum] = ACTIONS(1918), + [anon_sym_sub] = ACTIONS(1918), + [anon_sym_substr] = ACTIONS(1918), + [anon_sym_systime] = ACTIONS(1918), + [anon_sym_tolower] = ACTIONS(1918), + [anon_sym_toupper] = ACTIONS(1918), + [anon_sym_typeof] = ACTIONS(1918), + [anon_sym_xor] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1918), + [sym__if_else_separator] = ACTIONS(1920), + }, + [1197] = { + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_CR_LF] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [sym_break_statement] = ACTIONS(1890), + [sym_continue_statement] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_exit] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_getline] = ACTIONS(1890), + [sym_next_statement] = ACTIONS(1890), + [sym_nextfile_statement] = ACTIONS(1890), + [anon_sym_print] = ACTIONS(1890), + [anon_sym_printf] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1890), + [aux_sym_number_token1] = ACTIONS(1890), + [aux_sym_number_token2] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_and] = ACTIONS(1890), + [anon_sym_asort] = ACTIONS(1890), + [anon_sym_asorti] = ACTIONS(1890), + [anon_sym_bindtextdomain] = ACTIONS(1890), + [anon_sym_compl] = ACTIONS(1890), + [anon_sym_cos] = ACTIONS(1890), + [anon_sym_dcgettext] = ACTIONS(1890), + [anon_sym_dcngettext] = ACTIONS(1890), + [anon_sym_exp] = ACTIONS(1890), + [anon_sym_gensub] = ACTIONS(1890), + [anon_sym_gsub] = ACTIONS(1890), + [anon_sym_index] = ACTIONS(1890), + [anon_sym_int] = ACTIONS(1890), + [anon_sym_isarray] = ACTIONS(1890), + [anon_sym_length] = ACTIONS(1890), + [anon_sym_log] = ACTIONS(1890), + [anon_sym_lshift] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mktime] = ACTIONS(1890), + [anon_sym_or] = ACTIONS(1890), + [anon_sym_patsplit] = ACTIONS(1890), + [anon_sym_rand] = ACTIONS(1890), + [anon_sym_rshift] = ACTIONS(1890), + [anon_sym_sin] = ACTIONS(1890), + [anon_sym_split] = ACTIONS(1890), + [anon_sym_sprintf] = ACTIONS(1890), + [anon_sym_sqrt] = ACTIONS(1890), + [anon_sym_srand] = ACTIONS(1890), + [anon_sym_strftime] = ACTIONS(1890), + [anon_sym_strtonum] = ACTIONS(1890), + [anon_sym_sub] = ACTIONS(1890), + [anon_sym_substr] = ACTIONS(1890), + [anon_sym_systime] = ACTIONS(1890), + [anon_sym_tolower] = ACTIONS(1890), + [anon_sym_toupper] = ACTIONS(1890), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_xor] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + [sym__if_else_separator] = ACTIONS(1892), + }, + [1198] = { + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_do] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [sym_break_statement] = ACTIONS(1914), + [sym_continue_statement] = ACTIONS(1914), + [anon_sym_delete] = ACTIONS(1914), + [anon_sym_exit] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_switch] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_case] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_getline] = ACTIONS(1914), + [sym_next_statement] = ACTIONS(1914), + [sym_nextfile_statement] = ACTIONS(1914), + [anon_sym_print] = ACTIONS(1914), + [anon_sym_printf] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1914), + [aux_sym_number_token1] = ACTIONS(1914), + [aux_sym_number_token2] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_and] = ACTIONS(1914), + [anon_sym_asort] = ACTIONS(1914), + [anon_sym_asorti] = ACTIONS(1914), + [anon_sym_bindtextdomain] = ACTIONS(1914), + [anon_sym_compl] = ACTIONS(1914), + [anon_sym_cos] = ACTIONS(1914), + [anon_sym_dcgettext] = ACTIONS(1914), + [anon_sym_dcngettext] = ACTIONS(1914), + [anon_sym_exp] = ACTIONS(1914), + [anon_sym_gensub] = ACTIONS(1914), + [anon_sym_gsub] = ACTIONS(1914), + [anon_sym_index] = ACTIONS(1914), + [anon_sym_int] = ACTIONS(1914), + [anon_sym_isarray] = ACTIONS(1914), + [anon_sym_length] = ACTIONS(1914), + [anon_sym_log] = ACTIONS(1914), + [anon_sym_lshift] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mktime] = ACTIONS(1914), + [anon_sym_or] = ACTIONS(1914), + [anon_sym_patsplit] = ACTIONS(1914), + [anon_sym_rand] = ACTIONS(1914), + [anon_sym_rshift] = ACTIONS(1914), + [anon_sym_sin] = ACTIONS(1914), + [anon_sym_split] = ACTIONS(1914), + [anon_sym_sprintf] = ACTIONS(1914), + [anon_sym_sqrt] = ACTIONS(1914), + [anon_sym_srand] = ACTIONS(1914), + [anon_sym_strftime] = ACTIONS(1914), + [anon_sym_strtonum] = ACTIONS(1914), + [anon_sym_sub] = ACTIONS(1914), + [anon_sym_substr] = ACTIONS(1914), + [anon_sym_systime] = ACTIONS(1914), + [anon_sym_tolower] = ACTIONS(1914), + [anon_sym_toupper] = ACTIONS(1914), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_xor] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [sym__if_else_separator] = ACTIONS(1916), + }, + [1199] = { + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_CR_LF] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_do] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [sym_break_statement] = ACTIONS(1922), + [sym_continue_statement] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1922), + [anon_sym_exit] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_switch] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_getline] = ACTIONS(1922), + [sym_next_statement] = ACTIONS(1922), + [sym_nextfile_statement] = ACTIONS(1922), + [anon_sym_print] = ACTIONS(1922), + [anon_sym_printf] = ACTIONS(1922), + [anon_sym_SLASH] = ACTIONS(1922), + [anon_sym_PLUS] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_PLUS_PLUS] = ACTIONS(1922), + [anon_sym_DASH_DASH] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1922), + [anon_sym_AT] = ACTIONS(1922), + [aux_sym_number_token1] = ACTIONS(1922), + [aux_sym_number_token2] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_and] = ACTIONS(1922), + [anon_sym_asort] = ACTIONS(1922), + [anon_sym_asorti] = ACTIONS(1922), + [anon_sym_bindtextdomain] = ACTIONS(1922), + [anon_sym_compl] = ACTIONS(1922), + [anon_sym_cos] = ACTIONS(1922), + [anon_sym_dcgettext] = ACTIONS(1922), + [anon_sym_dcngettext] = ACTIONS(1922), + [anon_sym_exp] = ACTIONS(1922), + [anon_sym_gensub] = ACTIONS(1922), + [anon_sym_gsub] = ACTIONS(1922), + [anon_sym_index] = ACTIONS(1922), + [anon_sym_int] = ACTIONS(1922), + [anon_sym_isarray] = ACTIONS(1922), + [anon_sym_length] = ACTIONS(1922), + [anon_sym_log] = ACTIONS(1922), + [anon_sym_lshift] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mktime] = ACTIONS(1922), + [anon_sym_or] = ACTIONS(1922), + [anon_sym_patsplit] = ACTIONS(1922), + [anon_sym_rand] = ACTIONS(1922), + [anon_sym_rshift] = ACTIONS(1922), + [anon_sym_sin] = ACTIONS(1922), + [anon_sym_split] = ACTIONS(1922), + [anon_sym_sprintf] = ACTIONS(1922), + [anon_sym_sqrt] = ACTIONS(1922), + [anon_sym_srand] = ACTIONS(1922), + [anon_sym_strftime] = ACTIONS(1922), + [anon_sym_strtonum] = ACTIONS(1922), + [anon_sym_sub] = ACTIONS(1922), + [anon_sym_substr] = ACTIONS(1922), + [anon_sym_systime] = ACTIONS(1922), + [anon_sym_tolower] = ACTIONS(1922), + [anon_sym_toupper] = ACTIONS(1922), + [anon_sym_typeof] = ACTIONS(1922), + [anon_sym_xor] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1922), + [sym__if_else_separator] = ACTIONS(1924), + }, + [1200] = { + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_CR_LF] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [sym_break_statement] = ACTIONS(1878), + [sym_continue_statement] = ACTIONS(1878), + [anon_sym_delete] = ACTIONS(1878), + [anon_sym_exit] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_getline] = ACTIONS(1878), + [sym_next_statement] = ACTIONS(1878), + [sym_nextfile_statement] = ACTIONS(1878), + [anon_sym_print] = ACTIONS(1878), + [anon_sym_printf] = ACTIONS(1878), + [anon_sym_SLASH] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1878), + [aux_sym_number_token1] = ACTIONS(1878), + [aux_sym_number_token2] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_and] = ACTIONS(1878), + [anon_sym_asort] = ACTIONS(1878), + [anon_sym_asorti] = ACTIONS(1878), + [anon_sym_bindtextdomain] = ACTIONS(1878), + [anon_sym_compl] = ACTIONS(1878), + [anon_sym_cos] = ACTIONS(1878), + [anon_sym_dcgettext] = ACTIONS(1878), + [anon_sym_dcngettext] = ACTIONS(1878), + [anon_sym_exp] = ACTIONS(1878), + [anon_sym_gensub] = ACTIONS(1878), + [anon_sym_gsub] = ACTIONS(1878), + [anon_sym_index] = ACTIONS(1878), + [anon_sym_int] = ACTIONS(1878), + [anon_sym_isarray] = ACTIONS(1878), + [anon_sym_length] = ACTIONS(1878), + [anon_sym_log] = ACTIONS(1878), + [anon_sym_lshift] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mktime] = ACTIONS(1878), + [anon_sym_or] = ACTIONS(1878), + [anon_sym_patsplit] = ACTIONS(1878), + [anon_sym_rand] = ACTIONS(1878), + [anon_sym_rshift] = ACTIONS(1878), + [anon_sym_sin] = ACTIONS(1878), + [anon_sym_split] = ACTIONS(1878), + [anon_sym_sprintf] = ACTIONS(1878), + [anon_sym_sqrt] = ACTIONS(1878), + [anon_sym_srand] = ACTIONS(1878), + [anon_sym_strftime] = ACTIONS(1878), + [anon_sym_strtonum] = ACTIONS(1878), + [anon_sym_sub] = ACTIONS(1878), + [anon_sym_substr] = ACTIONS(1878), + [anon_sym_systime] = ACTIONS(1878), + [anon_sym_tolower] = ACTIONS(1878), + [anon_sym_toupper] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1878), + [anon_sym_xor] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1878), + [sym__if_else_separator] = ACTIONS(1880), + }, + [1201] = { + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1926), + [anon_sym_CR_LF] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [sym_break_statement] = ACTIONS(1926), + [sym_continue_statement] = ACTIONS(1926), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_exit] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_switch] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_case] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_getline] = ACTIONS(1926), + [sym_next_statement] = ACTIONS(1926), + [sym_nextfile_statement] = ACTIONS(1926), + [anon_sym_print] = ACTIONS(1926), + [anon_sym_printf] = ACTIONS(1926), + [anon_sym_SLASH] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_DOLLAR] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1926), + [aux_sym_number_token1] = ACTIONS(1926), + [aux_sym_number_token2] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [anon_sym_and] = ACTIONS(1926), + [anon_sym_asort] = ACTIONS(1926), + [anon_sym_asorti] = ACTIONS(1926), + [anon_sym_bindtextdomain] = ACTIONS(1926), + [anon_sym_compl] = ACTIONS(1926), + [anon_sym_cos] = ACTIONS(1926), + [anon_sym_dcgettext] = ACTIONS(1926), + [anon_sym_dcngettext] = ACTIONS(1926), + [anon_sym_exp] = ACTIONS(1926), + [anon_sym_gensub] = ACTIONS(1926), + [anon_sym_gsub] = ACTIONS(1926), + [anon_sym_index] = ACTIONS(1926), + [anon_sym_int] = ACTIONS(1926), + [anon_sym_isarray] = ACTIONS(1926), + [anon_sym_length] = ACTIONS(1926), + [anon_sym_log] = ACTIONS(1926), + [anon_sym_lshift] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mktime] = ACTIONS(1926), + [anon_sym_or] = ACTIONS(1926), + [anon_sym_patsplit] = ACTIONS(1926), + [anon_sym_rand] = ACTIONS(1926), + [anon_sym_rshift] = ACTIONS(1926), + [anon_sym_sin] = ACTIONS(1926), + [anon_sym_split] = ACTIONS(1926), + [anon_sym_sprintf] = ACTIONS(1926), + [anon_sym_sqrt] = ACTIONS(1926), + [anon_sym_srand] = ACTIONS(1926), + [anon_sym_strftime] = ACTIONS(1926), + [anon_sym_strtonum] = ACTIONS(1926), + [anon_sym_sub] = ACTIONS(1926), + [anon_sym_substr] = ACTIONS(1926), + [anon_sym_systime] = ACTIONS(1926), + [anon_sym_tolower] = ACTIONS(1926), + [anon_sym_toupper] = ACTIONS(1926), + [anon_sym_typeof] = ACTIONS(1926), + [anon_sym_xor] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1926), + [sym__if_else_separator] = ACTIONS(1928), + }, + [1202] = { + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_do] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [sym_break_statement] = ACTIONS(1930), + [sym_continue_statement] = ACTIONS(1930), + [anon_sym_delete] = ACTIONS(1930), + [anon_sym_exit] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_case] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_getline] = ACTIONS(1930), + [sym_next_statement] = ACTIONS(1930), + [sym_nextfile_statement] = ACTIONS(1930), + [anon_sym_print] = ACTIONS(1930), + [anon_sym_printf] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_DOLLAR] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1930), + [aux_sym_number_token1] = ACTIONS(1930), + [aux_sym_number_token2] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_and] = ACTIONS(1930), + [anon_sym_asort] = ACTIONS(1930), + [anon_sym_asorti] = ACTIONS(1930), + [anon_sym_bindtextdomain] = ACTIONS(1930), + [anon_sym_compl] = ACTIONS(1930), + [anon_sym_cos] = ACTIONS(1930), + [anon_sym_dcgettext] = ACTIONS(1930), + [anon_sym_dcngettext] = ACTIONS(1930), + [anon_sym_exp] = ACTIONS(1930), + [anon_sym_gensub] = ACTIONS(1930), + [anon_sym_gsub] = ACTIONS(1930), + [anon_sym_index] = ACTIONS(1930), + [anon_sym_int] = ACTIONS(1930), + [anon_sym_isarray] = ACTIONS(1930), + [anon_sym_length] = ACTIONS(1930), + [anon_sym_log] = ACTIONS(1930), + [anon_sym_lshift] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mktime] = ACTIONS(1930), + [anon_sym_or] = ACTIONS(1930), + [anon_sym_patsplit] = ACTIONS(1930), + [anon_sym_rand] = ACTIONS(1930), + [anon_sym_rshift] = ACTIONS(1930), + [anon_sym_sin] = ACTIONS(1930), + [anon_sym_split] = ACTIONS(1930), + [anon_sym_sprintf] = ACTIONS(1930), + [anon_sym_sqrt] = ACTIONS(1930), + [anon_sym_srand] = ACTIONS(1930), + [anon_sym_strftime] = ACTIONS(1930), + [anon_sym_strtonum] = ACTIONS(1930), + [anon_sym_sub] = ACTIONS(1930), + [anon_sym_substr] = ACTIONS(1930), + [anon_sym_systime] = ACTIONS(1930), + [anon_sym_tolower] = ACTIONS(1930), + [anon_sym_toupper] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(1930), + [anon_sym_xor] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1930), + [sym__if_else_separator] = ACTIONS(1932), + }, + [1203] = { + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1930), + [anon_sym_CR_LF] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_do] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [sym_break_statement] = ACTIONS(1930), + [sym_continue_statement] = ACTIONS(1930), + [anon_sym_delete] = ACTIONS(1930), + [anon_sym_exit] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_case] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_getline] = ACTIONS(1930), + [sym_next_statement] = ACTIONS(1930), + [sym_nextfile_statement] = ACTIONS(1930), + [anon_sym_print] = ACTIONS(1930), + [anon_sym_printf] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_DOLLAR] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1930), + [aux_sym_number_token1] = ACTIONS(1930), + [aux_sym_number_token2] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_and] = ACTIONS(1930), + [anon_sym_asort] = ACTIONS(1930), + [anon_sym_asorti] = ACTIONS(1930), + [anon_sym_bindtextdomain] = ACTIONS(1930), + [anon_sym_compl] = ACTIONS(1930), + [anon_sym_cos] = ACTIONS(1930), + [anon_sym_dcgettext] = ACTIONS(1930), + [anon_sym_dcngettext] = ACTIONS(1930), + [anon_sym_exp] = ACTIONS(1930), + [anon_sym_gensub] = ACTIONS(1930), + [anon_sym_gsub] = ACTIONS(1930), + [anon_sym_index] = ACTIONS(1930), + [anon_sym_int] = ACTIONS(1930), + [anon_sym_isarray] = ACTIONS(1930), + [anon_sym_length] = ACTIONS(1930), + [anon_sym_log] = ACTIONS(1930), + [anon_sym_lshift] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mktime] = ACTIONS(1930), + [anon_sym_or] = ACTIONS(1930), + [anon_sym_patsplit] = ACTIONS(1930), + [anon_sym_rand] = ACTIONS(1930), + [anon_sym_rshift] = ACTIONS(1930), + [anon_sym_sin] = ACTIONS(1930), + [anon_sym_split] = ACTIONS(1930), + [anon_sym_sprintf] = ACTIONS(1930), + [anon_sym_sqrt] = ACTIONS(1930), + [anon_sym_srand] = ACTIONS(1930), + [anon_sym_strftime] = ACTIONS(1930), + [anon_sym_strtonum] = ACTIONS(1930), + [anon_sym_sub] = ACTIONS(1930), + [anon_sym_substr] = ACTIONS(1930), + [anon_sym_systime] = ACTIONS(1930), + [anon_sym_tolower] = ACTIONS(1930), + [anon_sym_toupper] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(1930), + [anon_sym_xor] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1930), + [sym__if_else_separator] = ACTIONS(1932), + }, + [1204] = { + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [sym_break_statement] = ACTIONS(1934), + [sym_continue_statement] = ACTIONS(1934), + [anon_sym_delete] = ACTIONS(1934), + [anon_sym_exit] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_switch] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_case] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_getline] = ACTIONS(1934), + [sym_next_statement] = ACTIONS(1934), + [sym_nextfile_statement] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1934), + [anon_sym_printf] = ACTIONS(1934), + [anon_sym_SLASH] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1934), + [aux_sym_number_token1] = ACTIONS(1934), + [aux_sym_number_token2] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [anon_sym_and] = ACTIONS(1934), + [anon_sym_asort] = ACTIONS(1934), + [anon_sym_asorti] = ACTIONS(1934), + [anon_sym_bindtextdomain] = ACTIONS(1934), + [anon_sym_compl] = ACTIONS(1934), + [anon_sym_cos] = ACTIONS(1934), + [anon_sym_dcgettext] = ACTIONS(1934), + [anon_sym_dcngettext] = ACTIONS(1934), + [anon_sym_exp] = ACTIONS(1934), + [anon_sym_gensub] = ACTIONS(1934), + [anon_sym_gsub] = ACTIONS(1934), + [anon_sym_index] = ACTIONS(1934), + [anon_sym_int] = ACTIONS(1934), + [anon_sym_isarray] = ACTIONS(1934), + [anon_sym_length] = ACTIONS(1934), + [anon_sym_log] = ACTIONS(1934), + [anon_sym_lshift] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mktime] = ACTIONS(1934), + [anon_sym_or] = ACTIONS(1934), + [anon_sym_patsplit] = ACTIONS(1934), + [anon_sym_rand] = ACTIONS(1934), + [anon_sym_rshift] = ACTIONS(1934), + [anon_sym_sin] = ACTIONS(1934), + [anon_sym_split] = ACTIONS(1934), + [anon_sym_sprintf] = ACTIONS(1934), + [anon_sym_sqrt] = ACTIONS(1934), + [anon_sym_srand] = ACTIONS(1934), + [anon_sym_strftime] = ACTIONS(1934), + [anon_sym_strtonum] = ACTIONS(1934), + [anon_sym_sub] = ACTIONS(1934), + [anon_sym_substr] = ACTIONS(1934), + [anon_sym_systime] = ACTIONS(1934), + [anon_sym_tolower] = ACTIONS(1934), + [anon_sym_toupper] = ACTIONS(1934), + [anon_sym_typeof] = ACTIONS(1934), + [anon_sym_xor] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1934), + [sym__if_else_separator] = ACTIONS(1936), + }, + [1205] = { + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_CR_LF] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [sym_break_statement] = ACTIONS(1934), + [sym_continue_statement] = ACTIONS(1934), + [anon_sym_delete] = ACTIONS(1934), + [anon_sym_exit] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_switch] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_case] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_getline] = ACTIONS(1934), + [sym_next_statement] = ACTIONS(1934), + [sym_nextfile_statement] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1934), + [anon_sym_printf] = ACTIONS(1934), + [anon_sym_SLASH] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1934), + [aux_sym_number_token1] = ACTIONS(1934), + [aux_sym_number_token2] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [anon_sym_and] = ACTIONS(1934), + [anon_sym_asort] = ACTIONS(1934), + [anon_sym_asorti] = ACTIONS(1934), + [anon_sym_bindtextdomain] = ACTIONS(1934), + [anon_sym_compl] = ACTIONS(1934), + [anon_sym_cos] = ACTIONS(1934), + [anon_sym_dcgettext] = ACTIONS(1934), + [anon_sym_dcngettext] = ACTIONS(1934), + [anon_sym_exp] = ACTIONS(1934), + [anon_sym_gensub] = ACTIONS(1934), + [anon_sym_gsub] = ACTIONS(1934), + [anon_sym_index] = ACTIONS(1934), + [anon_sym_int] = ACTIONS(1934), + [anon_sym_isarray] = ACTIONS(1934), + [anon_sym_length] = ACTIONS(1934), + [anon_sym_log] = ACTIONS(1934), + [anon_sym_lshift] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mktime] = ACTIONS(1934), + [anon_sym_or] = ACTIONS(1934), + [anon_sym_patsplit] = ACTIONS(1934), + [anon_sym_rand] = ACTIONS(1934), + [anon_sym_rshift] = ACTIONS(1934), + [anon_sym_sin] = ACTIONS(1934), + [anon_sym_split] = ACTIONS(1934), + [anon_sym_sprintf] = ACTIONS(1934), + [anon_sym_sqrt] = ACTIONS(1934), + [anon_sym_srand] = ACTIONS(1934), + [anon_sym_strftime] = ACTIONS(1934), + [anon_sym_strtonum] = ACTIONS(1934), + [anon_sym_sub] = ACTIONS(1934), + [anon_sym_substr] = ACTIONS(1934), + [anon_sym_systime] = ACTIONS(1934), + [anon_sym_tolower] = ACTIONS(1934), + [anon_sym_toupper] = ACTIONS(1934), + [anon_sym_typeof] = ACTIONS(1934), + [anon_sym_xor] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1934), + [sym__if_else_separator] = ACTIONS(1936), + }, + [1206] = { + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_do] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [sym_break_statement] = ACTIONS(1938), + [sym_continue_statement] = ACTIONS(1938), + [anon_sym_delete] = ACTIONS(1938), + [anon_sym_exit] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_case] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_getline] = ACTIONS(1938), + [sym_next_statement] = ACTIONS(1938), + [sym_nextfile_statement] = ACTIONS(1938), + [anon_sym_print] = ACTIONS(1938), + [anon_sym_printf] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1938), + [aux_sym_number_token1] = ACTIONS(1938), + [aux_sym_number_token2] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_and] = ACTIONS(1938), + [anon_sym_asort] = ACTIONS(1938), + [anon_sym_asorti] = ACTIONS(1938), + [anon_sym_bindtextdomain] = ACTIONS(1938), + [anon_sym_compl] = ACTIONS(1938), + [anon_sym_cos] = ACTIONS(1938), + [anon_sym_dcgettext] = ACTIONS(1938), + [anon_sym_dcngettext] = ACTIONS(1938), + [anon_sym_exp] = ACTIONS(1938), + [anon_sym_gensub] = ACTIONS(1938), + [anon_sym_gsub] = ACTIONS(1938), + [anon_sym_index] = ACTIONS(1938), + [anon_sym_int] = ACTIONS(1938), + [anon_sym_isarray] = ACTIONS(1938), + [anon_sym_length] = ACTIONS(1938), + [anon_sym_log] = ACTIONS(1938), + [anon_sym_lshift] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mktime] = ACTIONS(1938), + [anon_sym_or] = ACTIONS(1938), + [anon_sym_patsplit] = ACTIONS(1938), + [anon_sym_rand] = ACTIONS(1938), + [anon_sym_rshift] = ACTIONS(1938), + [anon_sym_sin] = ACTIONS(1938), + [anon_sym_split] = ACTIONS(1938), + [anon_sym_sprintf] = ACTIONS(1938), + [anon_sym_sqrt] = ACTIONS(1938), + [anon_sym_srand] = ACTIONS(1938), + [anon_sym_strftime] = ACTIONS(1938), + [anon_sym_strtonum] = ACTIONS(1938), + [anon_sym_sub] = ACTIONS(1938), + [anon_sym_substr] = ACTIONS(1938), + [anon_sym_systime] = ACTIONS(1938), + [anon_sym_tolower] = ACTIONS(1938), + [anon_sym_toupper] = ACTIONS(1938), + [anon_sym_typeof] = ACTIONS(1938), + [anon_sym_xor] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(1938), + [sym__if_else_separator] = ACTIONS(1940), + }, + [1207] = { + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_do] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [sym_break_statement] = ACTIONS(1898), + [sym_continue_statement] = ACTIONS(1898), + [anon_sym_delete] = ACTIONS(1898), + [anon_sym_exit] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_switch] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_case] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_getline] = ACTIONS(1898), + [sym_next_statement] = ACTIONS(1898), + [sym_nextfile_statement] = ACTIONS(1898), + [anon_sym_print] = ACTIONS(1898), + [anon_sym_printf] = ACTIONS(1898), + [anon_sym_SLASH] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_PLUS_PLUS] = ACTIONS(1898), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1898), + [aux_sym_number_token1] = ACTIONS(1898), + [aux_sym_number_token2] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [anon_sym_and] = ACTIONS(1898), + [anon_sym_asort] = ACTIONS(1898), + [anon_sym_asorti] = ACTIONS(1898), + [anon_sym_bindtextdomain] = ACTIONS(1898), + [anon_sym_compl] = ACTIONS(1898), + [anon_sym_cos] = ACTIONS(1898), + [anon_sym_dcgettext] = ACTIONS(1898), + [anon_sym_dcngettext] = ACTIONS(1898), + [anon_sym_exp] = ACTIONS(1898), + [anon_sym_gensub] = ACTIONS(1898), + [anon_sym_gsub] = ACTIONS(1898), + [anon_sym_index] = ACTIONS(1898), + [anon_sym_int] = ACTIONS(1898), + [anon_sym_isarray] = ACTIONS(1898), + [anon_sym_length] = ACTIONS(1898), + [anon_sym_log] = ACTIONS(1898), + [anon_sym_lshift] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mktime] = ACTIONS(1898), + [anon_sym_or] = ACTIONS(1898), + [anon_sym_patsplit] = ACTIONS(1898), + [anon_sym_rand] = ACTIONS(1898), + [anon_sym_rshift] = ACTIONS(1898), + [anon_sym_sin] = ACTIONS(1898), + [anon_sym_split] = ACTIONS(1898), + [anon_sym_sprintf] = ACTIONS(1898), + [anon_sym_sqrt] = ACTIONS(1898), + [anon_sym_srand] = ACTIONS(1898), + [anon_sym_strftime] = ACTIONS(1898), + [anon_sym_strtonum] = ACTIONS(1898), + [anon_sym_sub] = ACTIONS(1898), + [anon_sym_substr] = ACTIONS(1898), + [anon_sym_systime] = ACTIONS(1898), + [anon_sym_tolower] = ACTIONS(1898), + [anon_sym_toupper] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1898), + [anon_sym_xor] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1898), + [sym__if_else_separator] = ACTIONS(1900), + }, + [1208] = { + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [sym_break_statement] = ACTIONS(1942), + [sym_continue_statement] = ACTIONS(1942), + [anon_sym_delete] = ACTIONS(1942), + [anon_sym_exit] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_switch] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_case] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_getline] = ACTIONS(1942), + [sym_next_statement] = ACTIONS(1942), + [sym_nextfile_statement] = ACTIONS(1942), + [anon_sym_print] = ACTIONS(1942), + [anon_sym_printf] = ACTIONS(1942), + [anon_sym_SLASH] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1942), + [aux_sym_number_token1] = ACTIONS(1942), + [aux_sym_number_token2] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_and] = ACTIONS(1942), + [anon_sym_asort] = ACTIONS(1942), + [anon_sym_asorti] = ACTIONS(1942), + [anon_sym_bindtextdomain] = ACTIONS(1942), + [anon_sym_compl] = ACTIONS(1942), + [anon_sym_cos] = ACTIONS(1942), + [anon_sym_dcgettext] = ACTIONS(1942), + [anon_sym_dcngettext] = ACTIONS(1942), + [anon_sym_exp] = ACTIONS(1942), + [anon_sym_gensub] = ACTIONS(1942), + [anon_sym_gsub] = ACTIONS(1942), + [anon_sym_index] = ACTIONS(1942), + [anon_sym_int] = ACTIONS(1942), + [anon_sym_isarray] = ACTIONS(1942), + [anon_sym_length] = ACTIONS(1942), + [anon_sym_log] = ACTIONS(1942), + [anon_sym_lshift] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mktime] = ACTIONS(1942), + [anon_sym_or] = ACTIONS(1942), + [anon_sym_patsplit] = ACTIONS(1942), + [anon_sym_rand] = ACTIONS(1942), + [anon_sym_rshift] = ACTIONS(1942), + [anon_sym_sin] = ACTIONS(1942), + [anon_sym_split] = ACTIONS(1942), + [anon_sym_sprintf] = ACTIONS(1942), + [anon_sym_sqrt] = ACTIONS(1942), + [anon_sym_srand] = ACTIONS(1942), + [anon_sym_strftime] = ACTIONS(1942), + [anon_sym_strtonum] = ACTIONS(1942), + [anon_sym_sub] = ACTIONS(1942), + [anon_sym_substr] = ACTIONS(1942), + [anon_sym_systime] = ACTIONS(1942), + [anon_sym_tolower] = ACTIONS(1942), + [anon_sym_toupper] = ACTIONS(1942), + [anon_sym_typeof] = ACTIONS(1942), + [anon_sym_xor] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(1942), + [sym__if_else_separator] = ACTIONS(1944), + }, + [1209] = { + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1826), + [anon_sym_CR_LF] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [sym_break_statement] = ACTIONS(1826), + [sym_continue_statement] = ACTIONS(1826), + [anon_sym_delete] = ACTIONS(1826), + [anon_sym_exit] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_switch] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_case] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_getline] = ACTIONS(1826), + [sym_next_statement] = ACTIONS(1826), + [sym_nextfile_statement] = ACTIONS(1826), + [anon_sym_print] = ACTIONS(1826), + [anon_sym_printf] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1826), + [aux_sym_number_token1] = ACTIONS(1826), + [aux_sym_number_token2] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_and] = ACTIONS(1826), + [anon_sym_asort] = ACTIONS(1826), + [anon_sym_asorti] = ACTIONS(1826), + [anon_sym_bindtextdomain] = ACTIONS(1826), + [anon_sym_compl] = ACTIONS(1826), + [anon_sym_cos] = ACTIONS(1826), + [anon_sym_dcgettext] = ACTIONS(1826), + [anon_sym_dcngettext] = ACTIONS(1826), + [anon_sym_exp] = ACTIONS(1826), + [anon_sym_gensub] = ACTIONS(1826), + [anon_sym_gsub] = ACTIONS(1826), + [anon_sym_index] = ACTIONS(1826), + [anon_sym_int] = ACTIONS(1826), + [anon_sym_isarray] = ACTIONS(1826), + [anon_sym_length] = ACTIONS(1826), + [anon_sym_log] = ACTIONS(1826), + [anon_sym_lshift] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mktime] = ACTIONS(1826), + [anon_sym_or] = ACTIONS(1826), + [anon_sym_patsplit] = ACTIONS(1826), + [anon_sym_rand] = ACTIONS(1826), + [anon_sym_rshift] = ACTIONS(1826), + [anon_sym_sin] = ACTIONS(1826), + [anon_sym_split] = ACTIONS(1826), + [anon_sym_sprintf] = ACTIONS(1826), + [anon_sym_sqrt] = ACTIONS(1826), + [anon_sym_srand] = ACTIONS(1826), + [anon_sym_strftime] = ACTIONS(1826), + [anon_sym_strtonum] = ACTIONS(1826), + [anon_sym_sub] = ACTIONS(1826), + [anon_sym_substr] = ACTIONS(1826), + [anon_sym_systime] = ACTIONS(1826), + [anon_sym_tolower] = ACTIONS(1826), + [anon_sym_toupper] = ACTIONS(1826), + [anon_sym_typeof] = ACTIONS(1826), + [anon_sym_xor] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1826), + [sym__if_else_separator] = ACTIONS(1828), + }, + [1210] = { + [sym_identifier] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1946), + [anon_sym_CR_LF] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_do] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [sym_break_statement] = ACTIONS(1946), + [sym_continue_statement] = ACTIONS(1946), + [anon_sym_delete] = ACTIONS(1946), + [anon_sym_exit] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_switch] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_case] = ACTIONS(1946), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_getline] = ACTIONS(1946), + [sym_next_statement] = ACTIONS(1946), + [sym_nextfile_statement] = ACTIONS(1946), + [anon_sym_print] = ACTIONS(1946), + [anon_sym_printf] = ACTIONS(1946), + [anon_sym_SLASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1946), + [aux_sym_number_token1] = ACTIONS(1946), + [aux_sym_number_token2] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_and] = ACTIONS(1946), + [anon_sym_asort] = ACTIONS(1946), + [anon_sym_asorti] = ACTIONS(1946), + [anon_sym_bindtextdomain] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_cos] = ACTIONS(1946), + [anon_sym_dcgettext] = ACTIONS(1946), + [anon_sym_dcngettext] = ACTIONS(1946), + [anon_sym_exp] = ACTIONS(1946), + [anon_sym_gensub] = ACTIONS(1946), + [anon_sym_gsub] = ACTIONS(1946), + [anon_sym_index] = ACTIONS(1946), + [anon_sym_int] = ACTIONS(1946), + [anon_sym_isarray] = ACTIONS(1946), + [anon_sym_length] = ACTIONS(1946), + [anon_sym_log] = ACTIONS(1946), + [anon_sym_lshift] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_mktime] = ACTIONS(1946), + [anon_sym_or] = ACTIONS(1946), + [anon_sym_patsplit] = ACTIONS(1946), + [anon_sym_rand] = ACTIONS(1946), + [anon_sym_rshift] = ACTIONS(1946), + [anon_sym_sin] = ACTIONS(1946), + [anon_sym_split] = ACTIONS(1946), + [anon_sym_sprintf] = ACTIONS(1946), + [anon_sym_sqrt] = ACTIONS(1946), + [anon_sym_srand] = ACTIONS(1946), + [anon_sym_strftime] = ACTIONS(1946), + [anon_sym_strtonum] = ACTIONS(1946), + [anon_sym_sub] = ACTIONS(1946), + [anon_sym_substr] = ACTIONS(1946), + [anon_sym_systime] = ACTIONS(1946), + [anon_sym_tolower] = ACTIONS(1946), + [anon_sym_toupper] = ACTIONS(1946), + [anon_sym_typeof] = ACTIONS(1946), + [anon_sym_xor] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(1946), + [sym__if_else_separator] = ACTIONS(1948), + }, + [1211] = { + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_LF] = ACTIONS(1950), + [anon_sym_CR_LF] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [sym_break_statement] = ACTIONS(1950), + [sym_continue_statement] = ACTIONS(1950), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_exit] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_switch] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_case] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_getline] = ACTIONS(1950), + [sym_next_statement] = ACTIONS(1950), + [sym_nextfile_statement] = ACTIONS(1950), + [anon_sym_print] = ACTIONS(1950), + [anon_sym_printf] = ACTIONS(1950), + [anon_sym_SLASH] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1950), + [aux_sym_number_token1] = ACTIONS(1950), + [aux_sym_number_token2] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [anon_sym_and] = ACTIONS(1950), + [anon_sym_asort] = ACTIONS(1950), + [anon_sym_asorti] = ACTIONS(1950), + [anon_sym_bindtextdomain] = ACTIONS(1950), + [anon_sym_compl] = ACTIONS(1950), + [anon_sym_cos] = ACTIONS(1950), + [anon_sym_dcgettext] = ACTIONS(1950), + [anon_sym_dcngettext] = ACTIONS(1950), + [anon_sym_exp] = ACTIONS(1950), + [anon_sym_gensub] = ACTIONS(1950), + [anon_sym_gsub] = ACTIONS(1950), + [anon_sym_index] = ACTIONS(1950), + [anon_sym_int] = ACTIONS(1950), + [anon_sym_isarray] = ACTIONS(1950), + [anon_sym_length] = ACTIONS(1950), + [anon_sym_log] = ACTIONS(1950), + [anon_sym_lshift] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mktime] = ACTIONS(1950), + [anon_sym_or] = ACTIONS(1950), + [anon_sym_patsplit] = ACTIONS(1950), + [anon_sym_rand] = ACTIONS(1950), + [anon_sym_rshift] = ACTIONS(1950), + [anon_sym_sin] = ACTIONS(1950), + [anon_sym_split] = ACTIONS(1950), + [anon_sym_sprintf] = ACTIONS(1950), + [anon_sym_sqrt] = ACTIONS(1950), + [anon_sym_srand] = ACTIONS(1950), + [anon_sym_strftime] = ACTIONS(1950), + [anon_sym_strtonum] = ACTIONS(1950), + [anon_sym_sub] = ACTIONS(1950), + [anon_sym_substr] = ACTIONS(1950), + [anon_sym_systime] = ACTIONS(1950), + [anon_sym_tolower] = ACTIONS(1950), + [anon_sym_toupper] = ACTIONS(1950), + [anon_sym_typeof] = ACTIONS(1950), + [anon_sym_xor] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1950), + [sym__if_else_separator] = ACTIONS(1952), + }, + [1212] = { + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_CR_LF] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_do] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [sym_break_statement] = ACTIONS(1902), + [sym_continue_statement] = ACTIONS(1902), + [anon_sym_delete] = ACTIONS(1902), + [anon_sym_exit] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_switch] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_case] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_getline] = ACTIONS(1902), + [sym_next_statement] = ACTIONS(1902), + [sym_nextfile_statement] = ACTIONS(1902), + [anon_sym_print] = ACTIONS(1902), + [anon_sym_printf] = ACTIONS(1902), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1902), + [aux_sym_number_token1] = ACTIONS(1902), + [aux_sym_number_token2] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [anon_sym_and] = ACTIONS(1902), + [anon_sym_asort] = ACTIONS(1902), + [anon_sym_asorti] = ACTIONS(1902), + [anon_sym_bindtextdomain] = ACTIONS(1902), + [anon_sym_compl] = ACTIONS(1902), + [anon_sym_cos] = ACTIONS(1902), + [anon_sym_dcgettext] = ACTIONS(1902), + [anon_sym_dcngettext] = ACTIONS(1902), + [anon_sym_exp] = ACTIONS(1902), + [anon_sym_gensub] = ACTIONS(1902), + [anon_sym_gsub] = ACTIONS(1902), + [anon_sym_index] = ACTIONS(1902), + [anon_sym_int] = ACTIONS(1902), + [anon_sym_isarray] = ACTIONS(1902), + [anon_sym_length] = ACTIONS(1902), + [anon_sym_log] = ACTIONS(1902), + [anon_sym_lshift] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mktime] = ACTIONS(1902), + [anon_sym_or] = ACTIONS(1902), + [anon_sym_patsplit] = ACTIONS(1902), + [anon_sym_rand] = ACTIONS(1902), + [anon_sym_rshift] = ACTIONS(1902), + [anon_sym_sin] = ACTIONS(1902), + [anon_sym_split] = ACTIONS(1902), + [anon_sym_sprintf] = ACTIONS(1902), + [anon_sym_sqrt] = ACTIONS(1902), + [anon_sym_srand] = ACTIONS(1902), + [anon_sym_strftime] = ACTIONS(1902), + [anon_sym_strtonum] = ACTIONS(1902), + [anon_sym_sub] = ACTIONS(1902), + [anon_sym_substr] = ACTIONS(1902), + [anon_sym_systime] = ACTIONS(1902), + [anon_sym_tolower] = ACTIONS(1902), + [anon_sym_toupper] = ACTIONS(1902), + [anon_sym_typeof] = ACTIONS(1902), + [anon_sym_xor] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1902), + [sym__if_else_separator] = ACTIONS(1904), + }, + [1213] = { + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1894), + [anon_sym_CR_LF] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [sym_break_statement] = ACTIONS(1894), + [sym_continue_statement] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_exit] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_getline] = ACTIONS(1894), + [sym_next_statement] = ACTIONS(1894), + [sym_nextfile_statement] = ACTIONS(1894), + [anon_sym_print] = ACTIONS(1894), + [anon_sym_printf] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1894), + [aux_sym_number_token1] = ACTIONS(1894), + [aux_sym_number_token2] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_and] = ACTIONS(1894), + [anon_sym_asort] = ACTIONS(1894), + [anon_sym_asorti] = ACTIONS(1894), + [anon_sym_bindtextdomain] = ACTIONS(1894), + [anon_sym_compl] = ACTIONS(1894), + [anon_sym_cos] = ACTIONS(1894), + [anon_sym_dcgettext] = ACTIONS(1894), + [anon_sym_dcngettext] = ACTIONS(1894), + [anon_sym_exp] = ACTIONS(1894), + [anon_sym_gensub] = ACTIONS(1894), + [anon_sym_gsub] = ACTIONS(1894), + [anon_sym_index] = ACTIONS(1894), + [anon_sym_int] = ACTIONS(1894), + [anon_sym_isarray] = ACTIONS(1894), + [anon_sym_length] = ACTIONS(1894), + [anon_sym_log] = ACTIONS(1894), + [anon_sym_lshift] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mktime] = ACTIONS(1894), + [anon_sym_or] = ACTIONS(1894), + [anon_sym_patsplit] = ACTIONS(1894), + [anon_sym_rand] = ACTIONS(1894), + [anon_sym_rshift] = ACTIONS(1894), + [anon_sym_sin] = ACTIONS(1894), + [anon_sym_split] = ACTIONS(1894), + [anon_sym_sprintf] = ACTIONS(1894), + [anon_sym_sqrt] = ACTIONS(1894), + [anon_sym_srand] = ACTIONS(1894), + [anon_sym_strftime] = ACTIONS(1894), + [anon_sym_strtonum] = ACTIONS(1894), + [anon_sym_sub] = ACTIONS(1894), + [anon_sym_substr] = ACTIONS(1894), + [anon_sym_systime] = ACTIONS(1894), + [anon_sym_tolower] = ACTIONS(1894), + [anon_sym_toupper] = ACTIONS(1894), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_xor] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1894), + [sym__if_else_separator] = ACTIONS(1896), + }, + [1214] = { + [sym_identifier] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_LF] = ACTIONS(1954), + [anon_sym_CR_LF] = ACTIONS(1954), + [anon_sym_if] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_while] = ACTIONS(1954), + [anon_sym_do] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1954), + [sym_break_statement] = ACTIONS(1954), + [sym_continue_statement] = ACTIONS(1954), + [anon_sym_delete] = ACTIONS(1954), + [anon_sym_exit] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1954), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1954), + [anon_sym_default] = ACTIONS(1954), + [anon_sym_getline] = ACTIONS(1954), + [sym_next_statement] = ACTIONS(1954), + [sym_nextfile_statement] = ACTIONS(1954), + [anon_sym_print] = ACTIONS(1954), + [anon_sym_printf] = ACTIONS(1954), + [anon_sym_SLASH] = ACTIONS(1954), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_DOLLAR] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1954), + [aux_sym_number_token1] = ACTIONS(1954), + [aux_sym_number_token2] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [anon_sym_and] = ACTIONS(1954), + [anon_sym_asort] = ACTIONS(1954), + [anon_sym_asorti] = ACTIONS(1954), + [anon_sym_bindtextdomain] = ACTIONS(1954), + [anon_sym_compl] = ACTIONS(1954), + [anon_sym_cos] = ACTIONS(1954), + [anon_sym_dcgettext] = ACTIONS(1954), + [anon_sym_dcngettext] = ACTIONS(1954), + [anon_sym_exp] = ACTIONS(1954), + [anon_sym_gensub] = ACTIONS(1954), + [anon_sym_gsub] = ACTIONS(1954), + [anon_sym_index] = ACTIONS(1954), + [anon_sym_int] = ACTIONS(1954), + [anon_sym_isarray] = ACTIONS(1954), + [anon_sym_length] = ACTIONS(1954), + [anon_sym_log] = ACTIONS(1954), + [anon_sym_lshift] = ACTIONS(1954), + [anon_sym_match] = ACTIONS(1954), + [anon_sym_mktime] = ACTIONS(1954), + [anon_sym_or] = ACTIONS(1954), + [anon_sym_patsplit] = ACTIONS(1954), + [anon_sym_rand] = ACTIONS(1954), + [anon_sym_rshift] = ACTIONS(1954), + [anon_sym_sin] = ACTIONS(1954), + [anon_sym_split] = ACTIONS(1954), + [anon_sym_sprintf] = ACTIONS(1954), + [anon_sym_sqrt] = ACTIONS(1954), + [anon_sym_srand] = ACTIONS(1954), + [anon_sym_strftime] = ACTIONS(1954), + [anon_sym_strtonum] = ACTIONS(1954), + [anon_sym_sub] = ACTIONS(1954), + [anon_sym_substr] = ACTIONS(1954), + [anon_sym_systime] = ACTIONS(1954), + [anon_sym_tolower] = ACTIONS(1954), + [anon_sym_toupper] = ACTIONS(1954), + [anon_sym_typeof] = ACTIONS(1954), + [anon_sym_xor] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(1954), + [sym__if_else_separator] = ACTIONS(1956), + }, + [1215] = { + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LF] = ACTIONS(1822), + [anon_sym_CR_LF] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [sym_break_statement] = ACTIONS(1950), + [sym_continue_statement] = ACTIONS(1950), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_exit] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_switch] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_case] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_getline] = ACTIONS(1950), + [sym_next_statement] = ACTIONS(1950), + [sym_nextfile_statement] = ACTIONS(1950), + [anon_sym_print] = ACTIONS(1950), + [anon_sym_printf] = ACTIONS(1950), + [anon_sym_SLASH] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1950), + [aux_sym_number_token1] = ACTIONS(1950), + [aux_sym_number_token2] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [anon_sym_and] = ACTIONS(1950), + [anon_sym_asort] = ACTIONS(1950), + [anon_sym_asorti] = ACTIONS(1950), + [anon_sym_bindtextdomain] = ACTIONS(1950), + [anon_sym_compl] = ACTIONS(1950), + [anon_sym_cos] = ACTIONS(1950), + [anon_sym_dcgettext] = ACTIONS(1950), + [anon_sym_dcngettext] = ACTIONS(1950), + [anon_sym_exp] = ACTIONS(1950), + [anon_sym_gensub] = ACTIONS(1950), + [anon_sym_gsub] = ACTIONS(1950), + [anon_sym_index] = ACTIONS(1950), + [anon_sym_int] = ACTIONS(1950), + [anon_sym_isarray] = ACTIONS(1950), + [anon_sym_length] = ACTIONS(1950), + [anon_sym_log] = ACTIONS(1950), + [anon_sym_lshift] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mktime] = ACTIONS(1950), + [anon_sym_or] = ACTIONS(1950), + [anon_sym_patsplit] = ACTIONS(1950), + [anon_sym_rand] = ACTIONS(1950), + [anon_sym_rshift] = ACTIONS(1950), + [anon_sym_sin] = ACTIONS(1950), + [anon_sym_split] = ACTIONS(1950), + [anon_sym_sprintf] = ACTIONS(1950), + [anon_sym_sqrt] = ACTIONS(1950), + [anon_sym_srand] = ACTIONS(1950), + [anon_sym_strftime] = ACTIONS(1950), + [anon_sym_strtonum] = ACTIONS(1950), + [anon_sym_sub] = ACTIONS(1950), + [anon_sym_substr] = ACTIONS(1950), + [anon_sym_systime] = ACTIONS(1950), + [anon_sym_tolower] = ACTIONS(1950), + [anon_sym_toupper] = ACTIONS(1950), + [anon_sym_typeof] = ACTIONS(1950), + [anon_sym_xor] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1950), + [sym__if_else_separator] = ACTIONS(1952), + }, + [1216] = { + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_CR_LF] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [sym_break_statement] = ACTIONS(1942), + [sym_continue_statement] = ACTIONS(1942), + [anon_sym_delete] = ACTIONS(1942), + [anon_sym_exit] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_switch] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_case] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_getline] = ACTIONS(1942), + [sym_next_statement] = ACTIONS(1942), + [sym_nextfile_statement] = ACTIONS(1942), + [anon_sym_print] = ACTIONS(1942), + [anon_sym_printf] = ACTIONS(1942), + [anon_sym_SLASH] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1942), + [aux_sym_number_token1] = ACTIONS(1942), + [aux_sym_number_token2] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_and] = ACTIONS(1942), + [anon_sym_asort] = ACTIONS(1942), + [anon_sym_asorti] = ACTIONS(1942), + [anon_sym_bindtextdomain] = ACTIONS(1942), + [anon_sym_compl] = ACTIONS(1942), + [anon_sym_cos] = ACTIONS(1942), + [anon_sym_dcgettext] = ACTIONS(1942), + [anon_sym_dcngettext] = ACTIONS(1942), + [anon_sym_exp] = ACTIONS(1942), + [anon_sym_gensub] = ACTIONS(1942), + [anon_sym_gsub] = ACTIONS(1942), + [anon_sym_index] = ACTIONS(1942), + [anon_sym_int] = ACTIONS(1942), + [anon_sym_isarray] = ACTIONS(1942), + [anon_sym_length] = ACTIONS(1942), + [anon_sym_log] = ACTIONS(1942), + [anon_sym_lshift] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mktime] = ACTIONS(1942), + [anon_sym_or] = ACTIONS(1942), + [anon_sym_patsplit] = ACTIONS(1942), + [anon_sym_rand] = ACTIONS(1942), + [anon_sym_rshift] = ACTIONS(1942), + [anon_sym_sin] = ACTIONS(1942), + [anon_sym_split] = ACTIONS(1942), + [anon_sym_sprintf] = ACTIONS(1942), + [anon_sym_sqrt] = ACTIONS(1942), + [anon_sym_srand] = ACTIONS(1942), + [anon_sym_strftime] = ACTIONS(1942), + [anon_sym_strtonum] = ACTIONS(1942), + [anon_sym_sub] = ACTIONS(1942), + [anon_sym_substr] = ACTIONS(1942), + [anon_sym_systime] = ACTIONS(1942), + [anon_sym_tolower] = ACTIONS(1942), + [anon_sym_toupper] = ACTIONS(1942), + [anon_sym_typeof] = ACTIONS(1942), + [anon_sym_xor] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(1942), + [sym__if_else_separator] = ACTIONS(1944), + }, + [1217] = { + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1938), + [anon_sym_CR_LF] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_do] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [sym_break_statement] = ACTIONS(1938), + [sym_continue_statement] = ACTIONS(1938), + [anon_sym_delete] = ACTIONS(1938), + [anon_sym_exit] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_case] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_getline] = ACTIONS(1938), + [sym_next_statement] = ACTIONS(1938), + [sym_nextfile_statement] = ACTIONS(1938), + [anon_sym_print] = ACTIONS(1938), + [anon_sym_printf] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1938), + [aux_sym_number_token1] = ACTIONS(1938), + [aux_sym_number_token2] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_and] = ACTIONS(1938), + [anon_sym_asort] = ACTIONS(1938), + [anon_sym_asorti] = ACTIONS(1938), + [anon_sym_bindtextdomain] = ACTIONS(1938), + [anon_sym_compl] = ACTIONS(1938), + [anon_sym_cos] = ACTIONS(1938), + [anon_sym_dcgettext] = ACTIONS(1938), + [anon_sym_dcngettext] = ACTIONS(1938), + [anon_sym_exp] = ACTIONS(1938), + [anon_sym_gensub] = ACTIONS(1938), + [anon_sym_gsub] = ACTIONS(1938), + [anon_sym_index] = ACTIONS(1938), + [anon_sym_int] = ACTIONS(1938), + [anon_sym_isarray] = ACTIONS(1938), + [anon_sym_length] = ACTIONS(1938), + [anon_sym_log] = ACTIONS(1938), + [anon_sym_lshift] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mktime] = ACTIONS(1938), + [anon_sym_or] = ACTIONS(1938), + [anon_sym_patsplit] = ACTIONS(1938), + [anon_sym_rand] = ACTIONS(1938), + [anon_sym_rshift] = ACTIONS(1938), + [anon_sym_sin] = ACTIONS(1938), + [anon_sym_split] = ACTIONS(1938), + [anon_sym_sprintf] = ACTIONS(1938), + [anon_sym_sqrt] = ACTIONS(1938), + [anon_sym_srand] = ACTIONS(1938), + [anon_sym_strftime] = ACTIONS(1938), + [anon_sym_strtonum] = ACTIONS(1938), + [anon_sym_sub] = ACTIONS(1938), + [anon_sym_substr] = ACTIONS(1938), + [anon_sym_systime] = ACTIONS(1938), + [anon_sym_tolower] = ACTIONS(1938), + [anon_sym_toupper] = ACTIONS(1938), + [anon_sym_typeof] = ACTIONS(1938), + [anon_sym_xor] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(1938), + [sym__if_else_separator] = ACTIONS(1940), + }, + [1218] = { + [sym_identifier] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_LF] = ACTIONS(1820), + [anon_sym_CR_LF] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [sym_break_statement] = ACTIONS(1820), + [sym_continue_statement] = ACTIONS(1820), + [anon_sym_delete] = ACTIONS(1820), + [anon_sym_exit] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_getline] = ACTIONS(1820), + [sym_next_statement] = ACTIONS(1820), + [sym_nextfile_statement] = ACTIONS(1820), + [anon_sym_print] = ACTIONS(1820), + [anon_sym_printf] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_AT] = ACTIONS(1820), + [aux_sym_number_token1] = ACTIONS(1820), + [aux_sym_number_token2] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [anon_sym_and] = ACTIONS(1820), + [anon_sym_asort] = ACTIONS(1820), + [anon_sym_asorti] = ACTIONS(1820), + [anon_sym_bindtextdomain] = ACTIONS(1820), + [anon_sym_compl] = ACTIONS(1820), + [anon_sym_cos] = ACTIONS(1820), + [anon_sym_dcgettext] = ACTIONS(1820), + [anon_sym_dcngettext] = ACTIONS(1820), + [anon_sym_exp] = ACTIONS(1820), + [anon_sym_gensub] = ACTIONS(1820), + [anon_sym_gsub] = ACTIONS(1820), + [anon_sym_index] = ACTIONS(1820), + [anon_sym_int] = ACTIONS(1820), + [anon_sym_isarray] = ACTIONS(1820), + [anon_sym_length] = ACTIONS(1820), + [anon_sym_log] = ACTIONS(1820), + [anon_sym_lshift] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_mktime] = ACTIONS(1820), + [anon_sym_or] = ACTIONS(1820), + [anon_sym_patsplit] = ACTIONS(1820), + [anon_sym_rand] = ACTIONS(1820), + [anon_sym_rshift] = ACTIONS(1820), + [anon_sym_sin] = ACTIONS(1820), + [anon_sym_split] = ACTIONS(1820), + [anon_sym_sprintf] = ACTIONS(1820), + [anon_sym_sqrt] = ACTIONS(1820), + [anon_sym_srand] = ACTIONS(1820), + [anon_sym_strftime] = ACTIONS(1820), + [anon_sym_strtonum] = ACTIONS(1820), + [anon_sym_sub] = ACTIONS(1820), + [anon_sym_substr] = ACTIONS(1820), + [anon_sym_systime] = ACTIONS(1820), + [anon_sym_tolower] = ACTIONS(1820), + [anon_sym_toupper] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1820), + [anon_sym_xor] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(1820), + }, + [1219] = { + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_CR_LF] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [sym_break_statement] = ACTIONS(1846), + [sym_continue_statement] = ACTIONS(1846), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_exit] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_switch] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_case] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_getline] = ACTIONS(1846), + [sym_next_statement] = ACTIONS(1846), + [sym_nextfile_statement] = ACTIONS(1846), + [anon_sym_print] = ACTIONS(1846), + [anon_sym_printf] = ACTIONS(1846), + [anon_sym_SLASH] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1846), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1846), + [aux_sym_number_token1] = ACTIONS(1846), + [aux_sym_number_token2] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_and] = ACTIONS(1846), + [anon_sym_asort] = ACTIONS(1846), + [anon_sym_asorti] = ACTIONS(1846), + [anon_sym_bindtextdomain] = ACTIONS(1846), + [anon_sym_compl] = ACTIONS(1846), + [anon_sym_cos] = ACTIONS(1846), + [anon_sym_dcgettext] = ACTIONS(1846), + [anon_sym_dcngettext] = ACTIONS(1846), + [anon_sym_exp] = ACTIONS(1846), + [anon_sym_gensub] = ACTIONS(1846), + [anon_sym_gsub] = ACTIONS(1846), + [anon_sym_index] = ACTIONS(1846), + [anon_sym_int] = ACTIONS(1846), + [anon_sym_isarray] = ACTIONS(1846), + [anon_sym_length] = ACTIONS(1846), + [anon_sym_log] = ACTIONS(1846), + [anon_sym_lshift] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mktime] = ACTIONS(1846), + [anon_sym_or] = ACTIONS(1846), + [anon_sym_patsplit] = ACTIONS(1846), + [anon_sym_rand] = ACTIONS(1846), + [anon_sym_rshift] = ACTIONS(1846), + [anon_sym_sin] = ACTIONS(1846), + [anon_sym_split] = ACTIONS(1846), + [anon_sym_sprintf] = ACTIONS(1846), + [anon_sym_sqrt] = ACTIONS(1846), + [anon_sym_srand] = ACTIONS(1846), + [anon_sym_strftime] = ACTIONS(1846), + [anon_sym_strtonum] = ACTIONS(1846), + [anon_sym_sub] = ACTIONS(1846), + [anon_sym_substr] = ACTIONS(1846), + [anon_sym_systime] = ACTIONS(1846), + [anon_sym_tolower] = ACTIONS(1846), + [anon_sym_toupper] = ACTIONS(1846), + [anon_sym_typeof] = ACTIONS(1846), + [anon_sym_xor] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1846), + }, + [1220] = { + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_CR_LF] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [sym_break_statement] = ACTIONS(1882), + [sym_continue_statement] = ACTIONS(1882), + [anon_sym_delete] = ACTIONS(1882), + [anon_sym_exit] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_switch] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_getline] = ACTIONS(1882), + [sym_next_statement] = ACTIONS(1882), + [sym_nextfile_statement] = ACTIONS(1882), + [anon_sym_print] = ACTIONS(1882), + [anon_sym_printf] = ACTIONS(1882), + [anon_sym_SLASH] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1882), + [aux_sym_number_token1] = ACTIONS(1882), + [aux_sym_number_token2] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_and] = ACTIONS(1882), + [anon_sym_asort] = ACTIONS(1882), + [anon_sym_asorti] = ACTIONS(1882), + [anon_sym_bindtextdomain] = ACTIONS(1882), + [anon_sym_compl] = ACTIONS(1882), + [anon_sym_cos] = ACTIONS(1882), + [anon_sym_dcgettext] = ACTIONS(1882), + [anon_sym_dcngettext] = ACTIONS(1882), + [anon_sym_exp] = ACTIONS(1882), + [anon_sym_gensub] = ACTIONS(1882), + [anon_sym_gsub] = ACTIONS(1882), + [anon_sym_index] = ACTIONS(1882), + [anon_sym_int] = ACTIONS(1882), + [anon_sym_isarray] = ACTIONS(1882), + [anon_sym_length] = ACTIONS(1882), + [anon_sym_log] = ACTIONS(1882), + [anon_sym_lshift] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mktime] = ACTIONS(1882), + [anon_sym_or] = ACTIONS(1882), + [anon_sym_patsplit] = ACTIONS(1882), + [anon_sym_rand] = ACTIONS(1882), + [anon_sym_rshift] = ACTIONS(1882), + [anon_sym_sin] = ACTIONS(1882), + [anon_sym_split] = ACTIONS(1882), + [anon_sym_sprintf] = ACTIONS(1882), + [anon_sym_sqrt] = ACTIONS(1882), + [anon_sym_srand] = ACTIONS(1882), + [anon_sym_strftime] = ACTIONS(1882), + [anon_sym_strtonum] = ACTIONS(1882), + [anon_sym_sub] = ACTIONS(1882), + [anon_sym_substr] = ACTIONS(1882), + [anon_sym_systime] = ACTIONS(1882), + [anon_sym_tolower] = ACTIONS(1882), + [anon_sym_toupper] = ACTIONS(1882), + [anon_sym_typeof] = ACTIONS(1882), + [anon_sym_xor] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1882), + }, + [1221] = { + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_CR_LF] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [sym_break_statement] = ACTIONS(1890), + [sym_continue_statement] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_exit] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_getline] = ACTIONS(1890), + [sym_next_statement] = ACTIONS(1890), + [sym_nextfile_statement] = ACTIONS(1890), + [anon_sym_print] = ACTIONS(1890), + [anon_sym_printf] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1890), + [aux_sym_number_token1] = ACTIONS(1890), + [aux_sym_number_token2] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_and] = ACTIONS(1890), + [anon_sym_asort] = ACTIONS(1890), + [anon_sym_asorti] = ACTIONS(1890), + [anon_sym_bindtextdomain] = ACTIONS(1890), + [anon_sym_compl] = ACTIONS(1890), + [anon_sym_cos] = ACTIONS(1890), + [anon_sym_dcgettext] = ACTIONS(1890), + [anon_sym_dcngettext] = ACTIONS(1890), + [anon_sym_exp] = ACTIONS(1890), + [anon_sym_gensub] = ACTIONS(1890), + [anon_sym_gsub] = ACTIONS(1890), + [anon_sym_index] = ACTIONS(1890), + [anon_sym_int] = ACTIONS(1890), + [anon_sym_isarray] = ACTIONS(1890), + [anon_sym_length] = ACTIONS(1890), + [anon_sym_log] = ACTIONS(1890), + [anon_sym_lshift] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mktime] = ACTIONS(1890), + [anon_sym_or] = ACTIONS(1890), + [anon_sym_patsplit] = ACTIONS(1890), + [anon_sym_rand] = ACTIONS(1890), + [anon_sym_rshift] = ACTIONS(1890), + [anon_sym_sin] = ACTIONS(1890), + [anon_sym_split] = ACTIONS(1890), + [anon_sym_sprintf] = ACTIONS(1890), + [anon_sym_sqrt] = ACTIONS(1890), + [anon_sym_srand] = ACTIONS(1890), + [anon_sym_strftime] = ACTIONS(1890), + [anon_sym_strtonum] = ACTIONS(1890), + [anon_sym_sub] = ACTIONS(1890), + [anon_sym_substr] = ACTIONS(1890), + [anon_sym_systime] = ACTIONS(1890), + [anon_sym_tolower] = ACTIONS(1890), + [anon_sym_toupper] = ACTIONS(1890), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_xor] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + }, + [1222] = { + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_CR_LF] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [sym_break_statement] = ACTIONS(1890), + [sym_continue_statement] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_exit] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_getline] = ACTIONS(1890), + [sym_next_statement] = ACTIONS(1890), + [sym_nextfile_statement] = ACTIONS(1890), + [anon_sym_print] = ACTIONS(1890), + [anon_sym_printf] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1890), + [aux_sym_number_token1] = ACTIONS(1890), + [aux_sym_number_token2] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_and] = ACTIONS(1890), + [anon_sym_asort] = ACTIONS(1890), + [anon_sym_asorti] = ACTIONS(1890), + [anon_sym_bindtextdomain] = ACTIONS(1890), + [anon_sym_compl] = ACTIONS(1890), + [anon_sym_cos] = ACTIONS(1890), + [anon_sym_dcgettext] = ACTIONS(1890), + [anon_sym_dcngettext] = ACTIONS(1890), + [anon_sym_exp] = ACTIONS(1890), + [anon_sym_gensub] = ACTIONS(1890), + [anon_sym_gsub] = ACTIONS(1890), + [anon_sym_index] = ACTIONS(1890), + [anon_sym_int] = ACTIONS(1890), + [anon_sym_isarray] = ACTIONS(1890), + [anon_sym_length] = ACTIONS(1890), + [anon_sym_log] = ACTIONS(1890), + [anon_sym_lshift] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mktime] = ACTIONS(1890), + [anon_sym_or] = ACTIONS(1890), + [anon_sym_patsplit] = ACTIONS(1890), + [anon_sym_rand] = ACTIONS(1890), + [anon_sym_rshift] = ACTIONS(1890), + [anon_sym_sin] = ACTIONS(1890), + [anon_sym_split] = ACTIONS(1890), + [anon_sym_sprintf] = ACTIONS(1890), + [anon_sym_sqrt] = ACTIONS(1890), + [anon_sym_srand] = ACTIONS(1890), + [anon_sym_strftime] = ACTIONS(1890), + [anon_sym_strtonum] = ACTIONS(1890), + [anon_sym_sub] = ACTIONS(1890), + [anon_sym_substr] = ACTIONS(1890), + [anon_sym_systime] = ACTIONS(1890), + [anon_sym_tolower] = ACTIONS(1890), + [anon_sym_toupper] = ACTIONS(1890), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_xor] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + }, + [1223] = { + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_CR_LF] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [sym_break_statement] = ACTIONS(1942), + [sym_continue_statement] = ACTIONS(1942), + [anon_sym_delete] = ACTIONS(1942), + [anon_sym_exit] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_switch] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_case] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_getline] = ACTIONS(1942), + [sym_next_statement] = ACTIONS(1942), + [sym_nextfile_statement] = ACTIONS(1942), + [anon_sym_print] = ACTIONS(1942), + [anon_sym_printf] = ACTIONS(1942), + [anon_sym_SLASH] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1942), + [aux_sym_number_token1] = ACTIONS(1942), + [aux_sym_number_token2] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_and] = ACTIONS(1942), + [anon_sym_asort] = ACTIONS(1942), + [anon_sym_asorti] = ACTIONS(1942), + [anon_sym_bindtextdomain] = ACTIONS(1942), + [anon_sym_compl] = ACTIONS(1942), + [anon_sym_cos] = ACTIONS(1942), + [anon_sym_dcgettext] = ACTIONS(1942), + [anon_sym_dcngettext] = ACTIONS(1942), + [anon_sym_exp] = ACTIONS(1942), + [anon_sym_gensub] = ACTIONS(1942), + [anon_sym_gsub] = ACTIONS(1942), + [anon_sym_index] = ACTIONS(1942), + [anon_sym_int] = ACTIONS(1942), + [anon_sym_isarray] = ACTIONS(1942), + [anon_sym_length] = ACTIONS(1942), + [anon_sym_log] = ACTIONS(1942), + [anon_sym_lshift] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mktime] = ACTIONS(1942), + [anon_sym_or] = ACTIONS(1942), + [anon_sym_patsplit] = ACTIONS(1942), + [anon_sym_rand] = ACTIONS(1942), + [anon_sym_rshift] = ACTIONS(1942), + [anon_sym_sin] = ACTIONS(1942), + [anon_sym_split] = ACTIONS(1942), + [anon_sym_sprintf] = ACTIONS(1942), + [anon_sym_sqrt] = ACTIONS(1942), + [anon_sym_srand] = ACTIONS(1942), + [anon_sym_strftime] = ACTIONS(1942), + [anon_sym_strtonum] = ACTIONS(1942), + [anon_sym_sub] = ACTIONS(1942), + [anon_sym_substr] = ACTIONS(1942), + [anon_sym_systime] = ACTIONS(1942), + [anon_sym_tolower] = ACTIONS(1942), + [anon_sym_toupper] = ACTIONS(1942), + [anon_sym_typeof] = ACTIONS(1942), + [anon_sym_xor] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(1942), + }, + [1224] = { + [sym_identifier] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_LF] = ACTIONS(1954), + [anon_sym_CR_LF] = ACTIONS(1954), + [anon_sym_if] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_while] = ACTIONS(1954), + [anon_sym_do] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1954), + [sym_break_statement] = ACTIONS(1954), + [sym_continue_statement] = ACTIONS(1954), + [anon_sym_delete] = ACTIONS(1954), + [anon_sym_exit] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1954), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1954), + [anon_sym_default] = ACTIONS(1954), + [anon_sym_getline] = ACTIONS(1954), + [sym_next_statement] = ACTIONS(1954), + [sym_nextfile_statement] = ACTIONS(1954), + [anon_sym_print] = ACTIONS(1954), + [anon_sym_printf] = ACTIONS(1954), + [anon_sym_SLASH] = ACTIONS(1954), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_DOLLAR] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1954), + [aux_sym_number_token1] = ACTIONS(1954), + [aux_sym_number_token2] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [anon_sym_and] = ACTIONS(1954), + [anon_sym_asort] = ACTIONS(1954), + [anon_sym_asorti] = ACTIONS(1954), + [anon_sym_bindtextdomain] = ACTIONS(1954), + [anon_sym_compl] = ACTIONS(1954), + [anon_sym_cos] = ACTIONS(1954), + [anon_sym_dcgettext] = ACTIONS(1954), + [anon_sym_dcngettext] = ACTIONS(1954), + [anon_sym_exp] = ACTIONS(1954), + [anon_sym_gensub] = ACTIONS(1954), + [anon_sym_gsub] = ACTIONS(1954), + [anon_sym_index] = ACTIONS(1954), + [anon_sym_int] = ACTIONS(1954), + [anon_sym_isarray] = ACTIONS(1954), + [anon_sym_length] = ACTIONS(1954), + [anon_sym_log] = ACTIONS(1954), + [anon_sym_lshift] = ACTIONS(1954), + [anon_sym_match] = ACTIONS(1954), + [anon_sym_mktime] = ACTIONS(1954), + [anon_sym_or] = ACTIONS(1954), + [anon_sym_patsplit] = ACTIONS(1954), + [anon_sym_rand] = ACTIONS(1954), + [anon_sym_rshift] = ACTIONS(1954), + [anon_sym_sin] = ACTIONS(1954), + [anon_sym_split] = ACTIONS(1954), + [anon_sym_sprintf] = ACTIONS(1954), + [anon_sym_sqrt] = ACTIONS(1954), + [anon_sym_srand] = ACTIONS(1954), + [anon_sym_strftime] = ACTIONS(1954), + [anon_sym_strtonum] = ACTIONS(1954), + [anon_sym_sub] = ACTIONS(1954), + [anon_sym_substr] = ACTIONS(1954), + [anon_sym_systime] = ACTIONS(1954), + [anon_sym_tolower] = ACTIONS(1954), + [anon_sym_toupper] = ACTIONS(1954), + [anon_sym_typeof] = ACTIONS(1954), + [anon_sym_xor] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(1954), + }, + [1225] = { + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1938), + [anon_sym_CR_LF] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_do] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [sym_break_statement] = ACTIONS(1938), + [sym_continue_statement] = ACTIONS(1938), + [anon_sym_delete] = ACTIONS(1938), + [anon_sym_exit] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_case] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_getline] = ACTIONS(1938), + [sym_next_statement] = ACTIONS(1938), + [sym_nextfile_statement] = ACTIONS(1938), + [anon_sym_print] = ACTIONS(1938), + [anon_sym_printf] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1938), + [aux_sym_number_token1] = ACTIONS(1938), + [aux_sym_number_token2] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_and] = ACTIONS(1938), + [anon_sym_asort] = ACTIONS(1938), + [anon_sym_asorti] = ACTIONS(1938), + [anon_sym_bindtextdomain] = ACTIONS(1938), + [anon_sym_compl] = ACTIONS(1938), + [anon_sym_cos] = ACTIONS(1938), + [anon_sym_dcgettext] = ACTIONS(1938), + [anon_sym_dcngettext] = ACTIONS(1938), + [anon_sym_exp] = ACTIONS(1938), + [anon_sym_gensub] = ACTIONS(1938), + [anon_sym_gsub] = ACTIONS(1938), + [anon_sym_index] = ACTIONS(1938), + [anon_sym_int] = ACTIONS(1938), + [anon_sym_isarray] = ACTIONS(1938), + [anon_sym_length] = ACTIONS(1938), + [anon_sym_log] = ACTIONS(1938), + [anon_sym_lshift] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mktime] = ACTIONS(1938), + [anon_sym_or] = ACTIONS(1938), + [anon_sym_patsplit] = ACTIONS(1938), + [anon_sym_rand] = ACTIONS(1938), + [anon_sym_rshift] = ACTIONS(1938), + [anon_sym_sin] = ACTIONS(1938), + [anon_sym_split] = ACTIONS(1938), + [anon_sym_sprintf] = ACTIONS(1938), + [anon_sym_sqrt] = ACTIONS(1938), + [anon_sym_srand] = ACTIONS(1938), + [anon_sym_strftime] = ACTIONS(1938), + [anon_sym_strtonum] = ACTIONS(1938), + [anon_sym_sub] = ACTIONS(1938), + [anon_sym_substr] = ACTIONS(1938), + [anon_sym_systime] = ACTIONS(1938), + [anon_sym_tolower] = ACTIONS(1938), + [anon_sym_toupper] = ACTIONS(1938), + [anon_sym_typeof] = ACTIONS(1938), + [anon_sym_xor] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(1938), + }, + [1226] = { + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_do] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [sym_break_statement] = ACTIONS(1938), + [sym_continue_statement] = ACTIONS(1938), + [anon_sym_delete] = ACTIONS(1938), + [anon_sym_exit] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_case] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_getline] = ACTIONS(1938), + [sym_next_statement] = ACTIONS(1938), + [sym_nextfile_statement] = ACTIONS(1938), + [anon_sym_print] = ACTIONS(1938), + [anon_sym_printf] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1938), + [aux_sym_number_token1] = ACTIONS(1938), + [aux_sym_number_token2] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_and] = ACTIONS(1938), + [anon_sym_asort] = ACTIONS(1938), + [anon_sym_asorti] = ACTIONS(1938), + [anon_sym_bindtextdomain] = ACTIONS(1938), + [anon_sym_compl] = ACTIONS(1938), + [anon_sym_cos] = ACTIONS(1938), + [anon_sym_dcgettext] = ACTIONS(1938), + [anon_sym_dcngettext] = ACTIONS(1938), + [anon_sym_exp] = ACTIONS(1938), + [anon_sym_gensub] = ACTIONS(1938), + [anon_sym_gsub] = ACTIONS(1938), + [anon_sym_index] = ACTIONS(1938), + [anon_sym_int] = ACTIONS(1938), + [anon_sym_isarray] = ACTIONS(1938), + [anon_sym_length] = ACTIONS(1938), + [anon_sym_log] = ACTIONS(1938), + [anon_sym_lshift] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mktime] = ACTIONS(1938), + [anon_sym_or] = ACTIONS(1938), + [anon_sym_patsplit] = ACTIONS(1938), + [anon_sym_rand] = ACTIONS(1938), + [anon_sym_rshift] = ACTIONS(1938), + [anon_sym_sin] = ACTIONS(1938), + [anon_sym_split] = ACTIONS(1938), + [anon_sym_sprintf] = ACTIONS(1938), + [anon_sym_sqrt] = ACTIONS(1938), + [anon_sym_srand] = ACTIONS(1938), + [anon_sym_strftime] = ACTIONS(1938), + [anon_sym_strtonum] = ACTIONS(1938), + [anon_sym_sub] = ACTIONS(1938), + [anon_sym_substr] = ACTIONS(1938), + [anon_sym_systime] = ACTIONS(1938), + [anon_sym_tolower] = ACTIONS(1938), + [anon_sym_toupper] = ACTIONS(1938), + [anon_sym_typeof] = ACTIONS(1938), + [anon_sym_xor] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(1938), + }, + [1227] = { + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_CR_LF] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [sym_break_statement] = ACTIONS(1934), + [sym_continue_statement] = ACTIONS(1934), + [anon_sym_delete] = ACTIONS(1934), + [anon_sym_exit] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_switch] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_case] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_getline] = ACTIONS(1934), + [sym_next_statement] = ACTIONS(1934), + [sym_nextfile_statement] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1934), + [anon_sym_printf] = ACTIONS(1934), + [anon_sym_SLASH] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1934), + [aux_sym_number_token1] = ACTIONS(1934), + [aux_sym_number_token2] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [anon_sym_and] = ACTIONS(1934), + [anon_sym_asort] = ACTIONS(1934), + [anon_sym_asorti] = ACTIONS(1934), + [anon_sym_bindtextdomain] = ACTIONS(1934), + [anon_sym_compl] = ACTIONS(1934), + [anon_sym_cos] = ACTIONS(1934), + [anon_sym_dcgettext] = ACTIONS(1934), + [anon_sym_dcngettext] = ACTIONS(1934), + [anon_sym_exp] = ACTIONS(1934), + [anon_sym_gensub] = ACTIONS(1934), + [anon_sym_gsub] = ACTIONS(1934), + [anon_sym_index] = ACTIONS(1934), + [anon_sym_int] = ACTIONS(1934), + [anon_sym_isarray] = ACTIONS(1934), + [anon_sym_length] = ACTIONS(1934), + [anon_sym_log] = ACTIONS(1934), + [anon_sym_lshift] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mktime] = ACTIONS(1934), + [anon_sym_or] = ACTIONS(1934), + [anon_sym_patsplit] = ACTIONS(1934), + [anon_sym_rand] = ACTIONS(1934), + [anon_sym_rshift] = ACTIONS(1934), + [anon_sym_sin] = ACTIONS(1934), + [anon_sym_split] = ACTIONS(1934), + [anon_sym_sprintf] = ACTIONS(1934), + [anon_sym_sqrt] = ACTIONS(1934), + [anon_sym_srand] = ACTIONS(1934), + [anon_sym_strftime] = ACTIONS(1934), + [anon_sym_strtonum] = ACTIONS(1934), + [anon_sym_sub] = ACTIONS(1934), + [anon_sym_substr] = ACTIONS(1934), + [anon_sym_systime] = ACTIONS(1934), + [anon_sym_tolower] = ACTIONS(1934), + [anon_sym_toupper] = ACTIONS(1934), + [anon_sym_typeof] = ACTIONS(1934), + [anon_sym_xor] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1934), + }, + [1228] = { + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_LF] = ACTIONS(1914), + [anon_sym_CR_LF] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_do] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [sym_break_statement] = ACTIONS(1914), + [sym_continue_statement] = ACTIONS(1914), + [anon_sym_delete] = ACTIONS(1914), + [anon_sym_exit] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_switch] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_case] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_getline] = ACTIONS(1914), + [sym_next_statement] = ACTIONS(1914), + [sym_nextfile_statement] = ACTIONS(1914), + [anon_sym_print] = ACTIONS(1914), + [anon_sym_printf] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1914), + [aux_sym_number_token1] = ACTIONS(1914), + [aux_sym_number_token2] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_and] = ACTIONS(1914), + [anon_sym_asort] = ACTIONS(1914), + [anon_sym_asorti] = ACTIONS(1914), + [anon_sym_bindtextdomain] = ACTIONS(1914), + [anon_sym_compl] = ACTIONS(1914), + [anon_sym_cos] = ACTIONS(1914), + [anon_sym_dcgettext] = ACTIONS(1914), + [anon_sym_dcngettext] = ACTIONS(1914), + [anon_sym_exp] = ACTIONS(1914), + [anon_sym_gensub] = ACTIONS(1914), + [anon_sym_gsub] = ACTIONS(1914), + [anon_sym_index] = ACTIONS(1914), + [anon_sym_int] = ACTIONS(1914), + [anon_sym_isarray] = ACTIONS(1914), + [anon_sym_length] = ACTIONS(1914), + [anon_sym_log] = ACTIONS(1914), + [anon_sym_lshift] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mktime] = ACTIONS(1914), + [anon_sym_or] = ACTIONS(1914), + [anon_sym_patsplit] = ACTIONS(1914), + [anon_sym_rand] = ACTIONS(1914), + [anon_sym_rshift] = ACTIONS(1914), + [anon_sym_sin] = ACTIONS(1914), + [anon_sym_split] = ACTIONS(1914), + [anon_sym_sprintf] = ACTIONS(1914), + [anon_sym_sqrt] = ACTIONS(1914), + [anon_sym_srand] = ACTIONS(1914), + [anon_sym_strftime] = ACTIONS(1914), + [anon_sym_strtonum] = ACTIONS(1914), + [anon_sym_sub] = ACTIONS(1914), + [anon_sym_substr] = ACTIONS(1914), + [anon_sym_systime] = ACTIONS(1914), + [anon_sym_tolower] = ACTIONS(1914), + [anon_sym_toupper] = ACTIONS(1914), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_xor] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + }, + [1229] = { + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [sym_break_statement] = ACTIONS(1934), + [sym_continue_statement] = ACTIONS(1934), + [anon_sym_delete] = ACTIONS(1934), + [anon_sym_exit] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_switch] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_case] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_getline] = ACTIONS(1934), + [sym_next_statement] = ACTIONS(1934), + [sym_nextfile_statement] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1934), + [anon_sym_printf] = ACTIONS(1934), + [anon_sym_SLASH] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1934), + [aux_sym_number_token1] = ACTIONS(1934), + [aux_sym_number_token2] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [anon_sym_and] = ACTIONS(1934), + [anon_sym_asort] = ACTIONS(1934), + [anon_sym_asorti] = ACTIONS(1934), + [anon_sym_bindtextdomain] = ACTIONS(1934), + [anon_sym_compl] = ACTIONS(1934), + [anon_sym_cos] = ACTIONS(1934), + [anon_sym_dcgettext] = ACTIONS(1934), + [anon_sym_dcngettext] = ACTIONS(1934), + [anon_sym_exp] = ACTIONS(1934), + [anon_sym_gensub] = ACTIONS(1934), + [anon_sym_gsub] = ACTIONS(1934), + [anon_sym_index] = ACTIONS(1934), + [anon_sym_int] = ACTIONS(1934), + [anon_sym_isarray] = ACTIONS(1934), + [anon_sym_length] = ACTIONS(1934), + [anon_sym_log] = ACTIONS(1934), + [anon_sym_lshift] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mktime] = ACTIONS(1934), + [anon_sym_or] = ACTIONS(1934), + [anon_sym_patsplit] = ACTIONS(1934), + [anon_sym_rand] = ACTIONS(1934), + [anon_sym_rshift] = ACTIONS(1934), + [anon_sym_sin] = ACTIONS(1934), + [anon_sym_split] = ACTIONS(1934), + [anon_sym_sprintf] = ACTIONS(1934), + [anon_sym_sqrt] = ACTIONS(1934), + [anon_sym_srand] = ACTIONS(1934), + [anon_sym_strftime] = ACTIONS(1934), + [anon_sym_strtonum] = ACTIONS(1934), + [anon_sym_sub] = ACTIONS(1934), + [anon_sym_substr] = ACTIONS(1934), + [anon_sym_systime] = ACTIONS(1934), + [anon_sym_tolower] = ACTIONS(1934), + [anon_sym_toupper] = ACTIONS(1934), + [anon_sym_typeof] = ACTIONS(1934), + [anon_sym_xor] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1934), + }, + [1230] = { + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [sym_break_statement] = ACTIONS(1942), + [sym_continue_statement] = ACTIONS(1942), + [anon_sym_delete] = ACTIONS(1942), + [anon_sym_exit] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_switch] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_case] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_getline] = ACTIONS(1942), + [sym_next_statement] = ACTIONS(1942), + [sym_nextfile_statement] = ACTIONS(1942), + [anon_sym_print] = ACTIONS(1942), + [anon_sym_printf] = ACTIONS(1942), + [anon_sym_SLASH] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1942), + [aux_sym_number_token1] = ACTIONS(1942), + [aux_sym_number_token2] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_and] = ACTIONS(1942), + [anon_sym_asort] = ACTIONS(1942), + [anon_sym_asorti] = ACTIONS(1942), + [anon_sym_bindtextdomain] = ACTIONS(1942), + [anon_sym_compl] = ACTIONS(1942), + [anon_sym_cos] = ACTIONS(1942), + [anon_sym_dcgettext] = ACTIONS(1942), + [anon_sym_dcngettext] = ACTIONS(1942), + [anon_sym_exp] = ACTIONS(1942), + [anon_sym_gensub] = ACTIONS(1942), + [anon_sym_gsub] = ACTIONS(1942), + [anon_sym_index] = ACTIONS(1942), + [anon_sym_int] = ACTIONS(1942), + [anon_sym_isarray] = ACTIONS(1942), + [anon_sym_length] = ACTIONS(1942), + [anon_sym_log] = ACTIONS(1942), + [anon_sym_lshift] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mktime] = ACTIONS(1942), + [anon_sym_or] = ACTIONS(1942), + [anon_sym_patsplit] = ACTIONS(1942), + [anon_sym_rand] = ACTIONS(1942), + [anon_sym_rshift] = ACTIONS(1942), + [anon_sym_sin] = ACTIONS(1942), + [anon_sym_split] = ACTIONS(1942), + [anon_sym_sprintf] = ACTIONS(1942), + [anon_sym_sqrt] = ACTIONS(1942), + [anon_sym_srand] = ACTIONS(1942), + [anon_sym_strftime] = ACTIONS(1942), + [anon_sym_strtonum] = ACTIONS(1942), + [anon_sym_sub] = ACTIONS(1942), + [anon_sym_substr] = ACTIONS(1942), + [anon_sym_systime] = ACTIONS(1942), + [anon_sym_tolower] = ACTIONS(1942), + [anon_sym_toupper] = ACTIONS(1942), + [anon_sym_typeof] = ACTIONS(1942), + [anon_sym_xor] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(1942), + }, + [1231] = { + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1930), + [anon_sym_CR_LF] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_do] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [sym_break_statement] = ACTIONS(1930), + [sym_continue_statement] = ACTIONS(1930), + [anon_sym_delete] = ACTIONS(1930), + [anon_sym_exit] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_case] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_getline] = ACTIONS(1930), + [sym_next_statement] = ACTIONS(1930), + [sym_nextfile_statement] = ACTIONS(1930), + [anon_sym_print] = ACTIONS(1930), + [anon_sym_printf] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_DOLLAR] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1930), + [aux_sym_number_token1] = ACTIONS(1930), + [aux_sym_number_token2] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_and] = ACTIONS(1930), + [anon_sym_asort] = ACTIONS(1930), + [anon_sym_asorti] = ACTIONS(1930), + [anon_sym_bindtextdomain] = ACTIONS(1930), + [anon_sym_compl] = ACTIONS(1930), + [anon_sym_cos] = ACTIONS(1930), + [anon_sym_dcgettext] = ACTIONS(1930), + [anon_sym_dcngettext] = ACTIONS(1930), + [anon_sym_exp] = ACTIONS(1930), + [anon_sym_gensub] = ACTIONS(1930), + [anon_sym_gsub] = ACTIONS(1930), + [anon_sym_index] = ACTIONS(1930), + [anon_sym_int] = ACTIONS(1930), + [anon_sym_isarray] = ACTIONS(1930), + [anon_sym_length] = ACTIONS(1930), + [anon_sym_log] = ACTIONS(1930), + [anon_sym_lshift] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mktime] = ACTIONS(1930), + [anon_sym_or] = ACTIONS(1930), + [anon_sym_patsplit] = ACTIONS(1930), + [anon_sym_rand] = ACTIONS(1930), + [anon_sym_rshift] = ACTIONS(1930), + [anon_sym_sin] = ACTIONS(1930), + [anon_sym_split] = ACTIONS(1930), + [anon_sym_sprintf] = ACTIONS(1930), + [anon_sym_sqrt] = ACTIONS(1930), + [anon_sym_srand] = ACTIONS(1930), + [anon_sym_strftime] = ACTIONS(1930), + [anon_sym_strtonum] = ACTIONS(1930), + [anon_sym_sub] = ACTIONS(1930), + [anon_sym_substr] = ACTIONS(1930), + [anon_sym_systime] = ACTIONS(1930), + [anon_sym_tolower] = ACTIONS(1930), + [anon_sym_toupper] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(1930), + [anon_sym_xor] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1930), + }, + [1232] = { + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_do] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [sym_break_statement] = ACTIONS(1930), + [sym_continue_statement] = ACTIONS(1930), + [anon_sym_delete] = ACTIONS(1930), + [anon_sym_exit] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_case] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_getline] = ACTIONS(1930), + [sym_next_statement] = ACTIONS(1930), + [sym_nextfile_statement] = ACTIONS(1930), + [anon_sym_print] = ACTIONS(1930), + [anon_sym_printf] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_DOLLAR] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1930), + [aux_sym_number_token1] = ACTIONS(1930), + [aux_sym_number_token2] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_and] = ACTIONS(1930), + [anon_sym_asort] = ACTIONS(1930), + [anon_sym_asorti] = ACTIONS(1930), + [anon_sym_bindtextdomain] = ACTIONS(1930), + [anon_sym_compl] = ACTIONS(1930), + [anon_sym_cos] = ACTIONS(1930), + [anon_sym_dcgettext] = ACTIONS(1930), + [anon_sym_dcngettext] = ACTIONS(1930), + [anon_sym_exp] = ACTIONS(1930), + [anon_sym_gensub] = ACTIONS(1930), + [anon_sym_gsub] = ACTIONS(1930), + [anon_sym_index] = ACTIONS(1930), + [anon_sym_int] = ACTIONS(1930), + [anon_sym_isarray] = ACTIONS(1930), + [anon_sym_length] = ACTIONS(1930), + [anon_sym_log] = ACTIONS(1930), + [anon_sym_lshift] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mktime] = ACTIONS(1930), + [anon_sym_or] = ACTIONS(1930), + [anon_sym_patsplit] = ACTIONS(1930), + [anon_sym_rand] = ACTIONS(1930), + [anon_sym_rshift] = ACTIONS(1930), + [anon_sym_sin] = ACTIONS(1930), + [anon_sym_split] = ACTIONS(1930), + [anon_sym_sprintf] = ACTIONS(1930), + [anon_sym_sqrt] = ACTIONS(1930), + [anon_sym_srand] = ACTIONS(1930), + [anon_sym_strftime] = ACTIONS(1930), + [anon_sym_strtonum] = ACTIONS(1930), + [anon_sym_sub] = ACTIONS(1930), + [anon_sym_substr] = ACTIONS(1930), + [anon_sym_systime] = ACTIONS(1930), + [anon_sym_tolower] = ACTIONS(1930), + [anon_sym_toupper] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(1930), + [anon_sym_xor] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1930), + }, + [1233] = { + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_LF] = ACTIONS(1918), + [anon_sym_CR_LF] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [sym_break_statement] = ACTIONS(1918), + [sym_continue_statement] = ACTIONS(1918), + [anon_sym_delete] = ACTIONS(1918), + [anon_sym_exit] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_case] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_getline] = ACTIONS(1918), + [sym_next_statement] = ACTIONS(1918), + [sym_nextfile_statement] = ACTIONS(1918), + [anon_sym_print] = ACTIONS(1918), + [anon_sym_printf] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1918), + [anon_sym_DASH_DASH] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1918), + [aux_sym_number_token1] = ACTIONS(1918), + [aux_sym_number_token2] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_and] = ACTIONS(1918), + [anon_sym_asort] = ACTIONS(1918), + [anon_sym_asorti] = ACTIONS(1918), + [anon_sym_bindtextdomain] = ACTIONS(1918), + [anon_sym_compl] = ACTIONS(1918), + [anon_sym_cos] = ACTIONS(1918), + [anon_sym_dcgettext] = ACTIONS(1918), + [anon_sym_dcngettext] = ACTIONS(1918), + [anon_sym_exp] = ACTIONS(1918), + [anon_sym_gensub] = ACTIONS(1918), + [anon_sym_gsub] = ACTIONS(1918), + [anon_sym_index] = ACTIONS(1918), + [anon_sym_int] = ACTIONS(1918), + [anon_sym_isarray] = ACTIONS(1918), + [anon_sym_length] = ACTIONS(1918), + [anon_sym_log] = ACTIONS(1918), + [anon_sym_lshift] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mktime] = ACTIONS(1918), + [anon_sym_or] = ACTIONS(1918), + [anon_sym_patsplit] = ACTIONS(1918), + [anon_sym_rand] = ACTIONS(1918), + [anon_sym_rshift] = ACTIONS(1918), + [anon_sym_sin] = ACTIONS(1918), + [anon_sym_split] = ACTIONS(1918), + [anon_sym_sprintf] = ACTIONS(1918), + [anon_sym_sqrt] = ACTIONS(1918), + [anon_sym_srand] = ACTIONS(1918), + [anon_sym_strftime] = ACTIONS(1918), + [anon_sym_strtonum] = ACTIONS(1918), + [anon_sym_sub] = ACTIONS(1918), + [anon_sym_substr] = ACTIONS(1918), + [anon_sym_systime] = ACTIONS(1918), + [anon_sym_tolower] = ACTIONS(1918), + [anon_sym_toupper] = ACTIONS(1918), + [anon_sym_typeof] = ACTIONS(1918), + [anon_sym_xor] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1918), + }, + [1234] = { + [sym_identifier] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1946), + [anon_sym_CR_LF] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_do] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [sym_break_statement] = ACTIONS(1946), + [sym_continue_statement] = ACTIONS(1946), + [anon_sym_delete] = ACTIONS(1946), + [anon_sym_exit] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_switch] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_case] = ACTIONS(1946), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_getline] = ACTIONS(1946), + [sym_next_statement] = ACTIONS(1946), + [sym_nextfile_statement] = ACTIONS(1946), + [anon_sym_print] = ACTIONS(1946), + [anon_sym_printf] = ACTIONS(1946), + [anon_sym_SLASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1946), + [aux_sym_number_token1] = ACTIONS(1946), + [aux_sym_number_token2] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_and] = ACTIONS(1946), + [anon_sym_asort] = ACTIONS(1946), + [anon_sym_asorti] = ACTIONS(1946), + [anon_sym_bindtextdomain] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_cos] = ACTIONS(1946), + [anon_sym_dcgettext] = ACTIONS(1946), + [anon_sym_dcngettext] = ACTIONS(1946), + [anon_sym_exp] = ACTIONS(1946), + [anon_sym_gensub] = ACTIONS(1946), + [anon_sym_gsub] = ACTIONS(1946), + [anon_sym_index] = ACTIONS(1946), + [anon_sym_int] = ACTIONS(1946), + [anon_sym_isarray] = ACTIONS(1946), + [anon_sym_length] = ACTIONS(1946), + [anon_sym_log] = ACTIONS(1946), + [anon_sym_lshift] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_mktime] = ACTIONS(1946), + [anon_sym_or] = ACTIONS(1946), + [anon_sym_patsplit] = ACTIONS(1946), + [anon_sym_rand] = ACTIONS(1946), + [anon_sym_rshift] = ACTIONS(1946), + [anon_sym_sin] = ACTIONS(1946), + [anon_sym_split] = ACTIONS(1946), + [anon_sym_sprintf] = ACTIONS(1946), + [anon_sym_sqrt] = ACTIONS(1946), + [anon_sym_srand] = ACTIONS(1946), + [anon_sym_strftime] = ACTIONS(1946), + [anon_sym_strtonum] = ACTIONS(1946), + [anon_sym_sub] = ACTIONS(1946), + [anon_sym_substr] = ACTIONS(1946), + [anon_sym_systime] = ACTIONS(1946), + [anon_sym_tolower] = ACTIONS(1946), + [anon_sym_toupper] = ACTIONS(1946), + [anon_sym_typeof] = ACTIONS(1946), + [anon_sym_xor] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(1946), + }, + [1235] = { + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_CR_LF] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [sym_break_statement] = ACTIONS(1878), + [sym_continue_statement] = ACTIONS(1878), + [anon_sym_delete] = ACTIONS(1878), + [anon_sym_exit] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_getline] = ACTIONS(1878), + [sym_next_statement] = ACTIONS(1878), + [sym_nextfile_statement] = ACTIONS(1878), + [anon_sym_print] = ACTIONS(1878), + [anon_sym_printf] = ACTIONS(1878), + [anon_sym_SLASH] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1878), + [aux_sym_number_token1] = ACTIONS(1878), + [aux_sym_number_token2] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_and] = ACTIONS(1878), + [anon_sym_asort] = ACTIONS(1878), + [anon_sym_asorti] = ACTIONS(1878), + [anon_sym_bindtextdomain] = ACTIONS(1878), + [anon_sym_compl] = ACTIONS(1878), + [anon_sym_cos] = ACTIONS(1878), + [anon_sym_dcgettext] = ACTIONS(1878), + [anon_sym_dcngettext] = ACTIONS(1878), + [anon_sym_exp] = ACTIONS(1878), + [anon_sym_gensub] = ACTIONS(1878), + [anon_sym_gsub] = ACTIONS(1878), + [anon_sym_index] = ACTIONS(1878), + [anon_sym_int] = ACTIONS(1878), + [anon_sym_isarray] = ACTIONS(1878), + [anon_sym_length] = ACTIONS(1878), + [anon_sym_log] = ACTIONS(1878), + [anon_sym_lshift] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mktime] = ACTIONS(1878), + [anon_sym_or] = ACTIONS(1878), + [anon_sym_patsplit] = ACTIONS(1878), + [anon_sym_rand] = ACTIONS(1878), + [anon_sym_rshift] = ACTIONS(1878), + [anon_sym_sin] = ACTIONS(1878), + [anon_sym_split] = ACTIONS(1878), + [anon_sym_sprintf] = ACTIONS(1878), + [anon_sym_sqrt] = ACTIONS(1878), + [anon_sym_srand] = ACTIONS(1878), + [anon_sym_strftime] = ACTIONS(1878), + [anon_sym_strtonum] = ACTIONS(1878), + [anon_sym_sub] = ACTIONS(1878), + [anon_sym_substr] = ACTIONS(1878), + [anon_sym_systime] = ACTIONS(1878), + [anon_sym_tolower] = ACTIONS(1878), + [anon_sym_toupper] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1878), + [anon_sym_xor] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1878), + }, + [1236] = { + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [sym_break_statement] = ACTIONS(1878), + [sym_continue_statement] = ACTIONS(1878), + [anon_sym_delete] = ACTIONS(1878), + [anon_sym_exit] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_getline] = ACTIONS(1878), + [sym_next_statement] = ACTIONS(1878), + [sym_nextfile_statement] = ACTIONS(1878), + [anon_sym_print] = ACTIONS(1878), + [anon_sym_printf] = ACTIONS(1878), + [anon_sym_SLASH] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1878), + [aux_sym_number_token1] = ACTIONS(1878), + [aux_sym_number_token2] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_and] = ACTIONS(1878), + [anon_sym_asort] = ACTIONS(1878), + [anon_sym_asorti] = ACTIONS(1878), + [anon_sym_bindtextdomain] = ACTIONS(1878), + [anon_sym_compl] = ACTIONS(1878), + [anon_sym_cos] = ACTIONS(1878), + [anon_sym_dcgettext] = ACTIONS(1878), + [anon_sym_dcngettext] = ACTIONS(1878), + [anon_sym_exp] = ACTIONS(1878), + [anon_sym_gensub] = ACTIONS(1878), + [anon_sym_gsub] = ACTIONS(1878), + [anon_sym_index] = ACTIONS(1878), + [anon_sym_int] = ACTIONS(1878), + [anon_sym_isarray] = ACTIONS(1878), + [anon_sym_length] = ACTIONS(1878), + [anon_sym_log] = ACTIONS(1878), + [anon_sym_lshift] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mktime] = ACTIONS(1878), + [anon_sym_or] = ACTIONS(1878), + [anon_sym_patsplit] = ACTIONS(1878), + [anon_sym_rand] = ACTIONS(1878), + [anon_sym_rshift] = ACTIONS(1878), + [anon_sym_sin] = ACTIONS(1878), + [anon_sym_split] = ACTIONS(1878), + [anon_sym_sprintf] = ACTIONS(1878), + [anon_sym_sqrt] = ACTIONS(1878), + [anon_sym_srand] = ACTIONS(1878), + [anon_sym_strftime] = ACTIONS(1878), + [anon_sym_strtonum] = ACTIONS(1878), + [anon_sym_sub] = ACTIONS(1878), + [anon_sym_substr] = ACTIONS(1878), + [anon_sym_systime] = ACTIONS(1878), + [anon_sym_tolower] = ACTIONS(1878), + [anon_sym_toupper] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1878), + [anon_sym_xor] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1878), + }, + [1237] = { + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_LF] = ACTIONS(1858), + [anon_sym_CR_LF] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [sym_break_statement] = ACTIONS(1858), + [sym_continue_statement] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(1858), + [anon_sym_exit] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_getline] = ACTIONS(1858), + [sym_next_statement] = ACTIONS(1858), + [sym_nextfile_statement] = ACTIONS(1858), + [anon_sym_print] = ACTIONS(1858), + [anon_sym_printf] = ACTIONS(1858), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1858), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1858), + [aux_sym_number_token1] = ACTIONS(1858), + [aux_sym_number_token2] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_and] = ACTIONS(1858), + [anon_sym_asort] = ACTIONS(1858), + [anon_sym_asorti] = ACTIONS(1858), + [anon_sym_bindtextdomain] = ACTIONS(1858), + [anon_sym_compl] = ACTIONS(1858), + [anon_sym_cos] = ACTIONS(1858), + [anon_sym_dcgettext] = ACTIONS(1858), + [anon_sym_dcngettext] = ACTIONS(1858), + [anon_sym_exp] = ACTIONS(1858), + [anon_sym_gensub] = ACTIONS(1858), + [anon_sym_gsub] = ACTIONS(1858), + [anon_sym_index] = ACTIONS(1858), + [anon_sym_int] = ACTIONS(1858), + [anon_sym_isarray] = ACTIONS(1858), + [anon_sym_length] = ACTIONS(1858), + [anon_sym_log] = ACTIONS(1858), + [anon_sym_lshift] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mktime] = ACTIONS(1858), + [anon_sym_or] = ACTIONS(1858), + [anon_sym_patsplit] = ACTIONS(1858), + [anon_sym_rand] = ACTIONS(1858), + [anon_sym_rshift] = ACTIONS(1858), + [anon_sym_sin] = ACTIONS(1858), + [anon_sym_split] = ACTIONS(1858), + [anon_sym_sprintf] = ACTIONS(1858), + [anon_sym_sqrt] = ACTIONS(1858), + [anon_sym_srand] = ACTIONS(1858), + [anon_sym_strftime] = ACTIONS(1858), + [anon_sym_strtonum] = ACTIONS(1858), + [anon_sym_sub] = ACTIONS(1858), + [anon_sym_substr] = ACTIONS(1858), + [anon_sym_systime] = ACTIONS(1858), + [anon_sym_tolower] = ACTIONS(1858), + [anon_sym_toupper] = ACTIONS(1858), + [anon_sym_typeof] = ACTIONS(1858), + [anon_sym_xor] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1858), + }, + [1238] = { + [sym_comment] = STATE(1238), + [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [sym_break_statement] = ACTIONS(1960), + [sym_continue_statement] = ACTIONS(1960), + [anon_sym_delete] = ACTIONS(1960), + [anon_sym_exit] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_case] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_getline] = ACTIONS(1960), + [sym_next_statement] = ACTIONS(1960), + [sym_nextfile_statement] = ACTIONS(1960), + [anon_sym_print] = ACTIONS(1960), + [anon_sym_printf] = ACTIONS(1960), + [anon_sym_SLASH] = ACTIONS(1962), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_PLUS_PLUS] = ACTIONS(1962), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_AT] = ACTIONS(1962), + [aux_sym_number_token1] = ACTIONS(1960), + [aux_sym_number_token2] = ACTIONS(1962), + [anon_sym_DQUOTE] = ACTIONS(1962), + [anon_sym_and] = ACTIONS(1960), + [anon_sym_asort] = ACTIONS(1960), + [anon_sym_asorti] = ACTIONS(1960), + [anon_sym_bindtextdomain] = ACTIONS(1960), + [anon_sym_compl] = ACTIONS(1960), + [anon_sym_cos] = ACTIONS(1960), + [anon_sym_dcgettext] = ACTIONS(1960), + [anon_sym_dcngettext] = ACTIONS(1960), + [anon_sym_exp] = ACTIONS(1960), + [anon_sym_gensub] = ACTIONS(1960), + [anon_sym_gsub] = ACTIONS(1960), + [anon_sym_index] = ACTIONS(1960), + [anon_sym_int] = ACTIONS(1960), + [anon_sym_isarray] = ACTIONS(1960), + [anon_sym_length] = ACTIONS(1960), + [anon_sym_log] = ACTIONS(1960), + [anon_sym_lshift] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_mktime] = ACTIONS(1960), + [anon_sym_or] = ACTIONS(1960), + [anon_sym_patsplit] = ACTIONS(1960), + [anon_sym_rand] = ACTIONS(1960), + [anon_sym_rshift] = ACTIONS(1960), + [anon_sym_sin] = ACTIONS(1960), + [anon_sym_split] = ACTIONS(1960), + [anon_sym_sprintf] = ACTIONS(1960), + [anon_sym_sqrt] = ACTIONS(1960), + [anon_sym_srand] = ACTIONS(1960), + [anon_sym_strftime] = ACTIONS(1960), + [anon_sym_strtonum] = ACTIONS(1960), + [anon_sym_sub] = ACTIONS(1960), + [anon_sym_substr] = ACTIONS(1960), + [anon_sym_systime] = ACTIONS(1960), + [anon_sym_tolower] = ACTIONS(1960), + [anon_sym_toupper] = ACTIONS(1960), + [anon_sym_typeof] = ACTIONS(1960), + [anon_sym_xor] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1964), + }, + [1239] = { + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1866), + [anon_sym_CR_LF] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [sym_break_statement] = ACTIONS(1866), + [sym_continue_statement] = ACTIONS(1866), + [anon_sym_delete] = ACTIONS(1866), + [anon_sym_exit] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_case] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_getline] = ACTIONS(1866), + [sym_next_statement] = ACTIONS(1866), + [sym_nextfile_statement] = ACTIONS(1866), + [anon_sym_print] = ACTIONS(1866), + [anon_sym_printf] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1866), + [aux_sym_number_token1] = ACTIONS(1866), + [aux_sym_number_token2] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_and] = ACTIONS(1866), + [anon_sym_asort] = ACTIONS(1866), + [anon_sym_asorti] = ACTIONS(1866), + [anon_sym_bindtextdomain] = ACTIONS(1866), + [anon_sym_compl] = ACTIONS(1866), + [anon_sym_cos] = ACTIONS(1866), + [anon_sym_dcgettext] = ACTIONS(1866), + [anon_sym_dcngettext] = ACTIONS(1866), + [anon_sym_exp] = ACTIONS(1866), + [anon_sym_gensub] = ACTIONS(1866), + [anon_sym_gsub] = ACTIONS(1866), + [anon_sym_index] = ACTIONS(1866), + [anon_sym_int] = ACTIONS(1866), + [anon_sym_isarray] = ACTIONS(1866), + [anon_sym_length] = ACTIONS(1866), + [anon_sym_log] = ACTIONS(1866), + [anon_sym_lshift] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mktime] = ACTIONS(1866), + [anon_sym_or] = ACTIONS(1866), + [anon_sym_patsplit] = ACTIONS(1866), + [anon_sym_rand] = ACTIONS(1866), + [anon_sym_rshift] = ACTIONS(1866), + [anon_sym_sin] = ACTIONS(1866), + [anon_sym_split] = ACTIONS(1866), + [anon_sym_sprintf] = ACTIONS(1866), + [anon_sym_sqrt] = ACTIONS(1866), + [anon_sym_srand] = ACTIONS(1866), + [anon_sym_strftime] = ACTIONS(1866), + [anon_sym_strtonum] = ACTIONS(1866), + [anon_sym_sub] = ACTIONS(1866), + [anon_sym_substr] = ACTIONS(1866), + [anon_sym_systime] = ACTIONS(1866), + [anon_sym_tolower] = ACTIONS(1866), + [anon_sym_toupper] = ACTIONS(1866), + [anon_sym_typeof] = ACTIONS(1866), + [anon_sym_xor] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1866), + }, + [1240] = { + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [sym_break_statement] = ACTIONS(1858), + [sym_continue_statement] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(1858), + [anon_sym_exit] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_getline] = ACTIONS(1858), + [sym_next_statement] = ACTIONS(1858), + [sym_nextfile_statement] = ACTIONS(1858), + [anon_sym_print] = ACTIONS(1858), + [anon_sym_printf] = ACTIONS(1858), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1858), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1858), + [aux_sym_number_token1] = ACTIONS(1858), + [aux_sym_number_token2] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_and] = ACTIONS(1858), + [anon_sym_asort] = ACTIONS(1858), + [anon_sym_asorti] = ACTIONS(1858), + [anon_sym_bindtextdomain] = ACTIONS(1858), + [anon_sym_compl] = ACTIONS(1858), + [anon_sym_cos] = ACTIONS(1858), + [anon_sym_dcgettext] = ACTIONS(1858), + [anon_sym_dcngettext] = ACTIONS(1858), + [anon_sym_exp] = ACTIONS(1858), + [anon_sym_gensub] = ACTIONS(1858), + [anon_sym_gsub] = ACTIONS(1858), + [anon_sym_index] = ACTIONS(1858), + [anon_sym_int] = ACTIONS(1858), + [anon_sym_isarray] = ACTIONS(1858), + [anon_sym_length] = ACTIONS(1858), + [anon_sym_log] = ACTIONS(1858), + [anon_sym_lshift] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mktime] = ACTIONS(1858), + [anon_sym_or] = ACTIONS(1858), + [anon_sym_patsplit] = ACTIONS(1858), + [anon_sym_rand] = ACTIONS(1858), + [anon_sym_rshift] = ACTIONS(1858), + [anon_sym_sin] = ACTIONS(1858), + [anon_sym_split] = ACTIONS(1858), + [anon_sym_sprintf] = ACTIONS(1858), + [anon_sym_sqrt] = ACTIONS(1858), + [anon_sym_srand] = ACTIONS(1858), + [anon_sym_strftime] = ACTIONS(1858), + [anon_sym_strtonum] = ACTIONS(1858), + [anon_sym_sub] = ACTIONS(1858), + [anon_sym_substr] = ACTIONS(1858), + [anon_sym_systime] = ACTIONS(1858), + [anon_sym_tolower] = ACTIONS(1858), + [anon_sym_toupper] = ACTIONS(1858), + [anon_sym_typeof] = ACTIONS(1858), + [anon_sym_xor] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1858), + }, + [1241] = { + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_CR_LF] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_do] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [sym_break_statement] = ACTIONS(1922), + [sym_continue_statement] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1922), + [anon_sym_exit] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_switch] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_getline] = ACTIONS(1922), + [sym_next_statement] = ACTIONS(1922), + [sym_nextfile_statement] = ACTIONS(1922), + [anon_sym_print] = ACTIONS(1922), + [anon_sym_printf] = ACTIONS(1922), + [anon_sym_SLASH] = ACTIONS(1922), + [anon_sym_PLUS] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_PLUS_PLUS] = ACTIONS(1922), + [anon_sym_DASH_DASH] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1922), + [anon_sym_AT] = ACTIONS(1922), + [aux_sym_number_token1] = ACTIONS(1922), + [aux_sym_number_token2] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_and] = ACTIONS(1922), + [anon_sym_asort] = ACTIONS(1922), + [anon_sym_asorti] = ACTIONS(1922), + [anon_sym_bindtextdomain] = ACTIONS(1922), + [anon_sym_compl] = ACTIONS(1922), + [anon_sym_cos] = ACTIONS(1922), + [anon_sym_dcgettext] = ACTIONS(1922), + [anon_sym_dcngettext] = ACTIONS(1922), + [anon_sym_exp] = ACTIONS(1922), + [anon_sym_gensub] = ACTIONS(1922), + [anon_sym_gsub] = ACTIONS(1922), + [anon_sym_index] = ACTIONS(1922), + [anon_sym_int] = ACTIONS(1922), + [anon_sym_isarray] = ACTIONS(1922), + [anon_sym_length] = ACTIONS(1922), + [anon_sym_log] = ACTIONS(1922), + [anon_sym_lshift] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mktime] = ACTIONS(1922), + [anon_sym_or] = ACTIONS(1922), + [anon_sym_patsplit] = ACTIONS(1922), + [anon_sym_rand] = ACTIONS(1922), + [anon_sym_rshift] = ACTIONS(1922), + [anon_sym_sin] = ACTIONS(1922), + [anon_sym_split] = ACTIONS(1922), + [anon_sym_sprintf] = ACTIONS(1922), + [anon_sym_sqrt] = ACTIONS(1922), + [anon_sym_srand] = ACTIONS(1922), + [anon_sym_strftime] = ACTIONS(1922), + [anon_sym_strtonum] = ACTIONS(1922), + [anon_sym_sub] = ACTIONS(1922), + [anon_sym_substr] = ACTIONS(1922), + [anon_sym_systime] = ACTIONS(1922), + [anon_sym_tolower] = ACTIONS(1922), + [anon_sym_toupper] = ACTIONS(1922), + [anon_sym_typeof] = ACTIONS(1922), + [anon_sym_xor] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1922), + }, + [1242] = { + [sym_identifier] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_LF] = ACTIONS(1850), + [anon_sym_CR_LF] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_do] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [sym_break_statement] = ACTIONS(1850), + [sym_continue_statement] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1850), + [anon_sym_exit] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_case] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_getline] = ACTIONS(1850), + [sym_next_statement] = ACTIONS(1850), + [sym_nextfile_statement] = ACTIONS(1850), + [anon_sym_print] = ACTIONS(1850), + [anon_sym_printf] = ACTIONS(1850), + [anon_sym_SLASH] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1850), + [aux_sym_number_token1] = ACTIONS(1850), + [aux_sym_number_token2] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [anon_sym_and] = ACTIONS(1850), + [anon_sym_asort] = ACTIONS(1850), + [anon_sym_asorti] = ACTIONS(1850), + [anon_sym_bindtextdomain] = ACTIONS(1850), + [anon_sym_compl] = ACTIONS(1850), + [anon_sym_cos] = ACTIONS(1850), + [anon_sym_dcgettext] = ACTIONS(1850), + [anon_sym_dcngettext] = ACTIONS(1850), + [anon_sym_exp] = ACTIONS(1850), + [anon_sym_gensub] = ACTIONS(1850), + [anon_sym_gsub] = ACTIONS(1850), + [anon_sym_index] = ACTIONS(1850), + [anon_sym_int] = ACTIONS(1850), + [anon_sym_isarray] = ACTIONS(1850), + [anon_sym_length] = ACTIONS(1850), + [anon_sym_log] = ACTIONS(1850), + [anon_sym_lshift] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_mktime] = ACTIONS(1850), + [anon_sym_or] = ACTIONS(1850), + [anon_sym_patsplit] = ACTIONS(1850), + [anon_sym_rand] = ACTIONS(1850), + [anon_sym_rshift] = ACTIONS(1850), + [anon_sym_sin] = ACTIONS(1850), + [anon_sym_split] = ACTIONS(1850), + [anon_sym_sprintf] = ACTIONS(1850), + [anon_sym_sqrt] = ACTIONS(1850), + [anon_sym_srand] = ACTIONS(1850), + [anon_sym_strftime] = ACTIONS(1850), + [anon_sym_strtonum] = ACTIONS(1850), + [anon_sym_sub] = ACTIONS(1850), + [anon_sym_substr] = ACTIONS(1850), + [anon_sym_systime] = ACTIONS(1850), + [anon_sym_tolower] = ACTIONS(1850), + [anon_sym_toupper] = ACTIONS(1850), + [anon_sym_typeof] = ACTIONS(1850), + [anon_sym_xor] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1850), + }, + [1243] = { + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_CR_LF] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [sym_break_statement] = ACTIONS(1830), + [sym_continue_statement] = ACTIONS(1830), + [anon_sym_delete] = ACTIONS(1830), + [anon_sym_exit] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_switch] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_case] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_getline] = ACTIONS(1830), + [sym_next_statement] = ACTIONS(1830), + [sym_nextfile_statement] = ACTIONS(1830), + [anon_sym_print] = ACTIONS(1830), + [anon_sym_printf] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1830), + [aux_sym_number_token1] = ACTIONS(1830), + [aux_sym_number_token2] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_and] = ACTIONS(1830), + [anon_sym_asort] = ACTIONS(1830), + [anon_sym_asorti] = ACTIONS(1830), + [anon_sym_bindtextdomain] = ACTIONS(1830), + [anon_sym_compl] = ACTIONS(1830), + [anon_sym_cos] = ACTIONS(1830), + [anon_sym_dcgettext] = ACTIONS(1830), + [anon_sym_dcngettext] = ACTIONS(1830), + [anon_sym_exp] = ACTIONS(1830), + [anon_sym_gensub] = ACTIONS(1830), + [anon_sym_gsub] = ACTIONS(1830), + [anon_sym_index] = ACTIONS(1830), + [anon_sym_int] = ACTIONS(1830), + [anon_sym_isarray] = ACTIONS(1830), + [anon_sym_length] = ACTIONS(1830), + [anon_sym_log] = ACTIONS(1830), + [anon_sym_lshift] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mktime] = ACTIONS(1830), + [anon_sym_or] = ACTIONS(1830), + [anon_sym_patsplit] = ACTIONS(1830), + [anon_sym_rand] = ACTIONS(1830), + [anon_sym_rshift] = ACTIONS(1830), + [anon_sym_sin] = ACTIONS(1830), + [anon_sym_split] = ACTIONS(1830), + [anon_sym_sprintf] = ACTIONS(1830), + [anon_sym_sqrt] = ACTIONS(1830), + [anon_sym_srand] = ACTIONS(1830), + [anon_sym_strftime] = ACTIONS(1830), + [anon_sym_strtonum] = ACTIONS(1830), + [anon_sym_sub] = ACTIONS(1830), + [anon_sym_substr] = ACTIONS(1830), + [anon_sym_systime] = ACTIONS(1830), + [anon_sym_tolower] = ACTIONS(1830), + [anon_sym_toupper] = ACTIONS(1830), + [anon_sym_typeof] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1830), + }, + [1244] = { + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [sym_break_statement] = ACTIONS(1830), + [sym_continue_statement] = ACTIONS(1830), + [anon_sym_delete] = ACTIONS(1830), + [anon_sym_exit] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_switch] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_case] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_getline] = ACTIONS(1830), + [sym_next_statement] = ACTIONS(1830), + [sym_nextfile_statement] = ACTIONS(1830), + [anon_sym_print] = ACTIONS(1830), + [anon_sym_printf] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1830), + [aux_sym_number_token1] = ACTIONS(1830), + [aux_sym_number_token2] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_and] = ACTIONS(1830), + [anon_sym_asort] = ACTIONS(1830), + [anon_sym_asorti] = ACTIONS(1830), + [anon_sym_bindtextdomain] = ACTIONS(1830), + [anon_sym_compl] = ACTIONS(1830), + [anon_sym_cos] = ACTIONS(1830), + [anon_sym_dcgettext] = ACTIONS(1830), + [anon_sym_dcngettext] = ACTIONS(1830), + [anon_sym_exp] = ACTIONS(1830), + [anon_sym_gensub] = ACTIONS(1830), + [anon_sym_gsub] = ACTIONS(1830), + [anon_sym_index] = ACTIONS(1830), + [anon_sym_int] = ACTIONS(1830), + [anon_sym_isarray] = ACTIONS(1830), + [anon_sym_length] = ACTIONS(1830), + [anon_sym_log] = ACTIONS(1830), + [anon_sym_lshift] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mktime] = ACTIONS(1830), + [anon_sym_or] = ACTIONS(1830), + [anon_sym_patsplit] = ACTIONS(1830), + [anon_sym_rand] = ACTIONS(1830), + [anon_sym_rshift] = ACTIONS(1830), + [anon_sym_sin] = ACTIONS(1830), + [anon_sym_split] = ACTIONS(1830), + [anon_sym_sprintf] = ACTIONS(1830), + [anon_sym_sqrt] = ACTIONS(1830), + [anon_sym_srand] = ACTIONS(1830), + [anon_sym_strftime] = ACTIONS(1830), + [anon_sym_strtonum] = ACTIONS(1830), + [anon_sym_sub] = ACTIONS(1830), + [anon_sym_substr] = ACTIONS(1830), + [anon_sym_systime] = ACTIONS(1830), + [anon_sym_tolower] = ACTIONS(1830), + [anon_sym_toupper] = ACTIONS(1830), + [anon_sym_typeof] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1830), + }, + [1245] = { + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_LF] = ACTIONS(1862), + [anon_sym_CR_LF] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [sym_break_statement] = ACTIONS(1862), + [sym_continue_statement] = ACTIONS(1862), + [anon_sym_delete] = ACTIONS(1862), + [anon_sym_exit] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_switch] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_case] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_getline] = ACTIONS(1862), + [sym_next_statement] = ACTIONS(1862), + [sym_nextfile_statement] = ACTIONS(1862), + [anon_sym_print] = ACTIONS(1862), + [anon_sym_printf] = ACTIONS(1862), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [aux_sym_number_token1] = ACTIONS(1862), + [aux_sym_number_token2] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_and] = ACTIONS(1862), + [anon_sym_asort] = ACTIONS(1862), + [anon_sym_asorti] = ACTIONS(1862), + [anon_sym_bindtextdomain] = ACTIONS(1862), + [anon_sym_compl] = ACTIONS(1862), + [anon_sym_cos] = ACTIONS(1862), + [anon_sym_dcgettext] = ACTIONS(1862), + [anon_sym_dcngettext] = ACTIONS(1862), + [anon_sym_exp] = ACTIONS(1862), + [anon_sym_gensub] = ACTIONS(1862), + [anon_sym_gsub] = ACTIONS(1862), + [anon_sym_index] = ACTIONS(1862), + [anon_sym_int] = ACTIONS(1862), + [anon_sym_isarray] = ACTIONS(1862), + [anon_sym_length] = ACTIONS(1862), + [anon_sym_log] = ACTIONS(1862), + [anon_sym_lshift] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mktime] = ACTIONS(1862), + [anon_sym_or] = ACTIONS(1862), + [anon_sym_patsplit] = ACTIONS(1862), + [anon_sym_rand] = ACTIONS(1862), + [anon_sym_rshift] = ACTIONS(1862), + [anon_sym_sin] = ACTIONS(1862), + [anon_sym_split] = ACTIONS(1862), + [anon_sym_sprintf] = ACTIONS(1862), + [anon_sym_sqrt] = ACTIONS(1862), + [anon_sym_srand] = ACTIONS(1862), + [anon_sym_strftime] = ACTIONS(1862), + [anon_sym_strtonum] = ACTIONS(1862), + [anon_sym_sub] = ACTIONS(1862), + [anon_sym_substr] = ACTIONS(1862), + [anon_sym_systime] = ACTIONS(1862), + [anon_sym_tolower] = ACTIONS(1862), + [anon_sym_toupper] = ACTIONS(1862), + [anon_sym_typeof] = ACTIONS(1862), + [anon_sym_xor] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1862), + }, + [1246] = { + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [sym_break_statement] = ACTIONS(1862), + [sym_continue_statement] = ACTIONS(1862), + [anon_sym_delete] = ACTIONS(1862), + [anon_sym_exit] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_switch] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_case] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_getline] = ACTIONS(1862), + [sym_next_statement] = ACTIONS(1862), + [sym_nextfile_statement] = ACTIONS(1862), + [anon_sym_print] = ACTIONS(1862), + [anon_sym_printf] = ACTIONS(1862), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [aux_sym_number_token1] = ACTIONS(1862), + [aux_sym_number_token2] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_and] = ACTIONS(1862), + [anon_sym_asort] = ACTIONS(1862), + [anon_sym_asorti] = ACTIONS(1862), + [anon_sym_bindtextdomain] = ACTIONS(1862), + [anon_sym_compl] = ACTIONS(1862), + [anon_sym_cos] = ACTIONS(1862), + [anon_sym_dcgettext] = ACTIONS(1862), + [anon_sym_dcngettext] = ACTIONS(1862), + [anon_sym_exp] = ACTIONS(1862), + [anon_sym_gensub] = ACTIONS(1862), + [anon_sym_gsub] = ACTIONS(1862), + [anon_sym_index] = ACTIONS(1862), + [anon_sym_int] = ACTIONS(1862), + [anon_sym_isarray] = ACTIONS(1862), + [anon_sym_length] = ACTIONS(1862), + [anon_sym_log] = ACTIONS(1862), + [anon_sym_lshift] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mktime] = ACTIONS(1862), + [anon_sym_or] = ACTIONS(1862), + [anon_sym_patsplit] = ACTIONS(1862), + [anon_sym_rand] = ACTIONS(1862), + [anon_sym_rshift] = ACTIONS(1862), + [anon_sym_sin] = ACTIONS(1862), + [anon_sym_split] = ACTIONS(1862), + [anon_sym_sprintf] = ACTIONS(1862), + [anon_sym_sqrt] = ACTIONS(1862), + [anon_sym_srand] = ACTIONS(1862), + [anon_sym_strftime] = ACTIONS(1862), + [anon_sym_strtonum] = ACTIONS(1862), + [anon_sym_sub] = ACTIONS(1862), + [anon_sym_substr] = ACTIONS(1862), + [anon_sym_systime] = ACTIONS(1862), + [anon_sym_tolower] = ACTIONS(1862), + [anon_sym_toupper] = ACTIONS(1862), + [anon_sym_typeof] = ACTIONS(1862), + [anon_sym_xor] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1862), + }, + [1247] = { + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_CR_LF] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_do] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [sym_break_statement] = ACTIONS(1870), + [sym_continue_statement] = ACTIONS(1870), + [anon_sym_delete] = ACTIONS(1870), + [anon_sym_exit] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_switch] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_getline] = ACTIONS(1870), + [sym_next_statement] = ACTIONS(1870), + [sym_nextfile_statement] = ACTIONS(1870), + [anon_sym_print] = ACTIONS(1870), + [anon_sym_printf] = ACTIONS(1870), + [anon_sym_SLASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1870), + [aux_sym_number_token1] = ACTIONS(1870), + [aux_sym_number_token2] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [anon_sym_and] = ACTIONS(1870), + [anon_sym_asort] = ACTIONS(1870), + [anon_sym_asorti] = ACTIONS(1870), + [anon_sym_bindtextdomain] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_cos] = ACTIONS(1870), + [anon_sym_dcgettext] = ACTIONS(1870), + [anon_sym_dcngettext] = ACTIONS(1870), + [anon_sym_exp] = ACTIONS(1870), + [anon_sym_gensub] = ACTIONS(1870), + [anon_sym_gsub] = ACTIONS(1870), + [anon_sym_index] = ACTIONS(1870), + [anon_sym_int] = ACTIONS(1870), + [anon_sym_isarray] = ACTIONS(1870), + [anon_sym_length] = ACTIONS(1870), + [anon_sym_log] = ACTIONS(1870), + [anon_sym_lshift] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mktime] = ACTIONS(1870), + [anon_sym_or] = ACTIONS(1870), + [anon_sym_patsplit] = ACTIONS(1870), + [anon_sym_rand] = ACTIONS(1870), + [anon_sym_rshift] = ACTIONS(1870), + [anon_sym_sin] = ACTIONS(1870), + [anon_sym_split] = ACTIONS(1870), + [anon_sym_sprintf] = ACTIONS(1870), + [anon_sym_sqrt] = ACTIONS(1870), + [anon_sym_srand] = ACTIONS(1870), + [anon_sym_strftime] = ACTIONS(1870), + [anon_sym_strtonum] = ACTIONS(1870), + [anon_sym_sub] = ACTIONS(1870), + [anon_sym_substr] = ACTIONS(1870), + [anon_sym_systime] = ACTIONS(1870), + [anon_sym_tolower] = ACTIONS(1870), + [anon_sym_toupper] = ACTIONS(1870), + [anon_sym_typeof] = ACTIONS(1870), + [anon_sym_xor] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1870), + }, + [1248] = { + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [sym_break_statement] = ACTIONS(1846), + [sym_continue_statement] = ACTIONS(1846), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_exit] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_switch] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_case] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_getline] = ACTIONS(1846), + [sym_next_statement] = ACTIONS(1846), + [sym_nextfile_statement] = ACTIONS(1846), + [anon_sym_print] = ACTIONS(1846), + [anon_sym_printf] = ACTIONS(1846), + [anon_sym_SLASH] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1846), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1846), + [aux_sym_number_token1] = ACTIONS(1846), + [aux_sym_number_token2] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [anon_sym_and] = ACTIONS(1846), + [anon_sym_asort] = ACTIONS(1846), + [anon_sym_asorti] = ACTIONS(1846), + [anon_sym_bindtextdomain] = ACTIONS(1846), + [anon_sym_compl] = ACTIONS(1846), + [anon_sym_cos] = ACTIONS(1846), + [anon_sym_dcgettext] = ACTIONS(1846), + [anon_sym_dcngettext] = ACTIONS(1846), + [anon_sym_exp] = ACTIONS(1846), + [anon_sym_gensub] = ACTIONS(1846), + [anon_sym_gsub] = ACTIONS(1846), + [anon_sym_index] = ACTIONS(1846), + [anon_sym_int] = ACTIONS(1846), + [anon_sym_isarray] = ACTIONS(1846), + [anon_sym_length] = ACTIONS(1846), + [anon_sym_log] = ACTIONS(1846), + [anon_sym_lshift] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mktime] = ACTIONS(1846), + [anon_sym_or] = ACTIONS(1846), + [anon_sym_patsplit] = ACTIONS(1846), + [anon_sym_rand] = ACTIONS(1846), + [anon_sym_rshift] = ACTIONS(1846), + [anon_sym_sin] = ACTIONS(1846), + [anon_sym_split] = ACTIONS(1846), + [anon_sym_sprintf] = ACTIONS(1846), + [anon_sym_sqrt] = ACTIONS(1846), + [anon_sym_srand] = ACTIONS(1846), + [anon_sym_strftime] = ACTIONS(1846), + [anon_sym_strtonum] = ACTIONS(1846), + [anon_sym_sub] = ACTIONS(1846), + [anon_sym_substr] = ACTIONS(1846), + [anon_sym_systime] = ACTIONS(1846), + [anon_sym_tolower] = ACTIONS(1846), + [anon_sym_toupper] = ACTIONS(1846), + [anon_sym_typeof] = ACTIONS(1846), + [anon_sym_xor] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1846), + }, + [1249] = { + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_CR_LF] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [sym_break_statement] = ACTIONS(1886), + [sym_continue_statement] = ACTIONS(1886), + [anon_sym_delete] = ACTIONS(1886), + [anon_sym_exit] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_getline] = ACTIONS(1886), + [sym_next_statement] = ACTIONS(1886), + [sym_nextfile_statement] = ACTIONS(1886), + [anon_sym_print] = ACTIONS(1886), + [anon_sym_printf] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1886), + [aux_sym_number_token1] = ACTIONS(1886), + [aux_sym_number_token2] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_and] = ACTIONS(1886), + [anon_sym_asort] = ACTIONS(1886), + [anon_sym_asorti] = ACTIONS(1886), + [anon_sym_bindtextdomain] = ACTIONS(1886), + [anon_sym_compl] = ACTIONS(1886), + [anon_sym_cos] = ACTIONS(1886), + [anon_sym_dcgettext] = ACTIONS(1886), + [anon_sym_dcngettext] = ACTIONS(1886), + [anon_sym_exp] = ACTIONS(1886), + [anon_sym_gensub] = ACTIONS(1886), + [anon_sym_gsub] = ACTIONS(1886), + [anon_sym_index] = ACTIONS(1886), + [anon_sym_int] = ACTIONS(1886), + [anon_sym_isarray] = ACTIONS(1886), + [anon_sym_length] = ACTIONS(1886), + [anon_sym_log] = ACTIONS(1886), + [anon_sym_lshift] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mktime] = ACTIONS(1886), + [anon_sym_or] = ACTIONS(1886), + [anon_sym_patsplit] = ACTIONS(1886), + [anon_sym_rand] = ACTIONS(1886), + [anon_sym_rshift] = ACTIONS(1886), + [anon_sym_sin] = ACTIONS(1886), + [anon_sym_split] = ACTIONS(1886), + [anon_sym_sprintf] = ACTIONS(1886), + [anon_sym_sqrt] = ACTIONS(1886), + [anon_sym_srand] = ACTIONS(1886), + [anon_sym_strftime] = ACTIONS(1886), + [anon_sym_strtonum] = ACTIONS(1886), + [anon_sym_sub] = ACTIONS(1886), + [anon_sym_substr] = ACTIONS(1886), + [anon_sym_systime] = ACTIONS(1886), + [anon_sym_tolower] = ACTIONS(1886), + [anon_sym_toupper] = ACTIONS(1886), + [anon_sym_typeof] = ACTIONS(1886), + [anon_sym_xor] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1886), + }, + [1250] = { + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_LF] = ACTIONS(1950), + [anon_sym_CR_LF] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [sym_break_statement] = ACTIONS(1950), + [sym_continue_statement] = ACTIONS(1950), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_exit] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_switch] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_case] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_getline] = ACTIONS(1950), + [sym_next_statement] = ACTIONS(1950), + [sym_nextfile_statement] = ACTIONS(1950), + [anon_sym_print] = ACTIONS(1950), + [anon_sym_printf] = ACTIONS(1950), + [anon_sym_SLASH] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1950), + [aux_sym_number_token1] = ACTIONS(1950), + [aux_sym_number_token2] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [anon_sym_and] = ACTIONS(1950), + [anon_sym_asort] = ACTIONS(1950), + [anon_sym_asorti] = ACTIONS(1950), + [anon_sym_bindtextdomain] = ACTIONS(1950), + [anon_sym_compl] = ACTIONS(1950), + [anon_sym_cos] = ACTIONS(1950), + [anon_sym_dcgettext] = ACTIONS(1950), + [anon_sym_dcngettext] = ACTIONS(1950), + [anon_sym_exp] = ACTIONS(1950), + [anon_sym_gensub] = ACTIONS(1950), + [anon_sym_gsub] = ACTIONS(1950), + [anon_sym_index] = ACTIONS(1950), + [anon_sym_int] = ACTIONS(1950), + [anon_sym_isarray] = ACTIONS(1950), + [anon_sym_length] = ACTIONS(1950), + [anon_sym_log] = ACTIONS(1950), + [anon_sym_lshift] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mktime] = ACTIONS(1950), + [anon_sym_or] = ACTIONS(1950), + [anon_sym_patsplit] = ACTIONS(1950), + [anon_sym_rand] = ACTIONS(1950), + [anon_sym_rshift] = ACTIONS(1950), + [anon_sym_sin] = ACTIONS(1950), + [anon_sym_split] = ACTIONS(1950), + [anon_sym_sprintf] = ACTIONS(1950), + [anon_sym_sqrt] = ACTIONS(1950), + [anon_sym_srand] = ACTIONS(1950), + [anon_sym_strftime] = ACTIONS(1950), + [anon_sym_strtonum] = ACTIONS(1950), + [anon_sym_sub] = ACTIONS(1950), + [anon_sym_substr] = ACTIONS(1950), + [anon_sym_systime] = ACTIONS(1950), + [anon_sym_tolower] = ACTIONS(1950), + [anon_sym_toupper] = ACTIONS(1950), + [anon_sym_typeof] = ACTIONS(1950), + [anon_sym_xor] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1950), + }, + [1251] = { + [sym_identifier] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [sym_break_statement] = ACTIONS(1820), + [sym_continue_statement] = ACTIONS(1820), + [anon_sym_delete] = ACTIONS(1820), + [anon_sym_exit] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_getline] = ACTIONS(1820), + [sym_next_statement] = ACTIONS(1820), + [sym_nextfile_statement] = ACTIONS(1820), + [anon_sym_print] = ACTIONS(1820), + [anon_sym_printf] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_AT] = ACTIONS(1820), + [aux_sym_number_token1] = ACTIONS(1820), + [aux_sym_number_token2] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [anon_sym_and] = ACTIONS(1820), + [anon_sym_asort] = ACTIONS(1820), + [anon_sym_asorti] = ACTIONS(1820), + [anon_sym_bindtextdomain] = ACTIONS(1820), + [anon_sym_compl] = ACTIONS(1820), + [anon_sym_cos] = ACTIONS(1820), + [anon_sym_dcgettext] = ACTIONS(1820), + [anon_sym_dcngettext] = ACTIONS(1820), + [anon_sym_exp] = ACTIONS(1820), + [anon_sym_gensub] = ACTIONS(1820), + [anon_sym_gsub] = ACTIONS(1820), + [anon_sym_index] = ACTIONS(1820), + [anon_sym_int] = ACTIONS(1820), + [anon_sym_isarray] = ACTIONS(1820), + [anon_sym_length] = ACTIONS(1820), + [anon_sym_log] = ACTIONS(1820), + [anon_sym_lshift] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_mktime] = ACTIONS(1820), + [anon_sym_or] = ACTIONS(1820), + [anon_sym_patsplit] = ACTIONS(1820), + [anon_sym_rand] = ACTIONS(1820), + [anon_sym_rshift] = ACTIONS(1820), + [anon_sym_sin] = ACTIONS(1820), + [anon_sym_split] = ACTIONS(1820), + [anon_sym_sprintf] = ACTIONS(1820), + [anon_sym_sqrt] = ACTIONS(1820), + [anon_sym_srand] = ACTIONS(1820), + [anon_sym_strftime] = ACTIONS(1820), + [anon_sym_strtonum] = ACTIONS(1820), + [anon_sym_sub] = ACTIONS(1820), + [anon_sym_substr] = ACTIONS(1820), + [anon_sym_systime] = ACTIONS(1820), + [anon_sym_tolower] = ACTIONS(1820), + [anon_sym_toupper] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1820), + [anon_sym_xor] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(1820), + }, + [1252] = { + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_LF] = ACTIONS(1898), + [anon_sym_CR_LF] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_do] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [sym_break_statement] = ACTIONS(1898), + [sym_continue_statement] = ACTIONS(1898), + [anon_sym_delete] = ACTIONS(1898), + [anon_sym_exit] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_switch] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_case] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_getline] = ACTIONS(1898), + [sym_next_statement] = ACTIONS(1898), + [sym_nextfile_statement] = ACTIONS(1898), + [anon_sym_print] = ACTIONS(1898), + [anon_sym_printf] = ACTIONS(1898), + [anon_sym_SLASH] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_PLUS_PLUS] = ACTIONS(1898), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1898), + [aux_sym_number_token1] = ACTIONS(1898), + [aux_sym_number_token2] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [anon_sym_and] = ACTIONS(1898), + [anon_sym_asort] = ACTIONS(1898), + [anon_sym_asorti] = ACTIONS(1898), + [anon_sym_bindtextdomain] = ACTIONS(1898), + [anon_sym_compl] = ACTIONS(1898), + [anon_sym_cos] = ACTIONS(1898), + [anon_sym_dcgettext] = ACTIONS(1898), + [anon_sym_dcngettext] = ACTIONS(1898), + [anon_sym_exp] = ACTIONS(1898), + [anon_sym_gensub] = ACTIONS(1898), + [anon_sym_gsub] = ACTIONS(1898), + [anon_sym_index] = ACTIONS(1898), + [anon_sym_int] = ACTIONS(1898), + [anon_sym_isarray] = ACTIONS(1898), + [anon_sym_length] = ACTIONS(1898), + [anon_sym_log] = ACTIONS(1898), + [anon_sym_lshift] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mktime] = ACTIONS(1898), + [anon_sym_or] = ACTIONS(1898), + [anon_sym_patsplit] = ACTIONS(1898), + [anon_sym_rand] = ACTIONS(1898), + [anon_sym_rshift] = ACTIONS(1898), + [anon_sym_sin] = ACTIONS(1898), + [anon_sym_split] = ACTIONS(1898), + [anon_sym_sprintf] = ACTIONS(1898), + [anon_sym_sqrt] = ACTIONS(1898), + [anon_sym_srand] = ACTIONS(1898), + [anon_sym_strftime] = ACTIONS(1898), + [anon_sym_strtonum] = ACTIONS(1898), + [anon_sym_sub] = ACTIONS(1898), + [anon_sym_substr] = ACTIONS(1898), + [anon_sym_systime] = ACTIONS(1898), + [anon_sym_tolower] = ACTIONS(1898), + [anon_sym_toupper] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1898), + [anon_sym_xor] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1898), + }, + [1253] = { + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1874), + [anon_sym_CR_LF] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [sym_break_statement] = ACTIONS(1874), + [sym_continue_statement] = ACTIONS(1874), + [anon_sym_delete] = ACTIONS(1874), + [anon_sym_exit] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_switch] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_case] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_getline] = ACTIONS(1874), + [sym_next_statement] = ACTIONS(1874), + [sym_nextfile_statement] = ACTIONS(1874), + [anon_sym_print] = ACTIONS(1874), + [anon_sym_printf] = ACTIONS(1874), + [anon_sym_SLASH] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1874), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1874), + [aux_sym_number_token1] = ACTIONS(1874), + [aux_sym_number_token2] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_and] = ACTIONS(1874), + [anon_sym_asort] = ACTIONS(1874), + [anon_sym_asorti] = ACTIONS(1874), + [anon_sym_bindtextdomain] = ACTIONS(1874), + [anon_sym_compl] = ACTIONS(1874), + [anon_sym_cos] = ACTIONS(1874), + [anon_sym_dcgettext] = ACTIONS(1874), + [anon_sym_dcngettext] = ACTIONS(1874), + [anon_sym_exp] = ACTIONS(1874), + [anon_sym_gensub] = ACTIONS(1874), + [anon_sym_gsub] = ACTIONS(1874), + [anon_sym_index] = ACTIONS(1874), + [anon_sym_int] = ACTIONS(1874), + [anon_sym_isarray] = ACTIONS(1874), + [anon_sym_length] = ACTIONS(1874), + [anon_sym_log] = ACTIONS(1874), + [anon_sym_lshift] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mktime] = ACTIONS(1874), + [anon_sym_or] = ACTIONS(1874), + [anon_sym_patsplit] = ACTIONS(1874), + [anon_sym_rand] = ACTIONS(1874), + [anon_sym_rshift] = ACTIONS(1874), + [anon_sym_sin] = ACTIONS(1874), + [anon_sym_split] = ACTIONS(1874), + [anon_sym_sprintf] = ACTIONS(1874), + [anon_sym_sqrt] = ACTIONS(1874), + [anon_sym_srand] = ACTIONS(1874), + [anon_sym_strftime] = ACTIONS(1874), + [anon_sym_strtonum] = ACTIONS(1874), + [anon_sym_sub] = ACTIONS(1874), + [anon_sym_substr] = ACTIONS(1874), + [anon_sym_systime] = ACTIONS(1874), + [anon_sym_tolower] = ACTIONS(1874), + [anon_sym_toupper] = ACTIONS(1874), + [anon_sym_typeof] = ACTIONS(1874), + [anon_sym_xor] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1874), + }, + [1254] = { + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_do] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [sym_break_statement] = ACTIONS(1898), + [sym_continue_statement] = ACTIONS(1898), + [anon_sym_delete] = ACTIONS(1898), + [anon_sym_exit] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_switch] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_case] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_getline] = ACTIONS(1898), + [sym_next_statement] = ACTIONS(1898), + [sym_nextfile_statement] = ACTIONS(1898), + [anon_sym_print] = ACTIONS(1898), + [anon_sym_printf] = ACTIONS(1898), + [anon_sym_SLASH] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_PLUS_PLUS] = ACTIONS(1898), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1898), + [aux_sym_number_token1] = ACTIONS(1898), + [aux_sym_number_token2] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [anon_sym_and] = ACTIONS(1898), + [anon_sym_asort] = ACTIONS(1898), + [anon_sym_asorti] = ACTIONS(1898), + [anon_sym_bindtextdomain] = ACTIONS(1898), + [anon_sym_compl] = ACTIONS(1898), + [anon_sym_cos] = ACTIONS(1898), + [anon_sym_dcgettext] = ACTIONS(1898), + [anon_sym_dcngettext] = ACTIONS(1898), + [anon_sym_exp] = ACTIONS(1898), + [anon_sym_gensub] = ACTIONS(1898), + [anon_sym_gsub] = ACTIONS(1898), + [anon_sym_index] = ACTIONS(1898), + [anon_sym_int] = ACTIONS(1898), + [anon_sym_isarray] = ACTIONS(1898), + [anon_sym_length] = ACTIONS(1898), + [anon_sym_log] = ACTIONS(1898), + [anon_sym_lshift] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mktime] = ACTIONS(1898), + [anon_sym_or] = ACTIONS(1898), + [anon_sym_patsplit] = ACTIONS(1898), + [anon_sym_rand] = ACTIONS(1898), + [anon_sym_rshift] = ACTIONS(1898), + [anon_sym_sin] = ACTIONS(1898), + [anon_sym_split] = ACTIONS(1898), + [anon_sym_sprintf] = ACTIONS(1898), + [anon_sym_sqrt] = ACTIONS(1898), + [anon_sym_srand] = ACTIONS(1898), + [anon_sym_strftime] = ACTIONS(1898), + [anon_sym_strtonum] = ACTIONS(1898), + [anon_sym_sub] = ACTIONS(1898), + [anon_sym_substr] = ACTIONS(1898), + [anon_sym_systime] = ACTIONS(1898), + [anon_sym_tolower] = ACTIONS(1898), + [anon_sym_toupper] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1898), + [anon_sym_xor] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1898), + }, + [1255] = { + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [sym_break_statement] = ACTIONS(1950), + [sym_continue_statement] = ACTIONS(1950), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_exit] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_switch] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_case] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_getline] = ACTIONS(1950), + [sym_next_statement] = ACTIONS(1950), + [sym_nextfile_statement] = ACTIONS(1950), + [anon_sym_print] = ACTIONS(1950), + [anon_sym_printf] = ACTIONS(1950), + [anon_sym_SLASH] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1950), + [aux_sym_number_token1] = ACTIONS(1950), + [aux_sym_number_token2] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [anon_sym_and] = ACTIONS(1950), + [anon_sym_asort] = ACTIONS(1950), + [anon_sym_asorti] = ACTIONS(1950), + [anon_sym_bindtextdomain] = ACTIONS(1950), + [anon_sym_compl] = ACTIONS(1950), + [anon_sym_cos] = ACTIONS(1950), + [anon_sym_dcgettext] = ACTIONS(1950), + [anon_sym_dcngettext] = ACTIONS(1950), + [anon_sym_exp] = ACTIONS(1950), + [anon_sym_gensub] = ACTIONS(1950), + [anon_sym_gsub] = ACTIONS(1950), + [anon_sym_index] = ACTIONS(1950), + [anon_sym_int] = ACTIONS(1950), + [anon_sym_isarray] = ACTIONS(1950), + [anon_sym_length] = ACTIONS(1950), + [anon_sym_log] = ACTIONS(1950), + [anon_sym_lshift] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mktime] = ACTIONS(1950), + [anon_sym_or] = ACTIONS(1950), + [anon_sym_patsplit] = ACTIONS(1950), + [anon_sym_rand] = ACTIONS(1950), + [anon_sym_rshift] = ACTIONS(1950), + [anon_sym_sin] = ACTIONS(1950), + [anon_sym_split] = ACTIONS(1950), + [anon_sym_sprintf] = ACTIONS(1950), + [anon_sym_sqrt] = ACTIONS(1950), + [anon_sym_srand] = ACTIONS(1950), + [anon_sym_strftime] = ACTIONS(1950), + [anon_sym_strtonum] = ACTIONS(1950), + [anon_sym_sub] = ACTIONS(1950), + [anon_sym_substr] = ACTIONS(1950), + [anon_sym_systime] = ACTIONS(1950), + [anon_sym_tolower] = ACTIONS(1950), + [anon_sym_toupper] = ACTIONS(1950), + [anon_sym_typeof] = ACTIONS(1950), + [anon_sym_xor] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1950), + }, + [1256] = { + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1906), + [anon_sym_CR_LF] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_do] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [sym_break_statement] = ACTIONS(1906), + [sym_continue_statement] = ACTIONS(1906), + [anon_sym_delete] = ACTIONS(1906), + [anon_sym_exit] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_case] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_getline] = ACTIONS(1906), + [sym_next_statement] = ACTIONS(1906), + [sym_nextfile_statement] = ACTIONS(1906), + [anon_sym_print] = ACTIONS(1906), + [anon_sym_printf] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1906), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_AT] = ACTIONS(1906), + [aux_sym_number_token1] = ACTIONS(1906), + [aux_sym_number_token2] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_and] = ACTIONS(1906), + [anon_sym_asort] = ACTIONS(1906), + [anon_sym_asorti] = ACTIONS(1906), + [anon_sym_bindtextdomain] = ACTIONS(1906), + [anon_sym_compl] = ACTIONS(1906), + [anon_sym_cos] = ACTIONS(1906), + [anon_sym_dcgettext] = ACTIONS(1906), + [anon_sym_dcngettext] = ACTIONS(1906), + [anon_sym_exp] = ACTIONS(1906), + [anon_sym_gensub] = ACTIONS(1906), + [anon_sym_gsub] = ACTIONS(1906), + [anon_sym_index] = ACTIONS(1906), + [anon_sym_int] = ACTIONS(1906), + [anon_sym_isarray] = ACTIONS(1906), + [anon_sym_length] = ACTIONS(1906), + [anon_sym_log] = ACTIONS(1906), + [anon_sym_lshift] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mktime] = ACTIONS(1906), + [anon_sym_or] = ACTIONS(1906), + [anon_sym_patsplit] = ACTIONS(1906), + [anon_sym_rand] = ACTIONS(1906), + [anon_sym_rshift] = ACTIONS(1906), + [anon_sym_sin] = ACTIONS(1906), + [anon_sym_split] = ACTIONS(1906), + [anon_sym_sprintf] = ACTIONS(1906), + [anon_sym_sqrt] = ACTIONS(1906), + [anon_sym_srand] = ACTIONS(1906), + [anon_sym_strftime] = ACTIONS(1906), + [anon_sym_strtonum] = ACTIONS(1906), + [anon_sym_sub] = ACTIONS(1906), + [anon_sym_substr] = ACTIONS(1906), + [anon_sym_systime] = ACTIONS(1906), + [anon_sym_tolower] = ACTIONS(1906), + [anon_sym_toupper] = ACTIONS(1906), + [anon_sym_typeof] = ACTIONS(1906), + [anon_sym_xor] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1906), + }, + [1257] = { + [sym_identifier] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_CR_LF] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_do] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [sym_break_statement] = ACTIONS(1834), + [sym_continue_statement] = ACTIONS(1834), + [anon_sym_delete] = ACTIONS(1834), + [anon_sym_exit] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_getline] = ACTIONS(1834), + [sym_next_statement] = ACTIONS(1834), + [sym_nextfile_statement] = ACTIONS(1834), + [anon_sym_print] = ACTIONS(1834), + [anon_sym_printf] = ACTIONS(1834), + [anon_sym_SLASH] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(1834), + [aux_sym_number_token1] = ACTIONS(1834), + [aux_sym_number_token2] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_and] = ACTIONS(1834), + [anon_sym_asort] = ACTIONS(1834), + [anon_sym_asorti] = ACTIONS(1834), + [anon_sym_bindtextdomain] = ACTIONS(1834), + [anon_sym_compl] = ACTIONS(1834), + [anon_sym_cos] = ACTIONS(1834), + [anon_sym_dcgettext] = ACTIONS(1834), + [anon_sym_dcngettext] = ACTIONS(1834), + [anon_sym_exp] = ACTIONS(1834), + [anon_sym_gensub] = ACTIONS(1834), + [anon_sym_gsub] = ACTIONS(1834), + [anon_sym_index] = ACTIONS(1834), + [anon_sym_int] = ACTIONS(1834), + [anon_sym_isarray] = ACTIONS(1834), + [anon_sym_length] = ACTIONS(1834), + [anon_sym_log] = ACTIONS(1834), + [anon_sym_lshift] = ACTIONS(1834), + [anon_sym_match] = ACTIONS(1834), + [anon_sym_mktime] = ACTIONS(1834), + [anon_sym_or] = ACTIONS(1834), + [anon_sym_patsplit] = ACTIONS(1834), + [anon_sym_rand] = ACTIONS(1834), + [anon_sym_rshift] = ACTIONS(1834), + [anon_sym_sin] = ACTIONS(1834), + [anon_sym_split] = ACTIONS(1834), + [anon_sym_sprintf] = ACTIONS(1834), + [anon_sym_sqrt] = ACTIONS(1834), + [anon_sym_srand] = ACTIONS(1834), + [anon_sym_strftime] = ACTIONS(1834), + [anon_sym_strtonum] = ACTIONS(1834), + [anon_sym_sub] = ACTIONS(1834), + [anon_sym_substr] = ACTIONS(1834), + [anon_sym_systime] = ACTIONS(1834), + [anon_sym_tolower] = ACTIONS(1834), + [anon_sym_toupper] = ACTIONS(1834), + [anon_sym_typeof] = ACTIONS(1834), + [anon_sym_xor] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1834), + }, + [1258] = { + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_do] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [sym_break_statement] = ACTIONS(1906), + [sym_continue_statement] = ACTIONS(1906), + [anon_sym_delete] = ACTIONS(1906), + [anon_sym_exit] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_case] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_getline] = ACTIONS(1906), + [sym_next_statement] = ACTIONS(1906), + [sym_nextfile_statement] = ACTIONS(1906), + [anon_sym_print] = ACTIONS(1906), + [anon_sym_printf] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1906), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_AT] = ACTIONS(1906), + [aux_sym_number_token1] = ACTIONS(1906), + [aux_sym_number_token2] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_and] = ACTIONS(1906), + [anon_sym_asort] = ACTIONS(1906), + [anon_sym_asorti] = ACTIONS(1906), + [anon_sym_bindtextdomain] = ACTIONS(1906), + [anon_sym_compl] = ACTIONS(1906), + [anon_sym_cos] = ACTIONS(1906), + [anon_sym_dcgettext] = ACTIONS(1906), + [anon_sym_dcngettext] = ACTIONS(1906), + [anon_sym_exp] = ACTIONS(1906), + [anon_sym_gensub] = ACTIONS(1906), + [anon_sym_gsub] = ACTIONS(1906), + [anon_sym_index] = ACTIONS(1906), + [anon_sym_int] = ACTIONS(1906), + [anon_sym_isarray] = ACTIONS(1906), + [anon_sym_length] = ACTIONS(1906), + [anon_sym_log] = ACTIONS(1906), + [anon_sym_lshift] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mktime] = ACTIONS(1906), + [anon_sym_or] = ACTIONS(1906), + [anon_sym_patsplit] = ACTIONS(1906), + [anon_sym_rand] = ACTIONS(1906), + [anon_sym_rshift] = ACTIONS(1906), + [anon_sym_sin] = ACTIONS(1906), + [anon_sym_split] = ACTIONS(1906), + [anon_sym_sprintf] = ACTIONS(1906), + [anon_sym_sqrt] = ACTIONS(1906), + [anon_sym_srand] = ACTIONS(1906), + [anon_sym_strftime] = ACTIONS(1906), + [anon_sym_strtonum] = ACTIONS(1906), + [anon_sym_sub] = ACTIONS(1906), + [anon_sym_substr] = ACTIONS(1906), + [anon_sym_systime] = ACTIONS(1906), + [anon_sym_tolower] = ACTIONS(1906), + [anon_sym_toupper] = ACTIONS(1906), + [anon_sym_typeof] = ACTIONS(1906), + [anon_sym_xor] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1906), + }, + [1259] = { + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_LF] = ACTIONS(1910), + [anon_sym_CR_LF] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_do] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [sym_break_statement] = ACTIONS(1910), + [sym_continue_statement] = ACTIONS(1910), + [anon_sym_delete] = ACTIONS(1910), + [anon_sym_exit] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_switch] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_case] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_getline] = ACTIONS(1910), + [sym_next_statement] = ACTIONS(1910), + [sym_nextfile_statement] = ACTIONS(1910), + [anon_sym_print] = ACTIONS(1910), + [anon_sym_printf] = ACTIONS(1910), + [anon_sym_SLASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1910), + [aux_sym_number_token1] = ACTIONS(1910), + [aux_sym_number_token2] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [anon_sym_and] = ACTIONS(1910), + [anon_sym_asort] = ACTIONS(1910), + [anon_sym_asorti] = ACTIONS(1910), + [anon_sym_bindtextdomain] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_cos] = ACTIONS(1910), + [anon_sym_dcgettext] = ACTIONS(1910), + [anon_sym_dcngettext] = ACTIONS(1910), + [anon_sym_exp] = ACTIONS(1910), + [anon_sym_gensub] = ACTIONS(1910), + [anon_sym_gsub] = ACTIONS(1910), + [anon_sym_index] = ACTIONS(1910), + [anon_sym_int] = ACTIONS(1910), + [anon_sym_isarray] = ACTIONS(1910), + [anon_sym_length] = ACTIONS(1910), + [anon_sym_log] = ACTIONS(1910), + [anon_sym_lshift] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mktime] = ACTIONS(1910), + [anon_sym_or] = ACTIONS(1910), + [anon_sym_patsplit] = ACTIONS(1910), + [anon_sym_rand] = ACTIONS(1910), + [anon_sym_rshift] = ACTIONS(1910), + [anon_sym_sin] = ACTIONS(1910), + [anon_sym_split] = ACTIONS(1910), + [anon_sym_sprintf] = ACTIONS(1910), + [anon_sym_sqrt] = ACTIONS(1910), + [anon_sym_srand] = ACTIONS(1910), + [anon_sym_strftime] = ACTIONS(1910), + [anon_sym_strtonum] = ACTIONS(1910), + [anon_sym_sub] = ACTIONS(1910), + [anon_sym_substr] = ACTIONS(1910), + [anon_sym_systime] = ACTIONS(1910), + [anon_sym_tolower] = ACTIONS(1910), + [anon_sym_toupper] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1910), + [anon_sym_xor] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1910), + }, + [1260] = { + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_do] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [sym_break_statement] = ACTIONS(1910), + [sym_continue_statement] = ACTIONS(1910), + [anon_sym_delete] = ACTIONS(1910), + [anon_sym_exit] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_switch] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_case] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_getline] = ACTIONS(1910), + [sym_next_statement] = ACTIONS(1910), + [sym_nextfile_statement] = ACTIONS(1910), + [anon_sym_print] = ACTIONS(1910), + [anon_sym_printf] = ACTIONS(1910), + [anon_sym_SLASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1910), + [aux_sym_number_token1] = ACTIONS(1910), + [aux_sym_number_token2] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [anon_sym_and] = ACTIONS(1910), + [anon_sym_asort] = ACTIONS(1910), + [anon_sym_asorti] = ACTIONS(1910), + [anon_sym_bindtextdomain] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_cos] = ACTIONS(1910), + [anon_sym_dcgettext] = ACTIONS(1910), + [anon_sym_dcngettext] = ACTIONS(1910), + [anon_sym_exp] = ACTIONS(1910), + [anon_sym_gensub] = ACTIONS(1910), + [anon_sym_gsub] = ACTIONS(1910), + [anon_sym_index] = ACTIONS(1910), + [anon_sym_int] = ACTIONS(1910), + [anon_sym_isarray] = ACTIONS(1910), + [anon_sym_length] = ACTIONS(1910), + [anon_sym_log] = ACTIONS(1910), + [anon_sym_lshift] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mktime] = ACTIONS(1910), + [anon_sym_or] = ACTIONS(1910), + [anon_sym_patsplit] = ACTIONS(1910), + [anon_sym_rand] = ACTIONS(1910), + [anon_sym_rshift] = ACTIONS(1910), + [anon_sym_sin] = ACTIONS(1910), + [anon_sym_split] = ACTIONS(1910), + [anon_sym_sprintf] = ACTIONS(1910), + [anon_sym_sqrt] = ACTIONS(1910), + [anon_sym_srand] = ACTIONS(1910), + [anon_sym_strftime] = ACTIONS(1910), + [anon_sym_strtonum] = ACTIONS(1910), + [anon_sym_sub] = ACTIONS(1910), + [anon_sym_substr] = ACTIONS(1910), + [anon_sym_systime] = ACTIONS(1910), + [anon_sym_tolower] = ACTIONS(1910), + [anon_sym_toupper] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1910), + [anon_sym_xor] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1910), + }, + [1261] = { + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [sym_break_statement] = ACTIONS(1826), + [sym_continue_statement] = ACTIONS(1826), + [anon_sym_delete] = ACTIONS(1826), + [anon_sym_exit] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_switch] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_case] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_getline] = ACTIONS(1826), + [sym_next_statement] = ACTIONS(1826), + [sym_nextfile_statement] = ACTIONS(1826), + [anon_sym_print] = ACTIONS(1826), + [anon_sym_printf] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1826), + [aux_sym_number_token1] = ACTIONS(1826), + [aux_sym_number_token2] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_and] = ACTIONS(1826), + [anon_sym_asort] = ACTIONS(1826), + [anon_sym_asorti] = ACTIONS(1826), + [anon_sym_bindtextdomain] = ACTIONS(1826), + [anon_sym_compl] = ACTIONS(1826), + [anon_sym_cos] = ACTIONS(1826), + [anon_sym_dcgettext] = ACTIONS(1826), + [anon_sym_dcngettext] = ACTIONS(1826), + [anon_sym_exp] = ACTIONS(1826), + [anon_sym_gensub] = ACTIONS(1826), + [anon_sym_gsub] = ACTIONS(1826), + [anon_sym_index] = ACTIONS(1826), + [anon_sym_int] = ACTIONS(1826), + [anon_sym_isarray] = ACTIONS(1826), + [anon_sym_length] = ACTIONS(1826), + [anon_sym_log] = ACTIONS(1826), + [anon_sym_lshift] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mktime] = ACTIONS(1826), + [anon_sym_or] = ACTIONS(1826), + [anon_sym_patsplit] = ACTIONS(1826), + [anon_sym_rand] = ACTIONS(1826), + [anon_sym_rshift] = ACTIONS(1826), + [anon_sym_sin] = ACTIONS(1826), + [anon_sym_split] = ACTIONS(1826), + [anon_sym_sprintf] = ACTIONS(1826), + [anon_sym_sqrt] = ACTIONS(1826), + [anon_sym_srand] = ACTIONS(1826), + [anon_sym_strftime] = ACTIONS(1826), + [anon_sym_strtonum] = ACTIONS(1826), + [anon_sym_sub] = ACTIONS(1826), + [anon_sym_substr] = ACTIONS(1826), + [anon_sym_systime] = ACTIONS(1826), + [anon_sym_tolower] = ACTIONS(1826), + [anon_sym_toupper] = ACTIONS(1826), + [anon_sym_typeof] = ACTIONS(1826), + [anon_sym_xor] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1826), + }, + [1262] = { + [sym_identifier] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1842), + [anon_sym_CR_LF] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_do] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [sym_break_statement] = ACTIONS(1842), + [sym_continue_statement] = ACTIONS(1842), + [anon_sym_delete] = ACTIONS(1842), + [anon_sym_exit] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_switch] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_case] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_getline] = ACTIONS(1842), + [sym_next_statement] = ACTIONS(1842), + [sym_nextfile_statement] = ACTIONS(1842), + [anon_sym_print] = ACTIONS(1842), + [anon_sym_printf] = ACTIONS(1842), + [anon_sym_SLASH] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(1842), + [aux_sym_number_token1] = ACTIONS(1842), + [aux_sym_number_token2] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_and] = ACTIONS(1842), + [anon_sym_asort] = ACTIONS(1842), + [anon_sym_asorti] = ACTIONS(1842), + [anon_sym_bindtextdomain] = ACTIONS(1842), + [anon_sym_compl] = ACTIONS(1842), + [anon_sym_cos] = ACTIONS(1842), + [anon_sym_dcgettext] = ACTIONS(1842), + [anon_sym_dcngettext] = ACTIONS(1842), + [anon_sym_exp] = ACTIONS(1842), + [anon_sym_gensub] = ACTIONS(1842), + [anon_sym_gsub] = ACTIONS(1842), + [anon_sym_index] = ACTIONS(1842), + [anon_sym_int] = ACTIONS(1842), + [anon_sym_isarray] = ACTIONS(1842), + [anon_sym_length] = ACTIONS(1842), + [anon_sym_log] = ACTIONS(1842), + [anon_sym_lshift] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mktime] = ACTIONS(1842), + [anon_sym_or] = ACTIONS(1842), + [anon_sym_patsplit] = ACTIONS(1842), + [anon_sym_rand] = ACTIONS(1842), + [anon_sym_rshift] = ACTIONS(1842), + [anon_sym_sin] = ACTIONS(1842), + [anon_sym_split] = ACTIONS(1842), + [anon_sym_sprintf] = ACTIONS(1842), + [anon_sym_sqrt] = ACTIONS(1842), + [anon_sym_srand] = ACTIONS(1842), + [anon_sym_strftime] = ACTIONS(1842), + [anon_sym_strtonum] = ACTIONS(1842), + [anon_sym_sub] = ACTIONS(1842), + [anon_sym_substr] = ACTIONS(1842), + [anon_sym_systime] = ACTIONS(1842), + [anon_sym_tolower] = ACTIONS(1842), + [anon_sym_toupper] = ACTIONS(1842), + [anon_sym_typeof] = ACTIONS(1842), + [anon_sym_xor] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(1842), + }, + [1263] = { + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1926), + [anon_sym_CR_LF] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [sym_break_statement] = ACTIONS(1926), + [sym_continue_statement] = ACTIONS(1926), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_exit] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_switch] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_case] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_getline] = ACTIONS(1926), + [sym_next_statement] = ACTIONS(1926), + [sym_nextfile_statement] = ACTIONS(1926), + [anon_sym_print] = ACTIONS(1926), + [anon_sym_printf] = ACTIONS(1926), + [anon_sym_SLASH] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_DOLLAR] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1926), + [aux_sym_number_token1] = ACTIONS(1926), + [aux_sym_number_token2] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [anon_sym_and] = ACTIONS(1926), + [anon_sym_asort] = ACTIONS(1926), + [anon_sym_asorti] = ACTIONS(1926), + [anon_sym_bindtextdomain] = ACTIONS(1926), + [anon_sym_compl] = ACTIONS(1926), + [anon_sym_cos] = ACTIONS(1926), + [anon_sym_dcgettext] = ACTIONS(1926), + [anon_sym_dcngettext] = ACTIONS(1926), + [anon_sym_exp] = ACTIONS(1926), + [anon_sym_gensub] = ACTIONS(1926), + [anon_sym_gsub] = ACTIONS(1926), + [anon_sym_index] = ACTIONS(1926), + [anon_sym_int] = ACTIONS(1926), + [anon_sym_isarray] = ACTIONS(1926), + [anon_sym_length] = ACTIONS(1926), + [anon_sym_log] = ACTIONS(1926), + [anon_sym_lshift] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mktime] = ACTIONS(1926), + [anon_sym_or] = ACTIONS(1926), + [anon_sym_patsplit] = ACTIONS(1926), + [anon_sym_rand] = ACTIONS(1926), + [anon_sym_rshift] = ACTIONS(1926), + [anon_sym_sin] = ACTIONS(1926), + [anon_sym_split] = ACTIONS(1926), + [anon_sym_sprintf] = ACTIONS(1926), + [anon_sym_sqrt] = ACTIONS(1926), + [anon_sym_srand] = ACTIONS(1926), + [anon_sym_strftime] = ACTIONS(1926), + [anon_sym_strtonum] = ACTIONS(1926), + [anon_sym_sub] = ACTIONS(1926), + [anon_sym_substr] = ACTIONS(1926), + [anon_sym_systime] = ACTIONS(1926), + [anon_sym_tolower] = ACTIONS(1926), + [anon_sym_toupper] = ACTIONS(1926), + [anon_sym_typeof] = ACTIONS(1926), + [anon_sym_xor] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1926), + }, + [1264] = { + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_do] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [sym_break_statement] = ACTIONS(1914), + [sym_continue_statement] = ACTIONS(1914), + [anon_sym_delete] = ACTIONS(1914), + [anon_sym_exit] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_switch] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_case] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_getline] = ACTIONS(1914), + [sym_next_statement] = ACTIONS(1914), + [sym_nextfile_statement] = ACTIONS(1914), + [anon_sym_print] = ACTIONS(1914), + [anon_sym_printf] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1914), + [aux_sym_number_token1] = ACTIONS(1914), + [aux_sym_number_token2] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_and] = ACTIONS(1914), + [anon_sym_asort] = ACTIONS(1914), + [anon_sym_asorti] = ACTIONS(1914), + [anon_sym_bindtextdomain] = ACTIONS(1914), + [anon_sym_compl] = ACTIONS(1914), + [anon_sym_cos] = ACTIONS(1914), + [anon_sym_dcgettext] = ACTIONS(1914), + [anon_sym_dcngettext] = ACTIONS(1914), + [anon_sym_exp] = ACTIONS(1914), + [anon_sym_gensub] = ACTIONS(1914), + [anon_sym_gsub] = ACTIONS(1914), + [anon_sym_index] = ACTIONS(1914), + [anon_sym_int] = ACTIONS(1914), + [anon_sym_isarray] = ACTIONS(1914), + [anon_sym_length] = ACTIONS(1914), + [anon_sym_log] = ACTIONS(1914), + [anon_sym_lshift] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mktime] = ACTIONS(1914), + [anon_sym_or] = ACTIONS(1914), + [anon_sym_patsplit] = ACTIONS(1914), + [anon_sym_rand] = ACTIONS(1914), + [anon_sym_rshift] = ACTIONS(1914), + [anon_sym_sin] = ACTIONS(1914), + [anon_sym_split] = ACTIONS(1914), + [anon_sym_sprintf] = ACTIONS(1914), + [anon_sym_sqrt] = ACTIONS(1914), + [anon_sym_srand] = ACTIONS(1914), + [anon_sym_strftime] = ACTIONS(1914), + [anon_sym_strtonum] = ACTIONS(1914), + [anon_sym_sub] = ACTIONS(1914), + [anon_sym_substr] = ACTIONS(1914), + [anon_sym_systime] = ACTIONS(1914), + [anon_sym_tolower] = ACTIONS(1914), + [anon_sym_toupper] = ACTIONS(1914), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_xor] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + }, + [1265] = { + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [sym_break_statement] = ACTIONS(1838), + [sym_continue_statement] = ACTIONS(1838), + [anon_sym_delete] = ACTIONS(1838), + [anon_sym_exit] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_switch] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_getline] = ACTIONS(1838), + [sym_next_statement] = ACTIONS(1838), + [sym_nextfile_statement] = ACTIONS(1838), + [anon_sym_print] = ACTIONS(1838), + [anon_sym_printf] = ACTIONS(1838), + [anon_sym_SLASH] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1838), + [aux_sym_number_token1] = ACTIONS(1838), + [aux_sym_number_token2] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_and] = ACTIONS(1838), + [anon_sym_asort] = ACTIONS(1838), + [anon_sym_asorti] = ACTIONS(1838), + [anon_sym_bindtextdomain] = ACTIONS(1838), + [anon_sym_compl] = ACTIONS(1838), + [anon_sym_cos] = ACTIONS(1838), + [anon_sym_dcgettext] = ACTIONS(1838), + [anon_sym_dcngettext] = ACTIONS(1838), + [anon_sym_exp] = ACTIONS(1838), + [anon_sym_gensub] = ACTIONS(1838), + [anon_sym_gsub] = ACTIONS(1838), + [anon_sym_index] = ACTIONS(1838), + [anon_sym_int] = ACTIONS(1838), + [anon_sym_isarray] = ACTIONS(1838), + [anon_sym_length] = ACTIONS(1838), + [anon_sym_log] = ACTIONS(1838), + [anon_sym_lshift] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mktime] = ACTIONS(1838), + [anon_sym_or] = ACTIONS(1838), + [anon_sym_patsplit] = ACTIONS(1838), + [anon_sym_rand] = ACTIONS(1838), + [anon_sym_rshift] = ACTIONS(1838), + [anon_sym_sin] = ACTIONS(1838), + [anon_sym_split] = ACTIONS(1838), + [anon_sym_sprintf] = ACTIONS(1838), + [anon_sym_sqrt] = ACTIONS(1838), + [anon_sym_srand] = ACTIONS(1838), + [anon_sym_strftime] = ACTIONS(1838), + [anon_sym_strtonum] = ACTIONS(1838), + [anon_sym_sub] = ACTIONS(1838), + [anon_sym_substr] = ACTIONS(1838), + [anon_sym_systime] = ACTIONS(1838), + [anon_sym_tolower] = ACTIONS(1838), + [anon_sym_toupper] = ACTIONS(1838), + [anon_sym_typeof] = ACTIONS(1838), + [anon_sym_xor] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1838), + }, + [1266] = { + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_LF] = ACTIONS(1854), + [anon_sym_CR_LF] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [sym_break_statement] = ACTIONS(1854), + [sym_continue_statement] = ACTIONS(1854), + [anon_sym_delete] = ACTIONS(1854), + [anon_sym_exit] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_getline] = ACTIONS(1854), + [sym_next_statement] = ACTIONS(1854), + [sym_nextfile_statement] = ACTIONS(1854), + [anon_sym_print] = ACTIONS(1854), + [anon_sym_printf] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1854), + [aux_sym_number_token1] = ACTIONS(1854), + [aux_sym_number_token2] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [anon_sym_and] = ACTIONS(1854), + [anon_sym_asort] = ACTIONS(1854), + [anon_sym_asorti] = ACTIONS(1854), + [anon_sym_bindtextdomain] = ACTIONS(1854), + [anon_sym_compl] = ACTIONS(1854), + [anon_sym_cos] = ACTIONS(1854), + [anon_sym_dcgettext] = ACTIONS(1854), + [anon_sym_dcngettext] = ACTIONS(1854), + [anon_sym_exp] = ACTIONS(1854), + [anon_sym_gensub] = ACTIONS(1854), + [anon_sym_gsub] = ACTIONS(1854), + [anon_sym_index] = ACTIONS(1854), + [anon_sym_int] = ACTIONS(1854), + [anon_sym_isarray] = ACTIONS(1854), + [anon_sym_length] = ACTIONS(1854), + [anon_sym_log] = ACTIONS(1854), + [anon_sym_lshift] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mktime] = ACTIONS(1854), + [anon_sym_or] = ACTIONS(1854), + [anon_sym_patsplit] = ACTIONS(1854), + [anon_sym_rand] = ACTIONS(1854), + [anon_sym_rshift] = ACTIONS(1854), + [anon_sym_sin] = ACTIONS(1854), + [anon_sym_split] = ACTIONS(1854), + [anon_sym_sprintf] = ACTIONS(1854), + [anon_sym_sqrt] = ACTIONS(1854), + [anon_sym_srand] = ACTIONS(1854), + [anon_sym_strftime] = ACTIONS(1854), + [anon_sym_strtonum] = ACTIONS(1854), + [anon_sym_sub] = ACTIONS(1854), + [anon_sym_substr] = ACTIONS(1854), + [anon_sym_systime] = ACTIONS(1854), + [anon_sym_tolower] = ACTIONS(1854), + [anon_sym_toupper] = ACTIONS(1854), + [anon_sym_typeof] = ACTIONS(1854), + [anon_sym_xor] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1854), + }, + [1267] = { + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [sym_break_statement] = ACTIONS(1854), + [sym_continue_statement] = ACTIONS(1854), + [anon_sym_delete] = ACTIONS(1854), + [anon_sym_exit] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_getline] = ACTIONS(1854), + [sym_next_statement] = ACTIONS(1854), + [sym_nextfile_statement] = ACTIONS(1854), + [anon_sym_print] = ACTIONS(1854), + [anon_sym_printf] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1854), + [aux_sym_number_token1] = ACTIONS(1854), + [aux_sym_number_token2] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [anon_sym_and] = ACTIONS(1854), + [anon_sym_asort] = ACTIONS(1854), + [anon_sym_asorti] = ACTIONS(1854), + [anon_sym_bindtextdomain] = ACTIONS(1854), + [anon_sym_compl] = ACTIONS(1854), + [anon_sym_cos] = ACTIONS(1854), + [anon_sym_dcgettext] = ACTIONS(1854), + [anon_sym_dcngettext] = ACTIONS(1854), + [anon_sym_exp] = ACTIONS(1854), + [anon_sym_gensub] = ACTIONS(1854), + [anon_sym_gsub] = ACTIONS(1854), + [anon_sym_index] = ACTIONS(1854), + [anon_sym_int] = ACTIONS(1854), + [anon_sym_isarray] = ACTIONS(1854), + [anon_sym_length] = ACTIONS(1854), + [anon_sym_log] = ACTIONS(1854), + [anon_sym_lshift] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mktime] = ACTIONS(1854), + [anon_sym_or] = ACTIONS(1854), + [anon_sym_patsplit] = ACTIONS(1854), + [anon_sym_rand] = ACTIONS(1854), + [anon_sym_rshift] = ACTIONS(1854), + [anon_sym_sin] = ACTIONS(1854), + [anon_sym_split] = ACTIONS(1854), + [anon_sym_sprintf] = ACTIONS(1854), + [anon_sym_sqrt] = ACTIONS(1854), + [anon_sym_srand] = ACTIONS(1854), + [anon_sym_strftime] = ACTIONS(1854), + [anon_sym_strtonum] = ACTIONS(1854), + [anon_sym_sub] = ACTIONS(1854), + [anon_sym_substr] = ACTIONS(1854), + [anon_sym_systime] = ACTIONS(1854), + [anon_sym_tolower] = ACTIONS(1854), + [anon_sym_toupper] = ACTIONS(1854), + [anon_sym_typeof] = ACTIONS(1854), + [anon_sym_xor] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1854), + }, + [1268] = { + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1826), + [anon_sym_CR_LF] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [sym_break_statement] = ACTIONS(1826), + [sym_continue_statement] = ACTIONS(1826), + [anon_sym_delete] = ACTIONS(1826), + [anon_sym_exit] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_switch] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_case] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_getline] = ACTIONS(1826), + [sym_next_statement] = ACTIONS(1826), + [sym_nextfile_statement] = ACTIONS(1826), + [anon_sym_print] = ACTIONS(1826), + [anon_sym_printf] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1826), + [aux_sym_number_token1] = ACTIONS(1826), + [aux_sym_number_token2] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_and] = ACTIONS(1826), + [anon_sym_asort] = ACTIONS(1826), + [anon_sym_asorti] = ACTIONS(1826), + [anon_sym_bindtextdomain] = ACTIONS(1826), + [anon_sym_compl] = ACTIONS(1826), + [anon_sym_cos] = ACTIONS(1826), + [anon_sym_dcgettext] = ACTIONS(1826), + [anon_sym_dcngettext] = ACTIONS(1826), + [anon_sym_exp] = ACTIONS(1826), + [anon_sym_gensub] = ACTIONS(1826), + [anon_sym_gsub] = ACTIONS(1826), + [anon_sym_index] = ACTIONS(1826), + [anon_sym_int] = ACTIONS(1826), + [anon_sym_isarray] = ACTIONS(1826), + [anon_sym_length] = ACTIONS(1826), + [anon_sym_log] = ACTIONS(1826), + [anon_sym_lshift] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mktime] = ACTIONS(1826), + [anon_sym_or] = ACTIONS(1826), + [anon_sym_patsplit] = ACTIONS(1826), + [anon_sym_rand] = ACTIONS(1826), + [anon_sym_rshift] = ACTIONS(1826), + [anon_sym_sin] = ACTIONS(1826), + [anon_sym_split] = ACTIONS(1826), + [anon_sym_sprintf] = ACTIONS(1826), + [anon_sym_sqrt] = ACTIONS(1826), + [anon_sym_srand] = ACTIONS(1826), + [anon_sym_strftime] = ACTIONS(1826), + [anon_sym_strtonum] = ACTIONS(1826), + [anon_sym_sub] = ACTIONS(1826), + [anon_sym_substr] = ACTIONS(1826), + [anon_sym_systime] = ACTIONS(1826), + [anon_sym_tolower] = ACTIONS(1826), + [anon_sym_toupper] = ACTIONS(1826), + [anon_sym_typeof] = ACTIONS(1826), + [anon_sym_xor] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1826), + }, + [1269] = { + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_do] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [sym_break_statement] = ACTIONS(1902), + [sym_continue_statement] = ACTIONS(1902), + [anon_sym_delete] = ACTIONS(1902), + [anon_sym_exit] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_switch] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_case] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_getline] = ACTIONS(1902), + [sym_next_statement] = ACTIONS(1902), + [sym_nextfile_statement] = ACTIONS(1902), + [anon_sym_print] = ACTIONS(1902), + [anon_sym_printf] = ACTIONS(1902), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1902), + [aux_sym_number_token1] = ACTIONS(1902), + [aux_sym_number_token2] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [anon_sym_and] = ACTIONS(1902), + [anon_sym_asort] = ACTIONS(1902), + [anon_sym_asorti] = ACTIONS(1902), + [anon_sym_bindtextdomain] = ACTIONS(1902), + [anon_sym_compl] = ACTIONS(1902), + [anon_sym_cos] = ACTIONS(1902), + [anon_sym_dcgettext] = ACTIONS(1902), + [anon_sym_dcngettext] = ACTIONS(1902), + [anon_sym_exp] = ACTIONS(1902), + [anon_sym_gensub] = ACTIONS(1902), + [anon_sym_gsub] = ACTIONS(1902), + [anon_sym_index] = ACTIONS(1902), + [anon_sym_int] = ACTIONS(1902), + [anon_sym_isarray] = ACTIONS(1902), + [anon_sym_length] = ACTIONS(1902), + [anon_sym_log] = ACTIONS(1902), + [anon_sym_lshift] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mktime] = ACTIONS(1902), + [anon_sym_or] = ACTIONS(1902), + [anon_sym_patsplit] = ACTIONS(1902), + [anon_sym_rand] = ACTIONS(1902), + [anon_sym_rshift] = ACTIONS(1902), + [anon_sym_sin] = ACTIONS(1902), + [anon_sym_split] = ACTIONS(1902), + [anon_sym_sprintf] = ACTIONS(1902), + [anon_sym_sqrt] = ACTIONS(1902), + [anon_sym_srand] = ACTIONS(1902), + [anon_sym_strftime] = ACTIONS(1902), + [anon_sym_strtonum] = ACTIONS(1902), + [anon_sym_sub] = ACTIONS(1902), + [anon_sym_substr] = ACTIONS(1902), + [anon_sym_systime] = ACTIONS(1902), + [anon_sym_tolower] = ACTIONS(1902), + [anon_sym_toupper] = ACTIONS(1902), + [anon_sym_typeof] = ACTIONS(1902), + [anon_sym_xor] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1902), + }, + [1270] = { + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_CR_LF] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_do] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [sym_break_statement] = ACTIONS(1902), + [sym_continue_statement] = ACTIONS(1902), + [anon_sym_delete] = ACTIONS(1902), + [anon_sym_exit] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_switch] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_case] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_getline] = ACTIONS(1902), + [sym_next_statement] = ACTIONS(1902), + [sym_nextfile_statement] = ACTIONS(1902), + [anon_sym_print] = ACTIONS(1902), + [anon_sym_printf] = ACTIONS(1902), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1902), + [aux_sym_number_token1] = ACTIONS(1902), + [aux_sym_number_token2] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [anon_sym_and] = ACTIONS(1902), + [anon_sym_asort] = ACTIONS(1902), + [anon_sym_asorti] = ACTIONS(1902), + [anon_sym_bindtextdomain] = ACTIONS(1902), + [anon_sym_compl] = ACTIONS(1902), + [anon_sym_cos] = ACTIONS(1902), + [anon_sym_dcgettext] = ACTIONS(1902), + [anon_sym_dcngettext] = ACTIONS(1902), + [anon_sym_exp] = ACTIONS(1902), + [anon_sym_gensub] = ACTIONS(1902), + [anon_sym_gsub] = ACTIONS(1902), + [anon_sym_index] = ACTIONS(1902), + [anon_sym_int] = ACTIONS(1902), + [anon_sym_isarray] = ACTIONS(1902), + [anon_sym_length] = ACTIONS(1902), + [anon_sym_log] = ACTIONS(1902), + [anon_sym_lshift] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mktime] = ACTIONS(1902), + [anon_sym_or] = ACTIONS(1902), + [anon_sym_patsplit] = ACTIONS(1902), + [anon_sym_rand] = ACTIONS(1902), + [anon_sym_rshift] = ACTIONS(1902), + [anon_sym_sin] = ACTIONS(1902), + [anon_sym_split] = ACTIONS(1902), + [anon_sym_sprintf] = ACTIONS(1902), + [anon_sym_sqrt] = ACTIONS(1902), + [anon_sym_srand] = ACTIONS(1902), + [anon_sym_strftime] = ACTIONS(1902), + [anon_sym_strtonum] = ACTIONS(1902), + [anon_sym_sub] = ACTIONS(1902), + [anon_sym_substr] = ACTIONS(1902), + [anon_sym_systime] = ACTIONS(1902), + [anon_sym_tolower] = ACTIONS(1902), + [anon_sym_toupper] = ACTIONS(1902), + [anon_sym_typeof] = ACTIONS(1902), + [anon_sym_xor] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1902), + }, + [1271] = { + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1838), + [anon_sym_CR_LF] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [sym_break_statement] = ACTIONS(1838), + [sym_continue_statement] = ACTIONS(1838), + [anon_sym_delete] = ACTIONS(1838), + [anon_sym_exit] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_switch] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_getline] = ACTIONS(1838), + [sym_next_statement] = ACTIONS(1838), + [sym_nextfile_statement] = ACTIONS(1838), + [anon_sym_print] = ACTIONS(1838), + [anon_sym_printf] = ACTIONS(1838), + [anon_sym_SLASH] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1838), + [aux_sym_number_token1] = ACTIONS(1838), + [aux_sym_number_token2] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_and] = ACTIONS(1838), + [anon_sym_asort] = ACTIONS(1838), + [anon_sym_asorti] = ACTIONS(1838), + [anon_sym_bindtextdomain] = ACTIONS(1838), + [anon_sym_compl] = ACTIONS(1838), + [anon_sym_cos] = ACTIONS(1838), + [anon_sym_dcgettext] = ACTIONS(1838), + [anon_sym_dcngettext] = ACTIONS(1838), + [anon_sym_exp] = ACTIONS(1838), + [anon_sym_gensub] = ACTIONS(1838), + [anon_sym_gsub] = ACTIONS(1838), + [anon_sym_index] = ACTIONS(1838), + [anon_sym_int] = ACTIONS(1838), + [anon_sym_isarray] = ACTIONS(1838), + [anon_sym_length] = ACTIONS(1838), + [anon_sym_log] = ACTIONS(1838), + [anon_sym_lshift] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mktime] = ACTIONS(1838), + [anon_sym_or] = ACTIONS(1838), + [anon_sym_patsplit] = ACTIONS(1838), + [anon_sym_rand] = ACTIONS(1838), + [anon_sym_rshift] = ACTIONS(1838), + [anon_sym_sin] = ACTIONS(1838), + [anon_sym_split] = ACTIONS(1838), + [anon_sym_sprintf] = ACTIONS(1838), + [anon_sym_sqrt] = ACTIONS(1838), + [anon_sym_srand] = ACTIONS(1838), + [anon_sym_strftime] = ACTIONS(1838), + [anon_sym_strtonum] = ACTIONS(1838), + [anon_sym_sub] = ACTIONS(1838), + [anon_sym_substr] = ACTIONS(1838), + [anon_sym_systime] = ACTIONS(1838), + [anon_sym_tolower] = ACTIONS(1838), + [anon_sym_toupper] = ACTIONS(1838), + [anon_sym_typeof] = ACTIONS(1838), + [anon_sym_xor] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1838), + }, + [1272] = { + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [sym_break_statement] = ACTIONS(1894), + [sym_continue_statement] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_exit] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_getline] = ACTIONS(1894), + [sym_next_statement] = ACTIONS(1894), + [sym_nextfile_statement] = ACTIONS(1894), + [anon_sym_print] = ACTIONS(1894), + [anon_sym_printf] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1894), + [aux_sym_number_token1] = ACTIONS(1894), + [aux_sym_number_token2] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_and] = ACTIONS(1894), + [anon_sym_asort] = ACTIONS(1894), + [anon_sym_asorti] = ACTIONS(1894), + [anon_sym_bindtextdomain] = ACTIONS(1894), + [anon_sym_compl] = ACTIONS(1894), + [anon_sym_cos] = ACTIONS(1894), + [anon_sym_dcgettext] = ACTIONS(1894), + [anon_sym_dcngettext] = ACTIONS(1894), + [anon_sym_exp] = ACTIONS(1894), + [anon_sym_gensub] = ACTIONS(1894), + [anon_sym_gsub] = ACTIONS(1894), + [anon_sym_index] = ACTIONS(1894), + [anon_sym_int] = ACTIONS(1894), + [anon_sym_isarray] = ACTIONS(1894), + [anon_sym_length] = ACTIONS(1894), + [anon_sym_log] = ACTIONS(1894), + [anon_sym_lshift] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mktime] = ACTIONS(1894), + [anon_sym_or] = ACTIONS(1894), + [anon_sym_patsplit] = ACTIONS(1894), + [anon_sym_rand] = ACTIONS(1894), + [anon_sym_rshift] = ACTIONS(1894), + [anon_sym_sin] = ACTIONS(1894), + [anon_sym_split] = ACTIONS(1894), + [anon_sym_sprintf] = ACTIONS(1894), + [anon_sym_sqrt] = ACTIONS(1894), + [anon_sym_srand] = ACTIONS(1894), + [anon_sym_strftime] = ACTIONS(1894), + [anon_sym_strtonum] = ACTIONS(1894), + [anon_sym_sub] = ACTIONS(1894), + [anon_sym_substr] = ACTIONS(1894), + [anon_sym_systime] = ACTIONS(1894), + [anon_sym_tolower] = ACTIONS(1894), + [anon_sym_toupper] = ACTIONS(1894), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_xor] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1894), + }, + [1273] = { + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1894), + [anon_sym_CR_LF] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [sym_break_statement] = ACTIONS(1894), + [sym_continue_statement] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_exit] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_getline] = ACTIONS(1894), + [sym_next_statement] = ACTIONS(1894), + [sym_nextfile_statement] = ACTIONS(1894), + [anon_sym_print] = ACTIONS(1894), + [anon_sym_printf] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1894), + [aux_sym_number_token1] = ACTIONS(1894), + [aux_sym_number_token2] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_and] = ACTIONS(1894), + [anon_sym_asort] = ACTIONS(1894), + [anon_sym_asorti] = ACTIONS(1894), + [anon_sym_bindtextdomain] = ACTIONS(1894), + [anon_sym_compl] = ACTIONS(1894), + [anon_sym_cos] = ACTIONS(1894), + [anon_sym_dcgettext] = ACTIONS(1894), + [anon_sym_dcngettext] = ACTIONS(1894), + [anon_sym_exp] = ACTIONS(1894), + [anon_sym_gensub] = ACTIONS(1894), + [anon_sym_gsub] = ACTIONS(1894), + [anon_sym_index] = ACTIONS(1894), + [anon_sym_int] = ACTIONS(1894), + [anon_sym_isarray] = ACTIONS(1894), + [anon_sym_length] = ACTIONS(1894), + [anon_sym_log] = ACTIONS(1894), + [anon_sym_lshift] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mktime] = ACTIONS(1894), + [anon_sym_or] = ACTIONS(1894), + [anon_sym_patsplit] = ACTIONS(1894), + [anon_sym_rand] = ACTIONS(1894), + [anon_sym_rshift] = ACTIONS(1894), + [anon_sym_sin] = ACTIONS(1894), + [anon_sym_split] = ACTIONS(1894), + [anon_sym_sprintf] = ACTIONS(1894), + [anon_sym_sqrt] = ACTIONS(1894), + [anon_sym_srand] = ACTIONS(1894), + [anon_sym_strftime] = ACTIONS(1894), + [anon_sym_strtonum] = ACTIONS(1894), + [anon_sym_sub] = ACTIONS(1894), + [anon_sym_substr] = ACTIONS(1894), + [anon_sym_systime] = ACTIONS(1894), + [anon_sym_tolower] = ACTIONS(1894), + [anon_sym_toupper] = ACTIONS(1894), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_xor] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1894), + }, + [1274] = { + [sym_identifier] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_CR_LF] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_do] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [sym_break_statement] = ACTIONS(1967), + [sym_continue_statement] = ACTIONS(1967), + [anon_sym_delete] = ACTIONS(1967), + [anon_sym_exit] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_switch] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_getline] = ACTIONS(1967), + [sym_next_statement] = ACTIONS(1967), + [sym_nextfile_statement] = ACTIONS(1967), + [anon_sym_print] = ACTIONS(1967), + [anon_sym_printf] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1967), + [anon_sym_PLUS] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1967), + [anon_sym_AT] = ACTIONS(1967), + [aux_sym_number_token1] = ACTIONS(1967), + [aux_sym_number_token2] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_and] = ACTIONS(1967), + [anon_sym_asort] = ACTIONS(1967), + [anon_sym_asorti] = ACTIONS(1967), + [anon_sym_bindtextdomain] = ACTIONS(1967), + [anon_sym_compl] = ACTIONS(1967), + [anon_sym_cos] = ACTIONS(1967), + [anon_sym_dcgettext] = ACTIONS(1967), + [anon_sym_dcngettext] = ACTIONS(1967), + [anon_sym_exp] = ACTIONS(1967), + [anon_sym_gensub] = ACTIONS(1967), + [anon_sym_gsub] = ACTIONS(1967), + [anon_sym_index] = ACTIONS(1967), + [anon_sym_int] = ACTIONS(1967), + [anon_sym_isarray] = ACTIONS(1967), + [anon_sym_length] = ACTIONS(1967), + [anon_sym_log] = ACTIONS(1967), + [anon_sym_lshift] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_mktime] = ACTIONS(1967), + [anon_sym_or] = ACTIONS(1967), + [anon_sym_patsplit] = ACTIONS(1967), + [anon_sym_rand] = ACTIONS(1967), + [anon_sym_rshift] = ACTIONS(1967), + [anon_sym_sin] = ACTIONS(1967), + [anon_sym_split] = ACTIONS(1967), + [anon_sym_sprintf] = ACTIONS(1967), + [anon_sym_sqrt] = ACTIONS(1967), + [anon_sym_srand] = ACTIONS(1967), + [anon_sym_strftime] = ACTIONS(1967), + [anon_sym_strtonum] = ACTIONS(1967), + [anon_sym_sub] = ACTIONS(1967), + [anon_sym_substr] = ACTIONS(1967), + [anon_sym_systime] = ACTIONS(1967), + [anon_sym_tolower] = ACTIONS(1967), + [anon_sym_toupper] = ACTIONS(1967), + [anon_sym_typeof] = ACTIONS(1967), + [anon_sym_xor] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(1967), + [sym__if_else_separator] = ACTIONS(1969), + }, + [1275] = { + [sym_identifier] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_CR_LF] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_do] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [sym_break_statement] = ACTIONS(1967), + [sym_continue_statement] = ACTIONS(1967), + [anon_sym_delete] = ACTIONS(1967), + [anon_sym_exit] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_switch] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_getline] = ACTIONS(1967), + [sym_next_statement] = ACTIONS(1967), + [sym_nextfile_statement] = ACTIONS(1967), + [anon_sym_print] = ACTIONS(1967), + [anon_sym_printf] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1967), + [anon_sym_PLUS] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1967), + [anon_sym_AT] = ACTIONS(1967), + [aux_sym_number_token1] = ACTIONS(1967), + [aux_sym_number_token2] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_and] = ACTIONS(1967), + [anon_sym_asort] = ACTIONS(1967), + [anon_sym_asorti] = ACTIONS(1967), + [anon_sym_bindtextdomain] = ACTIONS(1967), + [anon_sym_compl] = ACTIONS(1967), + [anon_sym_cos] = ACTIONS(1967), + [anon_sym_dcgettext] = ACTIONS(1967), + [anon_sym_dcngettext] = ACTIONS(1967), + [anon_sym_exp] = ACTIONS(1967), + [anon_sym_gensub] = ACTIONS(1967), + [anon_sym_gsub] = ACTIONS(1967), + [anon_sym_index] = ACTIONS(1967), + [anon_sym_int] = ACTIONS(1967), + [anon_sym_isarray] = ACTIONS(1967), + [anon_sym_length] = ACTIONS(1967), + [anon_sym_log] = ACTIONS(1967), + [anon_sym_lshift] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_mktime] = ACTIONS(1967), + [anon_sym_or] = ACTIONS(1967), + [anon_sym_patsplit] = ACTIONS(1967), + [anon_sym_rand] = ACTIONS(1967), + [anon_sym_rshift] = ACTIONS(1967), + [anon_sym_sin] = ACTIONS(1967), + [anon_sym_split] = ACTIONS(1967), + [anon_sym_sprintf] = ACTIONS(1967), + [anon_sym_sqrt] = ACTIONS(1967), + [anon_sym_srand] = ACTIONS(1967), + [anon_sym_strftime] = ACTIONS(1967), + [anon_sym_strtonum] = ACTIONS(1967), + [anon_sym_sub] = ACTIONS(1967), + [anon_sym_substr] = ACTIONS(1967), + [anon_sym_systime] = ACTIONS(1967), + [anon_sym_tolower] = ACTIONS(1967), + [anon_sym_toupper] = ACTIONS(1967), + [anon_sym_typeof] = ACTIONS(1967), + [anon_sym_xor] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(1967), + [sym__if_else_separator] = ACTIONS(1971), + }, + [1276] = { + [sym_identifier] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_CR_LF] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [sym_break_statement] = ACTIONS(1973), + [sym_continue_statement] = ACTIONS(1973), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_exit] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_switch] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_getline] = ACTIONS(1973), + [sym_next_statement] = ACTIONS(1973), + [sym_nextfile_statement] = ACTIONS(1973), + [anon_sym_print] = ACTIONS(1973), + [anon_sym_printf] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1973), + [aux_sym_number_token1] = ACTIONS(1973), + [aux_sym_number_token2] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_and] = ACTIONS(1973), + [anon_sym_asort] = ACTIONS(1973), + [anon_sym_asorti] = ACTIONS(1973), + [anon_sym_bindtextdomain] = ACTIONS(1973), + [anon_sym_compl] = ACTIONS(1973), + [anon_sym_cos] = ACTIONS(1973), + [anon_sym_dcgettext] = ACTIONS(1973), + [anon_sym_dcngettext] = ACTIONS(1973), + [anon_sym_exp] = ACTIONS(1973), + [anon_sym_gensub] = ACTIONS(1973), + [anon_sym_gsub] = ACTIONS(1973), + [anon_sym_index] = ACTIONS(1973), + [anon_sym_int] = ACTIONS(1973), + [anon_sym_isarray] = ACTIONS(1973), + [anon_sym_length] = ACTIONS(1973), + [anon_sym_log] = ACTIONS(1973), + [anon_sym_lshift] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_mktime] = ACTIONS(1973), + [anon_sym_or] = ACTIONS(1973), + [anon_sym_patsplit] = ACTIONS(1973), + [anon_sym_rand] = ACTIONS(1973), + [anon_sym_rshift] = ACTIONS(1973), + [anon_sym_sin] = ACTIONS(1973), + [anon_sym_split] = ACTIONS(1973), + [anon_sym_sprintf] = ACTIONS(1973), + [anon_sym_sqrt] = ACTIONS(1973), + [anon_sym_srand] = ACTIONS(1973), + [anon_sym_strftime] = ACTIONS(1973), + [anon_sym_strtonum] = ACTIONS(1973), + [anon_sym_sub] = ACTIONS(1973), + [anon_sym_substr] = ACTIONS(1973), + [anon_sym_systime] = ACTIONS(1973), + [anon_sym_tolower] = ACTIONS(1973), + [anon_sym_toupper] = ACTIONS(1973), + [anon_sym_typeof] = ACTIONS(1973), + [anon_sym_xor] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1973), + [sym__if_else_separator] = ACTIONS(1975), + }, + [1277] = { + [sym_identifier] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_CR_LF] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [sym_break_statement] = ACTIONS(1973), + [sym_continue_statement] = ACTIONS(1973), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_exit] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_switch] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_getline] = ACTIONS(1973), + [sym_next_statement] = ACTIONS(1973), + [sym_nextfile_statement] = ACTIONS(1973), + [anon_sym_print] = ACTIONS(1973), + [anon_sym_printf] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1973), + [aux_sym_number_token1] = ACTIONS(1973), + [aux_sym_number_token2] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_and] = ACTIONS(1973), + [anon_sym_asort] = ACTIONS(1973), + [anon_sym_asorti] = ACTIONS(1973), + [anon_sym_bindtextdomain] = ACTIONS(1973), + [anon_sym_compl] = ACTIONS(1973), + [anon_sym_cos] = ACTIONS(1973), + [anon_sym_dcgettext] = ACTIONS(1973), + [anon_sym_dcngettext] = ACTIONS(1973), + [anon_sym_exp] = ACTIONS(1973), + [anon_sym_gensub] = ACTIONS(1973), + [anon_sym_gsub] = ACTIONS(1973), + [anon_sym_index] = ACTIONS(1973), + [anon_sym_int] = ACTIONS(1973), + [anon_sym_isarray] = ACTIONS(1973), + [anon_sym_length] = ACTIONS(1973), + [anon_sym_log] = ACTIONS(1973), + [anon_sym_lshift] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_mktime] = ACTIONS(1973), + [anon_sym_or] = ACTIONS(1973), + [anon_sym_patsplit] = ACTIONS(1973), + [anon_sym_rand] = ACTIONS(1973), + [anon_sym_rshift] = ACTIONS(1973), + [anon_sym_sin] = ACTIONS(1973), + [anon_sym_split] = ACTIONS(1973), + [anon_sym_sprintf] = ACTIONS(1973), + [anon_sym_sqrt] = ACTIONS(1973), + [anon_sym_srand] = ACTIONS(1973), + [anon_sym_strftime] = ACTIONS(1973), + [anon_sym_strtonum] = ACTIONS(1973), + [anon_sym_sub] = ACTIONS(1973), + [anon_sym_substr] = ACTIONS(1973), + [anon_sym_systime] = ACTIONS(1973), + [anon_sym_tolower] = ACTIONS(1973), + [anon_sym_toupper] = ACTIONS(1973), + [anon_sym_typeof] = ACTIONS(1973), + [anon_sym_xor] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1973), + [sym__if_else_separator] = ACTIONS(1975), + }, + [1278] = { + [sym_identifier] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_CR_LF] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_do] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [sym_break_statement] = ACTIONS(1967), + [sym_continue_statement] = ACTIONS(1967), + [anon_sym_delete] = ACTIONS(1967), + [anon_sym_exit] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_switch] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_getline] = ACTIONS(1967), + [sym_next_statement] = ACTIONS(1967), + [sym_nextfile_statement] = ACTIONS(1967), + [anon_sym_print] = ACTIONS(1967), + [anon_sym_printf] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1967), + [anon_sym_PLUS] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1967), + [anon_sym_AT] = ACTIONS(1967), + [aux_sym_number_token1] = ACTIONS(1967), + [aux_sym_number_token2] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_and] = ACTIONS(1967), + [anon_sym_asort] = ACTIONS(1967), + [anon_sym_asorti] = ACTIONS(1967), + [anon_sym_bindtextdomain] = ACTIONS(1967), + [anon_sym_compl] = ACTIONS(1967), + [anon_sym_cos] = ACTIONS(1967), + [anon_sym_dcgettext] = ACTIONS(1967), + [anon_sym_dcngettext] = ACTIONS(1967), + [anon_sym_exp] = ACTIONS(1967), + [anon_sym_gensub] = ACTIONS(1967), + [anon_sym_gsub] = ACTIONS(1967), + [anon_sym_index] = ACTIONS(1967), + [anon_sym_int] = ACTIONS(1967), + [anon_sym_isarray] = ACTIONS(1967), + [anon_sym_length] = ACTIONS(1967), + [anon_sym_log] = ACTIONS(1967), + [anon_sym_lshift] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_mktime] = ACTIONS(1967), + [anon_sym_or] = ACTIONS(1967), + [anon_sym_patsplit] = ACTIONS(1967), + [anon_sym_rand] = ACTIONS(1967), + [anon_sym_rshift] = ACTIONS(1967), + [anon_sym_sin] = ACTIONS(1967), + [anon_sym_split] = ACTIONS(1967), + [anon_sym_sprintf] = ACTIONS(1967), + [anon_sym_sqrt] = ACTIONS(1967), + [anon_sym_srand] = ACTIONS(1967), + [anon_sym_strftime] = ACTIONS(1967), + [anon_sym_strtonum] = ACTIONS(1967), + [anon_sym_sub] = ACTIONS(1967), + [anon_sym_substr] = ACTIONS(1967), + [anon_sym_systime] = ACTIONS(1967), + [anon_sym_tolower] = ACTIONS(1967), + [anon_sym_toupper] = ACTIONS(1967), + [anon_sym_typeof] = ACTIONS(1967), + [anon_sym_xor] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(1967), + [sym__if_else_separator] = ACTIONS(1969), + }, + [1279] = { + [sym_identifier] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_CR_LF] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_do] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [sym_break_statement] = ACTIONS(1967), + [sym_continue_statement] = ACTIONS(1967), + [anon_sym_delete] = ACTIONS(1967), + [anon_sym_exit] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_switch] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_getline] = ACTIONS(1967), + [sym_next_statement] = ACTIONS(1967), + [sym_nextfile_statement] = ACTIONS(1967), + [anon_sym_print] = ACTIONS(1967), + [anon_sym_printf] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1967), + [anon_sym_PLUS] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1967), + [anon_sym_AT] = ACTIONS(1967), + [aux_sym_number_token1] = ACTIONS(1967), + [aux_sym_number_token2] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_and] = ACTIONS(1967), + [anon_sym_asort] = ACTIONS(1967), + [anon_sym_asorti] = ACTIONS(1967), + [anon_sym_bindtextdomain] = ACTIONS(1967), + [anon_sym_compl] = ACTIONS(1967), + [anon_sym_cos] = ACTIONS(1967), + [anon_sym_dcgettext] = ACTIONS(1967), + [anon_sym_dcngettext] = ACTIONS(1967), + [anon_sym_exp] = ACTIONS(1967), + [anon_sym_gensub] = ACTIONS(1967), + [anon_sym_gsub] = ACTIONS(1967), + [anon_sym_index] = ACTIONS(1967), + [anon_sym_int] = ACTIONS(1967), + [anon_sym_isarray] = ACTIONS(1967), + [anon_sym_length] = ACTIONS(1967), + [anon_sym_log] = ACTIONS(1967), + [anon_sym_lshift] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_mktime] = ACTIONS(1967), + [anon_sym_or] = ACTIONS(1967), + [anon_sym_patsplit] = ACTIONS(1967), + [anon_sym_rand] = ACTIONS(1967), + [anon_sym_rshift] = ACTIONS(1967), + [anon_sym_sin] = ACTIONS(1967), + [anon_sym_split] = ACTIONS(1967), + [anon_sym_sprintf] = ACTIONS(1967), + [anon_sym_sqrt] = ACTIONS(1967), + [anon_sym_srand] = ACTIONS(1967), + [anon_sym_strftime] = ACTIONS(1967), + [anon_sym_strtonum] = ACTIONS(1967), + [anon_sym_sub] = ACTIONS(1967), + [anon_sym_substr] = ACTIONS(1967), + [anon_sym_systime] = ACTIONS(1967), + [anon_sym_tolower] = ACTIONS(1967), + [anon_sym_toupper] = ACTIONS(1967), + [anon_sym_typeof] = ACTIONS(1967), + [anon_sym_xor] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(1967), + [sym__if_else_separator] = ACTIONS(1971), + }, + [1280] = { + [sym_identifier] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_CR_LF] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [sym_break_statement] = ACTIONS(1973), + [sym_continue_statement] = ACTIONS(1973), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_exit] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_switch] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_getline] = ACTIONS(1973), + [sym_next_statement] = ACTIONS(1973), + [sym_nextfile_statement] = ACTIONS(1973), + [anon_sym_print] = ACTIONS(1973), + [anon_sym_printf] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1973), + [aux_sym_number_token1] = ACTIONS(1973), + [aux_sym_number_token2] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_and] = ACTIONS(1973), + [anon_sym_asort] = ACTIONS(1973), + [anon_sym_asorti] = ACTIONS(1973), + [anon_sym_bindtextdomain] = ACTIONS(1973), + [anon_sym_compl] = ACTIONS(1973), + [anon_sym_cos] = ACTIONS(1973), + [anon_sym_dcgettext] = ACTIONS(1973), + [anon_sym_dcngettext] = ACTIONS(1973), + [anon_sym_exp] = ACTIONS(1973), + [anon_sym_gensub] = ACTIONS(1973), + [anon_sym_gsub] = ACTIONS(1973), + [anon_sym_index] = ACTIONS(1973), + [anon_sym_int] = ACTIONS(1973), + [anon_sym_isarray] = ACTIONS(1973), + [anon_sym_length] = ACTIONS(1973), + [anon_sym_log] = ACTIONS(1973), + [anon_sym_lshift] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_mktime] = ACTIONS(1973), + [anon_sym_or] = ACTIONS(1973), + [anon_sym_patsplit] = ACTIONS(1973), + [anon_sym_rand] = ACTIONS(1973), + [anon_sym_rshift] = ACTIONS(1973), + [anon_sym_sin] = ACTIONS(1973), + [anon_sym_split] = ACTIONS(1973), + [anon_sym_sprintf] = ACTIONS(1973), + [anon_sym_sqrt] = ACTIONS(1973), + [anon_sym_srand] = ACTIONS(1973), + [anon_sym_strftime] = ACTIONS(1973), + [anon_sym_strtonum] = ACTIONS(1973), + [anon_sym_sub] = ACTIONS(1973), + [anon_sym_substr] = ACTIONS(1973), + [anon_sym_systime] = ACTIONS(1973), + [anon_sym_tolower] = ACTIONS(1973), + [anon_sym_toupper] = ACTIONS(1973), + [anon_sym_typeof] = ACTIONS(1973), + [anon_sym_xor] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1973), + [sym__if_else_separator] = ACTIONS(1977), + }, + [1281] = { + [sym_identifier] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_CR_LF] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [sym_break_statement] = ACTIONS(1973), + [sym_continue_statement] = ACTIONS(1973), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_exit] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_switch] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_getline] = ACTIONS(1973), + [sym_next_statement] = ACTIONS(1973), + [sym_nextfile_statement] = ACTIONS(1973), + [anon_sym_print] = ACTIONS(1973), + [anon_sym_printf] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1973), + [aux_sym_number_token1] = ACTIONS(1973), + [aux_sym_number_token2] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_and] = ACTIONS(1973), + [anon_sym_asort] = ACTIONS(1973), + [anon_sym_asorti] = ACTIONS(1973), + [anon_sym_bindtextdomain] = ACTIONS(1973), + [anon_sym_compl] = ACTIONS(1973), + [anon_sym_cos] = ACTIONS(1973), + [anon_sym_dcgettext] = ACTIONS(1973), + [anon_sym_dcngettext] = ACTIONS(1973), + [anon_sym_exp] = ACTIONS(1973), + [anon_sym_gensub] = ACTIONS(1973), + [anon_sym_gsub] = ACTIONS(1973), + [anon_sym_index] = ACTIONS(1973), + [anon_sym_int] = ACTIONS(1973), + [anon_sym_isarray] = ACTIONS(1973), + [anon_sym_length] = ACTIONS(1973), + [anon_sym_log] = ACTIONS(1973), + [anon_sym_lshift] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_mktime] = ACTIONS(1973), + [anon_sym_or] = ACTIONS(1973), + [anon_sym_patsplit] = ACTIONS(1973), + [anon_sym_rand] = ACTIONS(1973), + [anon_sym_rshift] = ACTIONS(1973), + [anon_sym_sin] = ACTIONS(1973), + [anon_sym_split] = ACTIONS(1973), + [anon_sym_sprintf] = ACTIONS(1973), + [anon_sym_sqrt] = ACTIONS(1973), + [anon_sym_srand] = ACTIONS(1973), + [anon_sym_strftime] = ACTIONS(1973), + [anon_sym_strtonum] = ACTIONS(1973), + [anon_sym_sub] = ACTIONS(1973), + [anon_sym_substr] = ACTIONS(1973), + [anon_sym_systime] = ACTIONS(1973), + [anon_sym_tolower] = ACTIONS(1973), + [anon_sym_toupper] = ACTIONS(1973), + [anon_sym_typeof] = ACTIONS(1973), + [anon_sym_xor] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1973), + [sym__if_else_separator] = ACTIONS(1977), + }, + [1282] = { + [sym_identifier] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1979), + [anon_sym_do] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1979), + [sym_break_statement] = ACTIONS(1979), + [sym_continue_statement] = ACTIONS(1979), + [anon_sym_delete] = ACTIONS(1979), + [anon_sym_exit] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1979), + [anon_sym_switch] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_case] = ACTIONS(1979), + [anon_sym_default] = ACTIONS(1979), + [anon_sym_getline] = ACTIONS(1979), + [sym_next_statement] = ACTIONS(1979), + [sym_nextfile_statement] = ACTIONS(1979), + [anon_sym_print] = ACTIONS(1979), + [anon_sym_printf] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1981), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(1981), + [aux_sym_number_token1] = ACTIONS(1979), + [aux_sym_number_token2] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [anon_sym_and] = ACTIONS(1979), + [anon_sym_asort] = ACTIONS(1979), + [anon_sym_asorti] = ACTIONS(1979), + [anon_sym_bindtextdomain] = ACTIONS(1979), + [anon_sym_compl] = ACTIONS(1979), + [anon_sym_cos] = ACTIONS(1979), + [anon_sym_dcgettext] = ACTIONS(1979), + [anon_sym_dcngettext] = ACTIONS(1979), + [anon_sym_exp] = ACTIONS(1979), + [anon_sym_gensub] = ACTIONS(1979), + [anon_sym_gsub] = ACTIONS(1979), + [anon_sym_index] = ACTIONS(1979), + [anon_sym_int] = ACTIONS(1979), + [anon_sym_isarray] = ACTIONS(1979), + [anon_sym_length] = ACTIONS(1979), + [anon_sym_log] = ACTIONS(1979), + [anon_sym_lshift] = ACTIONS(1979), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_mktime] = ACTIONS(1979), + [anon_sym_or] = ACTIONS(1979), + [anon_sym_patsplit] = ACTIONS(1979), + [anon_sym_rand] = ACTIONS(1979), + [anon_sym_rshift] = ACTIONS(1979), + [anon_sym_sin] = ACTIONS(1979), + [anon_sym_split] = ACTIONS(1979), + [anon_sym_sprintf] = ACTIONS(1979), + [anon_sym_sqrt] = ACTIONS(1979), + [anon_sym_srand] = ACTIONS(1979), + [anon_sym_strftime] = ACTIONS(1979), + [anon_sym_strtonum] = ACTIONS(1979), + [anon_sym_sub] = ACTIONS(1979), + [anon_sym_substr] = ACTIONS(1979), + [anon_sym_systime] = ACTIONS(1979), + [anon_sym_tolower] = ACTIONS(1979), + [anon_sym_toupper] = ACTIONS(1979), + [anon_sym_typeof] = ACTIONS(1979), + [anon_sym_xor] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(1981), + }, + [1283] = { + [sym_identifier] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LF] = ACTIONS(1958), + [anon_sym_CR_LF] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_while] = ACTIONS(1983), + [anon_sym_do] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1983), + [sym_break_statement] = ACTIONS(1983), + [sym_continue_statement] = ACTIONS(1983), + [anon_sym_delete] = ACTIONS(1983), + [anon_sym_exit] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_getline] = ACTIONS(1983), + [sym_next_statement] = ACTIONS(1983), + [sym_nextfile_statement] = ACTIONS(1983), + [anon_sym_print] = ACTIONS(1983), + [anon_sym_printf] = ACTIONS(1983), + [anon_sym_SLASH] = ACTIONS(1983), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1983), + [anon_sym_PLUS_PLUS] = ACTIONS(1983), + [anon_sym_DASH_DASH] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1983), + [anon_sym_AT] = ACTIONS(1983), + [aux_sym_number_token1] = ACTIONS(1983), + [aux_sym_number_token2] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1983), + [anon_sym_and] = ACTIONS(1983), + [anon_sym_asort] = ACTIONS(1983), + [anon_sym_asorti] = ACTIONS(1983), + [anon_sym_bindtextdomain] = ACTIONS(1983), + [anon_sym_compl] = ACTIONS(1983), + [anon_sym_cos] = ACTIONS(1983), + [anon_sym_dcgettext] = ACTIONS(1983), + [anon_sym_dcngettext] = ACTIONS(1983), + [anon_sym_exp] = ACTIONS(1983), + [anon_sym_gensub] = ACTIONS(1983), + [anon_sym_gsub] = ACTIONS(1983), + [anon_sym_index] = ACTIONS(1983), + [anon_sym_int] = ACTIONS(1983), + [anon_sym_isarray] = ACTIONS(1983), + [anon_sym_length] = ACTIONS(1983), + [anon_sym_log] = ACTIONS(1983), + [anon_sym_lshift] = ACTIONS(1983), + [anon_sym_match] = ACTIONS(1983), + [anon_sym_mktime] = ACTIONS(1983), + [anon_sym_or] = ACTIONS(1983), + [anon_sym_patsplit] = ACTIONS(1983), + [anon_sym_rand] = ACTIONS(1983), + [anon_sym_rshift] = ACTIONS(1983), + [anon_sym_sin] = ACTIONS(1983), + [anon_sym_split] = ACTIONS(1983), + [anon_sym_sprintf] = ACTIONS(1983), + [anon_sym_sqrt] = ACTIONS(1983), + [anon_sym_srand] = ACTIONS(1983), + [anon_sym_strftime] = ACTIONS(1983), + [anon_sym_strtonum] = ACTIONS(1983), + [anon_sym_sub] = ACTIONS(1983), + [anon_sym_substr] = ACTIONS(1983), + [anon_sym_systime] = ACTIONS(1983), + [anon_sym_tolower] = ACTIONS(1983), + [anon_sym_toupper] = ACTIONS(1983), + [anon_sym_typeof] = ACTIONS(1983), + [anon_sym_xor] = ACTIONS(1983), + [anon_sym_POUND] = ACTIONS(1983), + }, + [1284] = { + [sym_identifier] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [sym_break_statement] = ACTIONS(1926), + [sym_continue_statement] = ACTIONS(1926), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_exit] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_switch] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_getline] = ACTIONS(1926), + [sym_next_statement] = ACTIONS(1926), + [sym_nextfile_statement] = ACTIONS(1926), + [anon_sym_print] = ACTIONS(1926), + [anon_sym_printf] = ACTIONS(1926), + [anon_sym_SLASH] = ACTIONS(1928), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_PLUS_PLUS] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1928), + [anon_sym_DOLLAR] = ACTIONS(1928), + [anon_sym_AT] = ACTIONS(1928), + [aux_sym_number_token1] = ACTIONS(1926), + [aux_sym_number_token2] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1928), + [anon_sym_and] = ACTIONS(1926), + [anon_sym_asort] = ACTIONS(1926), + [anon_sym_asorti] = ACTIONS(1926), + [anon_sym_bindtextdomain] = ACTIONS(1926), + [anon_sym_compl] = ACTIONS(1926), + [anon_sym_cos] = ACTIONS(1926), + [anon_sym_dcgettext] = ACTIONS(1926), + [anon_sym_dcngettext] = ACTIONS(1926), + [anon_sym_exp] = ACTIONS(1926), + [anon_sym_gensub] = ACTIONS(1926), + [anon_sym_gsub] = ACTIONS(1926), + [anon_sym_index] = ACTIONS(1926), + [anon_sym_int] = ACTIONS(1926), + [anon_sym_isarray] = ACTIONS(1926), + [anon_sym_length] = ACTIONS(1926), + [anon_sym_log] = ACTIONS(1926), + [anon_sym_lshift] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mktime] = ACTIONS(1926), + [anon_sym_or] = ACTIONS(1926), + [anon_sym_patsplit] = ACTIONS(1926), + [anon_sym_rand] = ACTIONS(1926), + [anon_sym_rshift] = ACTIONS(1926), + [anon_sym_sin] = ACTIONS(1926), + [anon_sym_split] = ACTIONS(1926), + [anon_sym_sprintf] = ACTIONS(1926), + [anon_sym_sqrt] = ACTIONS(1926), + [anon_sym_srand] = ACTIONS(1926), + [anon_sym_strftime] = ACTIONS(1926), + [anon_sym_strtonum] = ACTIONS(1926), + [anon_sym_sub] = ACTIONS(1926), + [anon_sym_substr] = ACTIONS(1926), + [anon_sym_systime] = ACTIONS(1926), + [anon_sym_tolower] = ACTIONS(1926), + [anon_sym_toupper] = ACTIONS(1926), + [anon_sym_typeof] = ACTIONS(1926), + [anon_sym_xor] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1928), + }, + [1285] = { + [sym_identifier] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_do] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [sym_break_statement] = ACTIONS(1922), + [sym_continue_statement] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1922), + [anon_sym_exit] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_switch] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_getline] = ACTIONS(1922), + [sym_next_statement] = ACTIONS(1922), + [sym_nextfile_statement] = ACTIONS(1922), + [anon_sym_print] = ACTIONS(1922), + [anon_sym_printf] = ACTIONS(1922), + [anon_sym_SLASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_PLUS_PLUS] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [anon_sym_AT] = ACTIONS(1924), + [aux_sym_number_token1] = ACTIONS(1922), + [aux_sym_number_token2] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_and] = ACTIONS(1922), + [anon_sym_asort] = ACTIONS(1922), + [anon_sym_asorti] = ACTIONS(1922), + [anon_sym_bindtextdomain] = ACTIONS(1922), + [anon_sym_compl] = ACTIONS(1922), + [anon_sym_cos] = ACTIONS(1922), + [anon_sym_dcgettext] = ACTIONS(1922), + [anon_sym_dcngettext] = ACTIONS(1922), + [anon_sym_exp] = ACTIONS(1922), + [anon_sym_gensub] = ACTIONS(1922), + [anon_sym_gsub] = ACTIONS(1922), + [anon_sym_index] = ACTIONS(1922), + [anon_sym_int] = ACTIONS(1922), + [anon_sym_isarray] = ACTIONS(1922), + [anon_sym_length] = ACTIONS(1922), + [anon_sym_log] = ACTIONS(1922), + [anon_sym_lshift] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mktime] = ACTIONS(1922), + [anon_sym_or] = ACTIONS(1922), + [anon_sym_patsplit] = ACTIONS(1922), + [anon_sym_rand] = ACTIONS(1922), + [anon_sym_rshift] = ACTIONS(1922), + [anon_sym_sin] = ACTIONS(1922), + [anon_sym_split] = ACTIONS(1922), + [anon_sym_sprintf] = ACTIONS(1922), + [anon_sym_sqrt] = ACTIONS(1922), + [anon_sym_srand] = ACTIONS(1922), + [anon_sym_strftime] = ACTIONS(1922), + [anon_sym_strtonum] = ACTIONS(1922), + [anon_sym_sub] = ACTIONS(1922), + [anon_sym_substr] = ACTIONS(1922), + [anon_sym_systime] = ACTIONS(1922), + [anon_sym_tolower] = ACTIONS(1922), + [anon_sym_toupper] = ACTIONS(1922), + [anon_sym_typeof] = ACTIONS(1922), + [anon_sym_xor] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1924), + }, + [1286] = { + [ts_builtin_sym_end] = ACTIONS(1981), + [sym_identifier] = ACTIONS(1979), + [anon_sym_BEGIN] = ACTIONS(1979), + [anon_sym_END] = ACTIONS(1979), + [anon_sym_BEGINFILE] = ACTIONS(1979), + [anon_sym_ENDFILE] = ACTIONS(1979), + [anon_sym_ATinclude] = ACTIONS(1981), + [anon_sym_ATload] = ACTIONS(1981), + [anon_sym_ATnamespace] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_case] = ACTIONS(1979), + [anon_sym_default] = ACTIONS(1979), + [anon_sym_getline] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1981), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(1979), + [aux_sym_number_token1] = ACTIONS(1979), + [aux_sym_number_token2] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [anon_sym_function] = ACTIONS(1979), + [anon_sym_func] = ACTIONS(1979), + [anon_sym_and] = ACTIONS(1979), + [anon_sym_asort] = ACTIONS(1979), + [anon_sym_asorti] = ACTIONS(1979), + [anon_sym_bindtextdomain] = ACTIONS(1979), + [anon_sym_compl] = ACTIONS(1979), + [anon_sym_cos] = ACTIONS(1979), + [anon_sym_dcgettext] = ACTIONS(1979), + [anon_sym_dcngettext] = ACTIONS(1979), + [anon_sym_exp] = ACTIONS(1979), + [anon_sym_gensub] = ACTIONS(1979), + [anon_sym_gsub] = ACTIONS(1979), + [anon_sym_index] = ACTIONS(1979), + [anon_sym_int] = ACTIONS(1979), + [anon_sym_isarray] = ACTIONS(1979), + [anon_sym_length] = ACTIONS(1979), + [anon_sym_log] = ACTIONS(1979), + [anon_sym_lshift] = ACTIONS(1979), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_mktime] = ACTIONS(1979), + [anon_sym_or] = ACTIONS(1979), + [anon_sym_patsplit] = ACTIONS(1979), + [anon_sym_rand] = ACTIONS(1979), + [anon_sym_rshift] = ACTIONS(1979), + [anon_sym_sin] = ACTIONS(1979), + [anon_sym_split] = ACTIONS(1979), + [anon_sym_sprintf] = ACTIONS(1979), + [anon_sym_sqrt] = ACTIONS(1979), + [anon_sym_srand] = ACTIONS(1979), + [anon_sym_strftime] = ACTIONS(1979), + [anon_sym_strtonum] = ACTIONS(1979), + [anon_sym_sub] = ACTIONS(1979), + [anon_sym_substr] = ACTIONS(1979), + [anon_sym_systime] = ACTIONS(1979), + [anon_sym_tolower] = ACTIONS(1979), + [anon_sym_toupper] = ACTIONS(1979), + [anon_sym_typeof] = ACTIONS(1979), + [anon_sym_xor] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(1981), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 2, + ACTIONS(1924), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_LBRACE, anon_sym_SLASH, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1815), 1, - sym_identifier, - STATE(610), 1, - sym_ns_qualified_name, - STATE(611), 1, - sym_array_ref, - STATE(626), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1418), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1829), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [51646] = 18, - ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, aux_sym_number_token2, - ACTIONS(1437), 1, anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(343), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51721] = 5, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1819), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1821), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 29, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + anon_sym_POUND, + ACTIONS(1922), 50, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [51770] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1571), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51845] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1572), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51920] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1420), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [51995] = 18, - ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [69] = 2, + ACTIONS(883), 15, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1573), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52070] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1574), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52145] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, + anon_sym_DOLLAR, aux_sym_number_token2, - ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + anon_sym_POUND, + ACTIONS(881), 49, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1576), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52220] = 18, - ACTIONS(79), 1, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [138] = 4, + ACTIONS(13), 1, + anon_sym_LBRACE, + STATE(1292), 1, + sym_block, + ACTIONS(1985), 13, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1578), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52295] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, + anon_sym_DOLLAR, aux_sym_number_token2, - ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + anon_sym_POUND, + ACTIONS(1987), 49, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1575), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52370] = 19, - ACTIONS(1323), 1, + anon_sym_AT, sym_identifier, - ACTIONS(1325), 1, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [211] = 2, + ACTIONS(1928), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_LBRACE, anon_sym_SLASH, - ACTIONS(1333), 1, anon_sym_BANG, - ACTIONS(1337), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, aux_sym_number_token2, - ACTIONS(1345), 1, anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1802), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [52447] = 3, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1819), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 34, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + anon_sym_POUND, + ACTIONS(1926), 50, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_getline, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [52492] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, + anon_sym_AT, sym_identifier, - ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [280] = 2, + ACTIONS(887), 15, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(1629), 1, anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(235), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52567] = 4, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1819), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1821), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [52614] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1602), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52689] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, aux_sym_number_token2, - ACTIONS(292), 1, anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, + anon_sym_POUND, + ACTIONS(885), 49, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1603), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52764] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1604), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52839] = 19, - ACTIONS(1323), 1, sym_identifier, - ACTIONS(1325), 1, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [349] = 2, + ACTIONS(1989), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_LBRACE, anon_sym_SLASH, - ACTIONS(1333), 1, anon_sym_BANG, - ACTIONS(1337), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, aux_sym_number_token2, - ACTIONS(1345), 1, anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_POUND, + ACTIONS(1991), 49, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1804), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [52916] = 18, - ACTIONS(256), 1, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [417] = 2, + ACTIONS(1993), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, + anon_sym_LBRACE, anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1606), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [52991] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, + anon_sym_DOLLAR, aux_sym_number_token2, - ACTIONS(292), 1, anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, + anon_sym_POUND, + ACTIONS(1995), 49, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1607), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [53066] = 18, - ACTIONS(256), 1, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [485] = 2, + ACTIONS(1997), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(374), 1, + anon_sym_LBRACE, + anon_sym_SLASH, anon_sym_BANG, - ACTIONS(378), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + ACTIONS(1999), 49, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1486), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [53141] = 18, - ACTIONS(256), 1, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [553] = 2, + ACTIONS(1985), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(374), 1, + anon_sym_LBRACE, + anon_sym_SLASH, anon_sym_BANG, - ACTIONS(378), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + ACTIONS(1987), 49, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1608), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [53216] = 18, - ACTIONS(256), 1, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [621] = 2, + ACTIONS(2001), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(374), 1, + anon_sym_LBRACE, + anon_sym_SLASH, anon_sym_BANG, - ACTIONS(378), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + ACTIONS(2003), 49, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1609), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [53291] = 19, - ACTIONS(256), 1, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [689] = 2, + ACTIONS(1275), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LPAREN, - ACTIONS(374), 1, + anon_sym_LBRACE, + anon_sym_SLASH, anon_sym_BANG, - ACTIONS(378), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1327), 1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + ACTIONS(1277), 49, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1827), 1, - sym_identifier, - STATE(619), 1, - sym_ns_qualified_name, - STATE(622), 1, - sym_array_ref, - STATE(668), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1485), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1836), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [53368] = 6, - ACTIONS(780), 2, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [757] = 2, + ACTIONS(2007), 9, + anon_sym_LPAREN, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + aux_sym_number_token2, + anon_sym_DQUOTE, + ACTIONS(2005), 42, + anon_sym_getline, + anon_sym_PLUS, + anon_sym_DASH, + sym_identifier, + aux_sym_number_token1, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [813] = 5, + ACTIONS(2009), 1, + sym_identifier, + STATE(2525), 1, + sym_namespace, + ACTIONS(729), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1819), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1821), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 23, + STATE(1358), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(725), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, @@ -70055,206 +124611,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [53419] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, + anon_sym_POUND, + [870] = 7, + ACTIONS(2011), 1, sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, + ACTIONS(2013), 1, + anon_sym_LT, + STATE(1358), 1, sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, + STATE(1363), 1, + sym_ns_qualified_name, + STATE(2525), 1, sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(359), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [53494] = 8, - ACTIONS(1829), 1, - anon_sym_in, - ACTIONS(780), 2, + ACTIONS(729), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1819), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1825), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1821), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 20, + ACTIONS(725), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [53549] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1820), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [53626] = 9, - ACTIONS(1829), 1, - anon_sym_in, - ACTIONS(1831), 1, - anon_sym_AMP_AMP, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1819), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1825), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1821), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 19, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -70263,328 +124662,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [53683] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(515), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [53758] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1429), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(327), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [53833] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(510), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [53908] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, - anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(430), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [53983] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1581), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [54058] = 7, - ACTIONS(890), 2, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [930] = 6, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + sym__func_call, + ACTIONS(719), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1819), 2, + ACTIONS(711), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1823), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1825), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1821), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [988] = 8, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(719), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2019), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(749), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(711), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(888), 21, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [1050] = 5, + ACTIONS(729), 1, + sym_concatenating_space, + ACTIONS(2023), 1, + sym_identifier, + STATE(2513), 1, + sym_namespace, + STATE(1366), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(725), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -70596,49 +124821,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [54111] = 11, - ACTIONS(1829), 1, - anon_sym_in, - ACTIONS(1831), 1, - anon_sym_AMP_AMP, - ACTIONS(1833), 1, - anon_sym_QMARK, - ACTIONS(1835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(886), 2, + anon_sym_POUND, + [1106] = 6, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + sym__func_call, + ACTIONS(733), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1819), 2, + ACTIONS(2025), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(713), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1825), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1821), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 17, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -70646,218 +124873,395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [54172] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, + anon_sym_POUND, + [1164] = 8, + ACTIONS(1467), 1, anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(501), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, + ACTIONS(2027), 1, + sym_identifier, + STATE(1400), 1, + sym__builtin_func_call, + STATE(1424), 1, sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, + STATE(1429), 1, sym_func_call, - sym_indirect_func_call, - [54247] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, + STATE(2476), 1, + sym_namespace, + STATE(2500), 1, + sym_ns_qualified_name, + ACTIONS(1371), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [1225] = 8, + ACTIONS(1621), 1, anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1006), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, + ACTIONS(2029), 1, + sym_identifier, + STATE(583), 1, + sym__builtin_func_call, + STATE(612), 1, sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, + STATE(613), 1, sym_func_call, - sym_indirect_func_call, - [54322] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, - anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1463), 2, + STATE(2470), 1, + sym_ns_qualified_name, + STATE(2476), 1, + sym_namespace, + ACTIONS(37), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [1286] = 6, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2035), 1, + sym__func_call, + ACTIONS(2031), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(548), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [54397] = 11, - ACTIONS(1829), 1, + ACTIONS(713), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(1831), 1, - anon_sym_AMP_AMP, - ACTIONS(1833), 1, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(1835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(896), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1819), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1825), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1821), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(894), 17, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [1343] = 8, + ACTIONS(1409), 1, + anon_sym_SLASH, + ACTIONS(2037), 1, + sym_identifier, + STATE(1657), 1, + sym__builtin_func_call, + STATE(1669), 1, + sym_regex, + STATE(1670), 1, + sym_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2497), 1, + sym_ns_qualified_name, + ACTIONS(179), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [1404] = 8, + ACTIONS(363), 1, + anon_sym_SLASH, + ACTIONS(2039), 1, + sym_identifier, + STATE(395), 1, + sym__builtin_func_call, + STATE(400), 1, + sym_func_call, + STATE(416), 1, + sym_regex, + STATE(2476), 1, + sym_namespace, + STATE(2503), 1, + sym_ns_qualified_name, + ACTIONS(2041), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [1465] = 8, + ACTIONS(283), 1, + anon_sym_SLASH, + ACTIONS(2043), 1, + sym_identifier, + STATE(1721), 1, + sym__builtin_func_call, + STATE(1723), 1, + sym_regex, + STATE(1724), 1, + sym_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2488), 1, + sym_ns_qualified_name, + ACTIONS(2045), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [1526] = 8, + ACTIONS(1383), 1, + anon_sym_SLASH, + ACTIONS(2047), 1, + sym_identifier, + STATE(497), 1, + sym__builtin_func_call, + STATE(515), 1, + sym_func_call, + STATE(516), 1, + sym_regex, + STATE(2476), 1, + sym_namespace, + STATE(2478), 1, + sym_ns_qualified_name, + ACTIONS(1399), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [1587] = 6, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(719), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2035), 1, + sym__func_call, + ACTIONS(711), 19, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -70867,47 +125271,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [54458] = 11, - ACTIONS(1829), 1, + anon_sym_POUND, + ACTIONS(713), 21, anon_sym_in, - ACTIONS(1831), 1, - anon_sym_AMP_AMP, - ACTIONS(1833), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(1835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(900), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1819), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1825), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1821), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(898), 17, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [1644] = 2, + ACTIONS(771), 3, + sym_concatenating_space, + sym__if_else_separator, + sym__func_call, + ACTIONS(769), 41, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -70917,1648 +125339,1827 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [54519] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, + anon_sym_LBRACK, + anon_sym_POUND, + [1693] = 8, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1424), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [54594] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, + ACTIONS(2049), 1, sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(499), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, + STATE(229), 1, + sym__builtin_func_call, + STATE(254), 1, sym_func_call, - sym_indirect_func_call, - [54669] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(514), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, + STATE(258), 1, sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [54744] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, + STATE(2476), 1, + sym_namespace, + STATE(2509), 1, + sym_ns_qualified_name, + ACTIONS(1535), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [1754] = 8, + ACTIONS(17), 1, anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1583), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [54819] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, + ACTIONS(2051), 1, sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(497), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, + STATE(623), 1, sym_func_call, - sym_indirect_func_call, - [54894] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(454), 1, + STATE(628), 1, + sym__builtin_func_call, + STATE(629), 1, + sym_regex, + STATE(2314), 1, + sym_ns_qualified_name, + STATE(2476), 1, + sym_namespace, + ACTIONS(2053), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [1815] = 8, + ACTIONS(1593), 1, anon_sym_SLASH, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(464), 1, - anon_sym_AT, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(460), 2, + ACTIONS(2055), 1, + sym_identifier, + STATE(1383), 1, + sym_func_call, + STATE(1384), 1, + sym_regex, + STATE(1397), 1, + sym__builtin_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2518), 1, + sym_ns_qualified_name, + ACTIONS(1511), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [1876] = 8, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(719), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2019), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1446), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [54971] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, + ACTIONS(749), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(711), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(516), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [55046] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [1937] = 7, + ACTIONS(729), 1, + sym_concatenating_space, + ACTIONS(2059), 1, sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, + ACTIONS(2061), 1, + anon_sym_LT, + STATE(1366), 1, sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, + STATE(1445), 1, + sym_ns_qualified_name, + STATE(2513), 1, sym_namespace, - ACTIONS(456), 2, + ACTIONS(725), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1584), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [55121] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [1996] = 8, + ACTIONS(121), 1, + anon_sym_SLASH, + ACTIONS(2063), 1, + sym_identifier, + STATE(468), 1, + sym_func_call, + STATE(472), 1, + sym_regex, + STATE(492), 1, + sym__builtin_func_call, + STATE(2453), 1, + sym_ns_qualified_name, + STATE(2476), 1, + sym_namespace, + ACTIONS(2065), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2057] = 7, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2067), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(407), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [55196] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, + ACTIONS(2069), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(517), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [55271] = 19, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(328), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [2116] = 8, + ACTIONS(323), 1, anon_sym_SLASH, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(338), 1, - anon_sym_AT, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, + ACTIONS(2071), 1, + sym_identifier, + STATE(1694), 1, + sym_func_call, + STATE(1695), 1, + sym_regex, + STATE(1711), 1, + sym__builtin_func_call, + STATE(2476), 1, sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(334), 2, + STATE(2512), 1, + sym_ns_qualified_name, + ACTIONS(2073), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2177] = 8, + ACTIONS(1481), 1, + anon_sym_SLASH, + ACTIONS(2075), 1, + sym_identifier, + STATE(354), 1, + sym__builtin_func_call, + STATE(384), 1, + sym_regex, + STATE(387), 1, + sym_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2506), 1, + sym_ns_qualified_name, + ACTIONS(381), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2238] = 8, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(733), 1, + sym__if_else_separator, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(2081), 1, + sym_concatenating_space, + ACTIONS(2077), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(417), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [55348] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, + ACTIONS(2079), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1521), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1502), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [2299] = 8, + ACTIONS(1425), 1, + anon_sym_SLASH, + ACTIONS(2037), 1, + sym_identifier, + STATE(1657), 1, + sym__builtin_func_call, + STATE(1669), 1, sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, + STATE(1670), 1, sym_func_call, - sym_indirect_func_call, - [55423] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, + STATE(2476), 1, + sym_namespace, + STATE(2497), 1, + sym_ns_qualified_name, + ACTIONS(179), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2360] = 7, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(719), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2019), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(749), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(711), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(346), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [2419] = 8, + ACTIONS(1437), 1, + anon_sym_SLASH, + ACTIONS(2083), 1, + sym_identifier, + STATE(279), 1, + sym_func_call, + STATE(280), 1, + sym_regex, + STATE(286), 1, + sym__builtin_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2494), 1, + sym_ns_qualified_name, + ACTIONS(1453), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2480] = 8, + ACTIONS(1559), 1, + anon_sym_SLASH, + ACTIONS(2085), 1, + sym_identifier, + STATE(1551), 1, + sym__builtin_func_call, + STATE(1560), 1, sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, + STATE(1561), 1, sym_func_call, - sym_indirect_func_call, - [55498] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, + STATE(2476), 1, + sym_namespace, + STATE(2485), 1, + sym_ns_qualified_name, + ACTIONS(1575), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2541] = 8, + ACTIONS(1641), 1, + anon_sym_SLASH, + ACTIONS(2087), 1, sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, + STATE(407), 1, + sym__builtin_func_call, + STATE(444), 1, + sym_regex, + STATE(448), 1, + sym_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2491), 1, + sym_ns_qualified_name, + ACTIONS(139), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2602] = 8, + ACTIONS(589), 1, + anon_sym_SLASH, + ACTIONS(2043), 1, + sym_identifier, + STATE(1721), 1, + sym__builtin_func_call, + STATE(1723), 1, + sym_regex, + STATE(1724), 1, + sym_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2488), 1, + sym_ns_qualified_name, + ACTIONS(2045), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2663] = 8, + ACTIONS(1583), 1, anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1573), 2, + ACTIONS(2089), 1, + sym_identifier, + STATE(1618), 1, + sym_func_call, + STATE(1620), 1, + sym_regex, + STATE(1644), 1, + sym__builtin_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2515), 1, + sym_ns_qualified_name, + ACTIONS(85), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2724] = 8, + ACTIONS(1295), 1, + anon_sym_SLASH, + ACTIONS(2091), 1, + sym_identifier, + STATE(1892), 1, + sym_regex, + STATE(1893), 1, + sym__builtin_func_call, + STATE(1894), 1, + sym_func_call, + STATE(2372), 1, + sym_ns_qualified_name, + STATE(2476), 1, + sym_namespace, + ACTIONS(2093), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2785] = 5, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + sym__func_call, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(219), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [55573] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, + ACTIONS(713), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(502), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [2840] = 8, + ACTIONS(1355), 1, + anon_sym_SLASH, + ACTIONS(2027), 1, + sym_identifier, + STATE(1400), 1, + sym__builtin_func_call, + STATE(1424), 1, sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, + STATE(1429), 1, sym_func_call, - sym_indirect_func_call, - [55648] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, + STATE(2476), 1, + sym_namespace, + STATE(2500), 1, + sym_ns_qualified_name, + ACTIONS(1371), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [2901] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(767), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(765), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1453), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(503), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [55723] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [2954] = 8, + ACTIONS(393), 1, + anon_sym_SLASH, + ACTIONS(2071), 1, + sym_identifier, + STATE(1694), 1, + sym_func_call, + STATE(1695), 1, + sym_regex, + STATE(1711), 1, + sym__builtin_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2512), 1, + sym_ns_qualified_name, + ACTIONS(2073), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [3015] = 8, + ACTIONS(1329), 1, anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, + ACTIONS(2089), 1, + sym_identifier, + STATE(1618), 1, + sym_func_call, + STATE(1620), 1, + sym_regex, + STATE(1644), 1, + sym__builtin_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2515), 1, + sym_ns_qualified_name, + ACTIONS(85), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [3076] = 5, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + sym__func_call, + ACTIONS(719), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(711), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1472), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [55798] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1567), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [55873] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [3131] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(556), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [55948] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [3184] = 8, ACTIONS(1609), 1, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 2, + ACTIONS(2095), 1, + sym_identifier, + STATE(1855), 1, + sym_func_call, + STATE(1856), 1, + sym_regex, + STATE(1879), 1, + sym__builtin_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2482), 1, + sym_ns_qualified_name, + ACTIONS(1313), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [3245] = 8, + ACTIONS(1495), 1, + anon_sym_SLASH, + ACTIONS(2055), 1, + sym_identifier, + STATE(1383), 1, + sym_func_call, + STATE(1384), 1, + sym_regex, + STATE(1397), 1, + sym__builtin_func_call, + STATE(2476), 1, + sym_namespace, + STATE(2518), 1, + sym_ns_qualified_name, + ACTIONS(1511), 37, + anon_sym_and, + anon_sym_asort, + anon_sym_asorti, + anon_sym_bindtextdomain, + anon_sym_compl, + anon_sym_cos, + anon_sym_dcgettext, + anon_sym_dcngettext, + anon_sym_exp, + anon_sym_gensub, + anon_sym_gsub, + anon_sym_index, + anon_sym_int, + anon_sym_isarray, + anon_sym_length, + anon_sym_log, + anon_sym_lshift, + anon_sym_match, + anon_sym_mktime, + anon_sym_or, + anon_sym_patsplit, + anon_sym_rand, + anon_sym_rshift, + anon_sym_sin, + anon_sym_split, + anon_sym_sprintf, + anon_sym_sqrt, + anon_sym_srand, + anon_sym_strftime, + anon_sym_strtonum, + anon_sym_sub, + anon_sym_substr, + anon_sym_systime, + anon_sym_tolower, + anon_sym_toupper, + anon_sym_typeof, + anon_sym_xor, + [3306] = 4, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(439), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56023] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, + ACTIONS(713), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1573), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [3358] = 7, + ACTIONS(719), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2019), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(273), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56098] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, + ACTIONS(749), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(711), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1393), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1036), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56173] = 19, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(370), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [3416] = 2, + ACTIONS(771), 2, + sym_concatenating_space, + sym__func_call, + ACTIONS(769), 41, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(380), 1, - anon_sym_AT, - STATE(851), 1, - sym_ns_qualified_name, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(376), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1534), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [56250] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_LBRACK, + anon_sym_POUND, + [3464] = 5, + ACTIONS(719), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2035), 1, + sym__func_call, + ACTIONS(711), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1586), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56325] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(396), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56400] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [3518] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2097), 1, + anon_sym_LT, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(558), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56475] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [3572] = 6, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2067), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1471), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56550] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, + ACTIONS(2069), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [3628] = 7, + ACTIONS(733), 1, + sym__if_else_separator, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(2081), 1, + sym_concatenating_space, + ACTIONS(2077), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1641), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56625] = 11, - ACTIONS(1829), 1, + ACTIONS(2079), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, anon_sym_in, - ACTIONS(1831), 1, - anon_sym_AMP_AMP, - ACTIONS(1833), 1, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(1835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(906), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1819), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1825), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1821), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(904), 17, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [3686] = 7, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2103), 1, + sym_concatenating_space, + ACTIONS(2099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2101), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [3744] = 6, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(719), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2019), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(749), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -72566,1533 +127167,1155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [56686] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(711), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [3800] = 5, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2035), 1, + sym__func_call, + ACTIONS(2031), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(281), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56761] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, + ACTIONS(713), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(225), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56836] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [3854] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(767), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(765), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(437), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56911] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [3906] = 2, + ACTIONS(771), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(769), 41, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(547), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [56986] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_getline, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(1523), 1, - anon_sym_AT, - STATE(849), 1, - sym_ns_qualified_name, - STATE(1121), 1, - sym_array_ref, - STATE(1234), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1521), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_LBRACK, + anon_sym_POUND, + [3954] = 4, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(719), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(711), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1585), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57061] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1837), 1, - sym_identifier, - STATE(239), 1, - sym_ns_qualified_name, - STATE(274), 1, - sym_array_ref, - STATE(289), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(468), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1825), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [57138] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [4006] = 2, + ACTIONS(803), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(801), 41, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(443), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57213] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_LBRACK, + anon_sym_POUND, + [4054] = 3, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(767), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(765), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1465), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57288] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4104] = 7, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2105), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1464), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57363] = 19, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(194), 1, + ACTIONS(2107), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(204), 1, - anon_sym_AT, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(200), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(476), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [57440] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [4162] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(759), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(755), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(580), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57515] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4214] = 3, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1420), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57590] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4264] = 5, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2067), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1463), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57665] = 19, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(328), 1, + ACTIONS(2069), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(338), 1, - anon_sym_AT, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(467), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [57742] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [4317] = 2, + ACTIONS(937), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(935), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(453), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57817] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4364] = 2, + ACTIONS(845), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(843), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(454), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57892] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, - anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4411] = 4, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2031), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(433), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [57967] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(454), 1, + ACTIONS(713), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(464), 1, - anon_sym_AT, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4462] = 4, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2097), 1, + anon_sym_LT, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(460), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1686), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [58044] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4513] = 6, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2105), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2107), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(458), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [58119] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [4568] = 2, + ACTIONS(883), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(881), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(441), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [58194] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4615] = 3, + ACTIONS(759), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(755), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(456), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [58269] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4664] = 2, + ACTIONS(887), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(885), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(460), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [58344] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4711] = 3, + ACTIONS(767), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(765), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(462), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [58419] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4760] = 3, + ACTIONS(2109), 1, + sym_regex_flags, + ACTIONS(793), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(789), 39, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1462), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [58494] = 19, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(194), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4809] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(759), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2111), 1, + anon_sym_LT, + ACTIONS(755), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(204), 1, - anon_sym_AT, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(200), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(477), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [58571] = 19, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(328), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4862] = 3, + ACTIONS(2113), 1, + sym_regex_flags, + ACTIONS(799), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(795), 39, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(338), 1, - anon_sym_AT, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(334), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(420), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [58648] = 8, - ACTIONS(746), 1, anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(1725), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4911] = 2, + ACTIONS(891), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(889), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(686), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [4958] = 3, + ACTIONS(719), 2, sym_concatenating_space, + sym__if_else_separator, + ACTIONS(711), 19, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1085), 6, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_in, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -74101,606 +128324,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [58703] = 19, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(328), 1, - anon_sym_SLASH, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(338), 1, - anon_sym_AT, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(434), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [58780] = 19, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(194), 1, - anon_sym_SLASH, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(204), 1, - anon_sym_AT, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(200), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(487), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [58857] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(454), 1, - anon_sym_SLASH, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(464), 1, - anon_sym_AT, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(460), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1692), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [58934] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, - anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1463), 2, + [5007] = 3, + ACTIONS(719), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(711), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(582), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [59009] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [5056] = 6, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2103), 1, + sym_concatenating_space, + ACTIONS(2099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(584), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [59084] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + ACTIONS(2101), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(585), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [59159] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [5111] = 2, + ACTIONS(869), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(867), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(546), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [59234] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [5158] = 2, + ACTIONS(865), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(863), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(587), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [59309] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [5205] = 2, + ACTIONS(861), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(859), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(573), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [59384] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [5252] = 2, + ACTIONS(913), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(911), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(565), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [59459] = 5, - ACTIONS(910), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [5299] = 2, + ACTIONS(917), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1819), 2, + ACTIONS(915), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1821), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(908), 29, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [5346] = 2, + ACTIONS(929), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(927), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -74718,264 +128688,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [59508] = 19, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1827), 1, - sym_identifier, - STATE(619), 1, - sym_ns_qualified_name, - STATE(622), 1, - sym_array_ref, - STATE(668), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1485), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1826), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [59585] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1752), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [59662] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1767), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [59739] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, + anon_sym_POUND, + [5393] = 6, + ACTIONS(719), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2019), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(387), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [59814] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1839), 1, + ACTIONS(749), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(711), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, anon_sym_LT, - ACTIONS(714), 10, - anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - ACTIONS(716), 25, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [5448] = 2, + ACTIONS(933), 2, sym_concatenating_space, + sym__if_else_separator, + ACTIONS(931), 40, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -74986,125 +128775,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_RBRACK, - [59863] = 3, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1077), 1, - anon_sym_LBRACK, - ACTIONS(1773), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, anon_sym_POUND, - [59908] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1778), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [59985] = 3, - ACTIONS(860), 1, + [5495] = 2, + ACTIONS(941), 2, sym_concatenating_space, - ACTIONS(892), 1, - sym_regex_flags, - ACTIONS(856), 36, + sym__if_else_separator, + ACTIONS(939), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -75135,654 +128827,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [60030] = 19, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(194), 1, - anon_sym_SLASH, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(204), 1, - anon_sym_AT, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(200), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(520), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [60107] = 19, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(194), 1, - anon_sym_SLASH, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(204), 1, - anon_sym_AT, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(200), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(522), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [60184] = 19, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1811), 1, - anon_sym_AT, - STATE(448), 1, - sym_ns_qualified_name, - STATE(483), 1, - sym_array_ref, - STATE(519), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(23), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(567), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(604), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [60261] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1755), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [60338] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1758), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [60415] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1759), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [60492] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1776), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [60569] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(389), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [60644] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1790), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [60721] = 18, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1505), 1, - anon_sym_getline, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_AT, - STATE(221), 1, - sym_ns_qualified_name, - STATE(247), 1, - sym_array_ref, - STATE(265), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1509), 2, + anon_sym_POUND, + [5542] = 6, + ACTIONS(733), 1, + sym__if_else_separator, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2081), 1, + sym_concatenating_space, + ACTIONS(2077), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(392), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [60796] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + ACTIONS(2079), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1794), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [60873] = 3, - ACTIONS(852), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [5597] = 2, + ACTIONS(767), 2, sym_concatenating_space, - ACTIONS(902), 1, - sym_regex_flags, - ACTIONS(848), 36, + sym__if_else_separator, + ACTIONS(765), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -75813,967 +128921,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [60918] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, - anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1463), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(562), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [60993] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1769), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61070] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1814), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61147] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1377), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1461), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [61222] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1764), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61299] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1731), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61376] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1768), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61453] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1795), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61530] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1793), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61607] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_POUND, + [5644] = 2, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(919), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1791), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61684] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [5691] = 3, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2025), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1807), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61761] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, + ACTIONS(713), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1573), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(216), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [61836] = 19, - ACTIONS(1323), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [5740] = 7, + ACTIONS(2115), 1, sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, + ACTIONS(2117), 1, + anon_sym_LT, + STATE(1358), 1, sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1756), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61913] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, + STATE(1472), 1, sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, + STATE(2525), 1, sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1706), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61990] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + ACTIONS(729), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(725), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1733), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [62067] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [5797] = 2, + ACTIONS(853), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(851), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(569), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [62142] = 7, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(1779), 1, anon_sym_EQ, - ACTIONS(1777), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1781), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_POUND, + [5844] = 2, + ACTIONS(771), 1, + sym_concatenating_space, + ACTIONS(769), 41, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 18, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_LBRACK, + anon_sym_POUND, + [5891] = 2, + ACTIONS(833), 2, sym_concatenating_space, + sym__if_else_separator, + ACTIONS(831), 40, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -76782,534 +129188,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [62195] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [5938] = 2, + ACTIONS(837), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(835), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1809), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [62272] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [5985] = 5, + ACTIONS(719), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2019), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(749), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(711), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [6038] = 4, + ACTIONS(719), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(711), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1763), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [62349] = 19, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(370), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(380), 1, - anon_sym_AT, - STATE(851), 1, - sym_ns_qualified_name, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1696), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [62426] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [6089] = 2, + ACTIONS(925), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(923), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1460), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [62501] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6136] = 2, + ACTIONS(879), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(877), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1459), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [62576] = 19, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - sym_identifier, - ACTIONS(352), 1, - anon_sym_LPAREN, - ACTIONS(364), 1, - anon_sym_getline, - ACTIONS(370), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6183] = 2, + ACTIONS(849), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(847), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(374), 1, - anon_sym_BANG, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(380), 1, - anon_sym_AT, - STATE(851), 1, - sym_ns_qualified_name, - STATE(931), 1, - sym_array_ref, - STATE(1293), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(372), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(376), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1588), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1697), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [62653] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6230] = 2, + ACTIONS(803), 1, + sym_concatenating_space, + ACTIONS(801), 41, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1553), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(235), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [62728] = 18, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_getline, - ACTIONS(1567), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_LBRACK, + anon_sym_POUND, + [6277] = 2, + ACTIONS(879), 1, + sym_concatenating_space, + ACTIONS(877), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 1, - anon_sym_BANG, - ACTIONS(1575), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1569), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1573), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(197), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [62803] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6323] = 3, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(919), 37, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1813), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [62880] = 5, - ACTIONS(674), 1, - sym_concatenating_space, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1281), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1413), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77317,13 +129606,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 27, + anon_sym_POUND, + [6371] = 3, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2031), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(713), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -77345,528 +129644,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [62929] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6419] = 7, + ACTIONS(909), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + ACTIONS(2127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2121), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(907), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(219), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63004] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6475] = 2, + ACTIONS(845), 1, + sym_concatenating_space, + ACTIONS(843), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(644), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63079] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1599), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6521] = 5, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2105), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(712), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63154] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(2107), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(245), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63229] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [6573] = 11, + ACTIONS(2129), 1, + anon_sym_in, + ACTIONS(2131), 1, + anon_sym_QMARK, + ACTIONS(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(903), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + ACTIONS(2127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2121), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(901), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(197), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63304] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6637] = 2, + ACTIONS(929), 1, + sym_concatenating_space, + ACTIONS(927), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1625), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63379] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6683] = 12, + ACTIONS(2129), 1, + anon_sym_in, + ACTIONS(2131), 1, + anon_sym_QMARK, + ACTIONS(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(875), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + ACTIONS(2127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2137), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2121), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(871), 18, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(216), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63454] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6749] = 7, + ACTIONS(729), 1, + sym_concatenating_space, + ACTIONS(2139), 1, sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, + ACTIONS(2141), 1, + anon_sym_LT, + STATE(1366), 1, sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, + STATE(1502), 1, + sym_ns_qualified_name, + STATE(2513), 1, sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1377), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1454), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63529] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(725), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(235), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63604] = 5, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(1319), 1, - sym_concatenating_space, - ACTIONS(1261), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1317), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77874,13 +129992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 27, + [6805] = 2, + ACTIONS(891), 1, + sym_concatenating_space, + ACTIONS(889), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -77902,44 +130026,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [63653] = 8, - ACTIONS(746), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6851] = 3, + ACTIONS(719), 1, sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(1725), 2, + ACTIONS(711), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1085), 6, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 17, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [6899] = 3, + ACTIONS(719), 1, + sym_concatenating_space, + ACTIONS(711), 19, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + ACTIONS(713), 21, anon_sym_in, - anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -77948,735 +130126,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [63708] = 19, - ACTIONS(162), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(188), 1, - anon_sym_getline, - ACTIONS(194), 1, - anon_sym_SLASH, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(204), 1, - anon_sym_AT, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - STATE(243), 1, - sym_ns_qualified_name, - STATE(269), 1, - sym_array_ref, - STATE(292), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(200), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(426), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(492), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [63785] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(454), 1, - anon_sym_SLASH, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(464), 1, - anon_sym_AT, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(460), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1477), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [63862] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_getline, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(1451), 1, - anon_sym_BANG, - ACTIONS(1455), 1, - anon_sym_AT, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1449), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(513), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [63937] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, + [6947] = 2, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(919), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1630), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [64012] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [6993] = 2, + ACTIONS(917), 1, + sym_concatenating_space, + ACTIONS(915), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1451), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [64087] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7039] = 7, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2067), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1449), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [64162] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, + ACTIONS(2143), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1643), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [7095] = 5, + ACTIONS(719), 1, + sym_concatenating_space, + ACTIONS(2019), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1502), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [64237] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, + ACTIONS(749), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(711), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1528), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [64312] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [7147] = 2, + ACTIONS(767), 1, + sym_concatenating_space, + ACTIONS(765), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1643), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1471), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [64387] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7193] = 2, + ACTIONS(837), 1, + sym_concatenating_space, + ACTIONS(835), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1393), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(216), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [64462] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1393), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7239] = 5, + ACTIONS(733), 1, + sym__if_else_separator, + ACTIONS(2081), 1, + sym_concatenating_space, + ACTIONS(2077), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(197), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [64537] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, + ACTIONS(2079), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1635), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [64612] = 12, - ACTIONS(1829), 1, - anon_sym_in, - ACTIONS(1831), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, - ACTIONS(1833), 1, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [7291] = 11, + ACTIONS(2129), 1, + anon_sym_in, + ACTIONS(2131), 1, anon_sym_QMARK, - ACTIONS(1835), 1, + ACTIONS(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(914), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(916), 2, + ACTIONS(899), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1819), 2, + ACTIONS(2119), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1823), 2, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1825), 2, + ACTIONS(2127), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1821), 3, + ACTIONS(2123), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1817), 6, + ACTIONS(2121), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(912), 15, + ACTIONS(897), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -78686,4125 +130497,3165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [64675] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(454), 1, + anon_sym_POUND, + [7355] = 2, + ACTIONS(887), 1, + sym_concatenating_space, + ACTIONS(885), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(464), 1, - anon_sym_AT, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(460), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1592), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [64752] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(388), 1, - anon_sym_SLASH, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(396), 1, - anon_sym_AT, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7401] = 11, + ACTIONS(2129), 1, + anon_sym_in, + ACTIONS(2131), 1, + anon_sym_QMARK, + ACTIONS(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(895), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(392), 2, + ACTIONS(2127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2121), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(893), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1477), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [64829] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(448), 1, - anon_sym_getline, - ACTIONS(454), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7465] = 2, + ACTIONS(937), 1, + sym_concatenating_space, + ACTIONS(935), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(464), 1, - anon_sym_AT, - STATE(689), 1, - sym_ns_qualified_name, - STATE(840), 1, - sym_array_ref, - STATE(1131), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(460), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1490), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [64906] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(388), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7511] = 2, + ACTIONS(941), 1, + sym_concatenating_space, + ACTIONS(939), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(396), 1, - anon_sym_AT, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(392), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1520), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [64983] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(388), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7557] = 2, + ACTIONS(883), 1, + sym_concatenating_space, + ACTIONS(881), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(396), 1, - anon_sym_AT, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(392), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1490), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [65060] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7603] = 11, + ACTIONS(2129), 1, + anon_sym_in, + ACTIONS(2131), 1, + anon_sym_QMARK, + ACTIONS(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(829), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, + ACTIONS(2127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2121), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(809), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1435), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [65135] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7667] = 5, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, + sym_concatenating_space, + ACTIONS(2099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1448), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [65210] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, + ACTIONS(2101), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1440), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [65285] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [7719] = 2, + ACTIONS(833), 1, + sym_concatenating_space, + ACTIONS(831), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1553), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(245), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [65360] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7765] = 2, + ACTIONS(933), 1, + sym_concatenating_space, + ACTIONS(931), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1650), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [65435] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7811] = 4, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2067), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2069), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(225), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [65510] = 19, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(280), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [7861] = 2, + ACTIONS(869), 1, + sym_concatenating_space, + ACTIONS(867), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(288), 1, - anon_sym_AT, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(284), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1613), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [65587] = 19, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(280), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7907] = 2, + ACTIONS(853), 1, + sym_concatenating_space, + ACTIONS(851), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(288), 1, - anon_sym_AT, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(284), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1610), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [65664] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7953] = 2, + ACTIONS(865), 1, + sym_concatenating_space, + ACTIONS(863), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1679), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [65741] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_identifier, - ACTIONS(1459), 1, - anon_sym_getline, - ACTIONS(1461), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [7999] = 3, + ACTIONS(793), 1, + sym_concatenating_space, + ACTIONS(2145), 1, + sym_regex_flags, + ACTIONS(789), 39, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 1, - anon_sym_AT, - STATE(465), 1, - sym_ns_qualified_name, - STATE(488), 1, - sym_array_ref, - STATE(504), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(563), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [65816] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8047] = 3, + ACTIONS(799), 1, + sym_concatenating_space, + ACTIONS(2147), 1, + sym_regex_flags, + ACTIONS(795), 39, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(633), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [65891] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8095] = 2, + ACTIONS(913), 1, + sym_concatenating_space, + ACTIONS(911), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1435), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [65966] = 3, - ACTIONS(1039), 1, - anon_sym_LBRACK, - ACTIONS(1775), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8141] = 7, + ACTIONS(857), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1773), 36, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2121), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(855), 24, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_POUND, - [66011] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1409), 2, + [8197] = 8, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(733), 1, + sym__if_else_separator, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(2151), 1, + sym_concatenating_space, + ACTIONS(2077), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1642), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66086] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, + ACTIONS(2149), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1643), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66161] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [8255] = 5, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 32, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1644), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66236] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8307] = 2, + ACTIONS(849), 1, + sym_concatenating_space, + ACTIONS(847), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1621), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66311] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8353] = 5, + ACTIONS(841), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(839), 32, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1662), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66386] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8405] = 9, + ACTIONS(2129), 1, + anon_sym_in, + ACTIONS(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + ACTIONS(2127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2121), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66461] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8465] = 8, + ACTIONS(2129), 1, + anon_sym_in, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + ACTIONS(2127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2121), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 23, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(652), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66536] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8523] = 2, + ACTIONS(925), 1, + sym_concatenating_space, + ACTIONS(923), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1651), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66611] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8569] = 4, + ACTIONS(759), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2111), 1, + anon_sym_LT, + ACTIONS(755), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1683), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [66688] = 19, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8619] = 4, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2123), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1841), 1, - sym_identifier, - STATE(1063), 1, - sym_ns_qualified_name, - STATE(1222), 1, - sym_array_ref, - STATE(1306), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, + ACTIONS(919), 34, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1667), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1824), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [66765] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8669] = 6, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2119), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2125), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 2, + ACTIONS(2123), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2121), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1566), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66840] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8723] = 2, + ACTIONS(861), 1, + sym_concatenating_space, + ACTIONS(859), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1678), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [66917] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_BANG, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_getline, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_AT, - STATE(685), 1, - sym_ns_qualified_name, - STATE(835), 1, - sym_array_ref, - STATE(1218), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(456), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8769] = 8, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2153), 1, + anon_sym_in, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 2, + ACTIONS(2163), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 23, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1440), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [66992] = 18, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_getline, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(1427), 1, - anon_sym_BANG, - ACTIONS(1431), 1, - anon_sym_AT, - ACTIONS(1433), 1, - aux_sym_number_token1, - ACTIONS(1435), 1, - aux_sym_number_token2, - ACTIONS(1437), 1, - anon_sym_DQUOTE, - STATE(308), 1, - sym_ns_qualified_name, - STATE(313), 1, - sym_array_ref, - STATE(326), 1, - sym__binary_in, - STATE(344), 1, - sym_field_ref, - STATE(2209), 1, - sym_namespace, - ACTIONS(1425), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8826] = 6, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1429), 2, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1314), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [67067] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(388), 1, - anon_sym_SLASH, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(396), 1, - anon_sym_AT, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8879] = 11, + ACTIONS(899), 1, + sym_concatenating_space, + ACTIONS(2153), 1, + anon_sym_in, + ACTIONS(2165), 1, + anon_sym_QMARK, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(392), 2, + ACTIONS(2163), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(897), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1557), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [67144] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(388), 1, - anon_sym_SLASH, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(396), 1, - anon_sym_AT, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(392), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [8942] = 4, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2105), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1564), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [67221] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, + ACTIONS(2107), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [8991] = 7, + ACTIONS(909), 1, + sym_concatenating_space, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + ACTIONS(2163), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(907), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(640), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [67296] = 19, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1811), 1, - anon_sym_AT, - STATE(448), 1, - sym_ns_qualified_name, - STATE(483), 1, - sym_array_ref, - STATE(519), 1, - sym_field_ref, - STATE(588), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(19), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9046] = 11, + ACTIONS(903), 1, + sym_concatenating_space, + ACTIONS(2153), 1, + anon_sym_in, + ACTIONS(2165), 1, + anon_sym_QMARK, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(23), 2, + ACTIONS(2163), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(901), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(567), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(589), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [67373] = 18, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9109] = 7, + ACTIONS(2171), 1, sym_identifier, - ACTIONS(1639), 1, - anon_sym_getline, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(1645), 1, - anon_sym_AT, - STATE(629), 1, - sym_ns_qualified_name, - STATE(651), 1, + ACTIONS(2173), 1, + anon_sym_LT, + STATE(1518), 1, sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, + STATE(1520), 1, + sym_ns_qualified_name, + STATE(2498), 1, sym_namespace, - ACTIONS(248), 2, + ACTIONS(725), 10, + anon_sym_in, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1643), 2, + anon_sym_EQ, + ACTIONS(729), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1532), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [67448] = 18, - ACTIONS(378), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_getline, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(1551), 1, - anon_sym_BANG, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1549), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [9164] = 9, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2153), 1, + anon_sym_in, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1553), 2, + ACTIONS(2163), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1273), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [67523] = 19, - ACTIONS(224), 1, - sym_identifier, - ACTIONS(240), 1, - anon_sym_getline, - ACTIONS(256), 1, - aux_sym_number_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(280), 1, - anon_sym_SLASH, - ACTIONS(282), 1, - anon_sym_BANG, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(288), 1, - anon_sym_AT, - ACTIONS(290), 1, - aux_sym_number_token2, - ACTIONS(292), 1, - anon_sym_DQUOTE, - STATE(625), 1, - sym_ns_qualified_name, - STATE(665), 1, - sym_array_ref, - STATE(694), 1, - sym_field_ref, - STATE(1473), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(248), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9223] = 12, + ACTIONS(875), 1, + sym_concatenating_space, + ACTIONS(2153), 1, + anon_sym_in, + ACTIONS(2165), 1, + anon_sym_QMARK, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(284), 2, + ACTIONS(2163), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(871), 18, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1518), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1534), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [67600] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9288] = 5, + ACTIONS(2177), 1, sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, + STATE(2498), 1, sym_namespace, - ACTIONS(71), 2, + STATE(1518), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(725), 11, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, + anon_sym_EQ, + ACTIONS(729), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1503), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [67675] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1631), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [9339] = 7, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2181), 1, + sym_concatenating_space, + ACTIONS(2099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(290), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [67750] = 18, - ACTIONS(462), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_LPAREN, - ACTIONS(1385), 1, - anon_sym_getline, - ACTIONS(1387), 1, + ACTIONS(2179), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1391), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_AT, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1389), 2, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [9394] = 5, + ACTIONS(841), 1, + sym_concatenating_space, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1393), 2, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(839), 32, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(219), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [67825] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(388), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9445] = 6, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2067), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2143), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(396), 1, - anon_sym_AT, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - STATE(612), 1, - sym_ns_qualified_name, - STATE(630), 1, - sym_array_ref, - STATE(648), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(392), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [9498] = 7, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2105), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1493), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1446), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [67902] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(390), 1, - anon_sym_BANG, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(398), 1, - aux_sym_number_token2, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1373), 1, - anon_sym_getline, - ACTIONS(1375), 1, + ACTIONS(2183), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1379), 1, - anon_sym_AT, - STATE(613), 1, - sym_ns_qualified_name, - STATE(620), 1, - sym_array_ref, - STATE(646), 1, - sym_field_ref, - STATE(1419), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [9553] = 11, + ACTIONS(829), 1, + sym_concatenating_space, + ACTIONS(2153), 1, + anon_sym_in, + ACTIONS(2165), 1, + anon_sym_QMARK, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1377), 2, + ACTIONS(2163), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(809), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9616] = 4, + ACTIONS(2103), 1, + sym_concatenating_space, + ACTIONS(2099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1424), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [67977] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + ACTIONS(2101), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1742), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [68054] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [9665] = 7, + ACTIONS(857), 1, + sym_concatenating_space, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, + ACTIONS(2163), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(855), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1757), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [68131] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1599), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9720] = 7, + ACTIONS(733), 1, + sym__if_else_separator, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + sym__func_call, + ACTIONS(2151), 1, + sym_concatenating_space, + ACTIONS(2077), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(789), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68206] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(2149), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(787), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68281] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [9775] = 11, + ACTIONS(895), 1, + sym_concatenating_space, + ACTIONS(2153), 1, + anon_sym_in, + ACTIONS(2165), 1, + anon_sym_QMARK, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, + ACTIONS(2163), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2155), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(893), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(228), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68356] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9838] = 4, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2159), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, + ACTIONS(919), 34, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(784), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68431] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9887] = 5, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, + ACTIONS(2159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 32, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(782), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68506] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9938] = 3, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2157), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(919), 37, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(779), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68581] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [9985] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(775), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68656] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [10036] = 4, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(769), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68731] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1599), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [10084] = 10, + ACTIONS(711), 1, + anon_sym_COLON, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(766), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68806] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(719), 5, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, + ACTIONS(733), 12, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [10144] = 6, + ACTIONS(733), 1, + sym__if_else_separator, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(2151), 1, + sym_concatenating_space, + ACTIONS(2077), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(760), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [68881] = 19, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(328), 1, + ACTIONS(2149), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(338), 1, - anon_sym_AT, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(334), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [10196] = 6, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2181), 1, + sym_concatenating_space, + ACTIONS(2099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(508), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [68958] = 19, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_getline, - ACTIONS(328), 1, + ACTIONS(2179), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(332), 1, - anon_sym_BANG, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(338), 1, - anon_sym_AT, - ACTIONS(340), 1, - aux_sym_number_token1, - ACTIONS(342), 1, - aux_sym_number_token2, - ACTIONS(344), 1, - anon_sym_DQUOTE, - STATE(201), 1, - sym_ns_qualified_name, - STATE(233), 1, - sym_array_ref, - STATE(255), 1, - sym_field_ref, - STATE(399), 1, - sym__binary_in, - STATE(2249), 1, - sym_namespace, - ACTIONS(330), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(382), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(498), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [69035] = 18, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [10248] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(759), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_LT, + ACTIONS(755), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_BANG, - ACTIONS(1601), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1595), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1599), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(756), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69110] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [10298] = 6, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + sym__func_call, + ACTIONS(2195), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(713), 11, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(669), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69185] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, + anon_sym_EQ, + ACTIONS(733), 23, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [10350] = 7, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + sym__func_call, + ACTIONS(711), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + ACTIONS(733), 12, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(719), 13, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(666), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69260] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [10404] = 5, + ACTIONS(2015), 1, + anon_sym_LBRACK, + ACTIONS(733), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2067), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2143), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [10454] = 6, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + sym__func_call, + ACTIONS(2105), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(195), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69335] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + ACTIONS(2183), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1689), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [69412] = 18, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(198), 1, - anon_sym_BANG, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(210), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1607), 1, - anon_sym_getline, - ACTIONS(1609), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [10506] = 3, + ACTIONS(2109), 1, + sym_regex_flags, + ACTIONS(793), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(789), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 1, - anon_sym_AT, - STATE(226), 1, - sym_ns_qualified_name, - STATE(277), 1, - sym_array_ref, - STATE(285), 1, - sym_field_ref, - STATE(431), 1, - sym__binary_in, - STATE(2114), 1, - sym_namespace, - ACTIONS(196), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(459), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69487] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1495), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [10552] = 8, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2201), 1, + anon_sym_EQ, + ACTIONS(2199), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(650), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69562] = 19, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1327), 1, - anon_sym_getline, - ACTIONS(1329), 1, + ACTIONS(2203), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 10, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - anon_sym_AT, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - STATE(1132), 1, - sym_ns_qualified_name, - STATE(1223), 1, - sym_array_ref, - STATE(1338), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1335), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1659), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1771), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [69639] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, + ACTIONS(733), 17, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [10608] = 3, + ACTIONS(2113), 1, + sym_regex_flags, + ACTIONS(799), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(795), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(645), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69714] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1495), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [10654] = 9, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(667), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69789] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 10, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(664), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69864] = 18, - ACTIONS(1325), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_BANG, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(1341), 1, - aux_sym_number_token1, - ACTIONS(1343), 1, - aux_sym_number_token2, - ACTIONS(1345), 1, - anon_sym_DQUOTE, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - anon_sym_getline, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(1411), 1, - anon_sym_AT, - STATE(1111), 1, - sym_ns_qualified_name, - STATE(1241), 1, - sym_array_ref, - STATE(1327), 1, - sym_field_ref, - STATE(1648), 1, - sym__binary_in, - STATE(2209), 1, - sym_namespace, - ACTIONS(1331), 2, + ACTIONS(733), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [10712] = 11, + ACTIONS(2207), 1, + anon_sym_in, + ACTIONS(2211), 1, + anon_sym_QMARK, + ACTIONS(2221), 1, + anon_sym_AMP_AMP, + ACTIONS(2223), 1, + anon_sym_PIPE_PIPE, + ACTIONS(895), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1409), 2, + ACTIONS(2219), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2209), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(893), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1669), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [69939] = 18, - ACTIONS(394), 1, - anon_sym_DOLLAR, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1397), 1, - aux_sym_number_token1, - ACTIONS(1399), 1, - aux_sym_number_token2, - ACTIONS(1401), 1, - anon_sym_DQUOTE, - ACTIONS(1485), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_getline, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(1493), 1, - anon_sym_BANG, - ACTIONS(1497), 1, - anon_sym_AT, - STATE(168), 1, - sym_ns_qualified_name, - STATE(180), 1, - sym_array_ref, - STATE(207), 1, - sym__binary_in, - STATE(213), 1, - sym_field_ref, - STATE(2249), 1, - sym_namespace, - ACTIONS(1491), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [10773] = 12, + ACTIONS(2207), 1, + anon_sym_in, + ACTIONS(2211), 1, + anon_sym_QMARK, + ACTIONS(2221), 1, + anon_sym_AMP_AMP, + ACTIONS(2223), 1, + anon_sym_PIPE_PIPE, + ACTIONS(875), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2137), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, + ACTIONS(2219), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2209), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(871), 15, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(663), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [70014] = 18, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - STATE(184), 1, - sym_ns_qualified_name, - STATE(220), 1, - sym_array_ref, - STATE(251), 1, - sym__binary_in, - STATE(253), 1, - sym_field_ref, - STATE(2114), 1, - sym_namespace, - ACTIONS(1627), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [10836] = 11, + ACTIONS(2207), 1, + anon_sym_in, + ACTIONS(2211), 1, + anon_sym_QMARK, + ACTIONS(2221), 1, + anon_sym_AMP_AMP, + ACTIONS(2223), 1, + anon_sym_PIPE_PIPE, + ACTIONS(903), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(2219), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2209), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(901), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(245), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [70089] = 4, - ACTIONS(674), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [10897] = 5, + ACTIONS(733), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1267), 2, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2105), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1353), 7, + ACTIONS(2183), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -82812,7 +133663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 27, + ACTIONS(713), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82821,17 +133672,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [10946] = 8, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2187), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(733), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [11001] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(755), 11, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(759), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [11048] = 6, + ACTIONS(711), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + sym__func_call, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(733), 12, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -82840,40 +133811,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70136] = 5, - ACTIONS(1843), 1, - sym_identifier, - STATE(2258), 1, - sym_namespace, - ACTIONS(682), 2, + ACTIONS(719), 14, sym_concatenating_space, - sym__if_else_separator, - STATE(1406), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 31, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [11099] = 7, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2201), 1, + anon_sym_EQ, + ACTIONS(2199), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2203), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(733), 18, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -82882,111 +133871,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [70184] = 2, - ACTIONS(1847), 1, + anon_sym_RBRACK, + [11152] = 7, + ACTIONS(857), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1845), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70226] = 2, - ACTIONS(1851), 1, - sym__if_else_separator, - ACTIONS(1849), 36, + ACTIONS(2219), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2209), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(855), 21, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70268] = 7, - ACTIONS(746), 1, anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(686), 6, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1085), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + [11205] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2225), 1, anon_sym_LT, + ACTIONS(755), 10, + anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -82995,7 +133935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, + anon_sym_EQ, + ACTIONS(759), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_in, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -83008,24 +133953,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70320] = 7, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1725), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1085), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACK, + [11254] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(765), 11, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -83035,12 +133978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 17, + anon_sym_EQ, + ACTIONS(767), 25, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_in, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -83052,169 +133996,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_RBRACK, - [70372] = 2, - ACTIONS(1855), 1, + [11301] = 5, + ACTIONS(921), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1853), 36, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 29, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70414] = 3, - ACTIONS(1855), 1, - sym__if_else_separator, - ACTIONS(1857), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [11350] = 8, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2187), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(719), 6, + sym_concatenating_space, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1853), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70458] = 2, - ACTIONS(1861), 1, - sym__if_else_separator, - ACTIONS(1859), 36, + ACTIONS(733), 12, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11405] = 3, + ACTIONS(793), 1, + sym_concatenating_space, + ACTIONS(2145), 1, + sym_regex_flags, + ACTIONS(789), 36, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70500] = 12, - ACTIONS(916), 1, - sym_concatenating_space, - ACTIONS(1863), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [11450] = 8, + ACTIONS(2207), 1, anon_sym_in, - ACTIONS(1867), 1, - anon_sym_QMARK, - ACTIONS(1877), 1, - anon_sym_AMP_AMP, - ACTIONS(1879), 1, - anon_sym_PIPE_PIPE, - ACTIONS(922), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1869), 2, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2213), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1875), 2, + ACTIONS(2219), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1871), 3, + ACTIONS(2215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, + ACTIONS(2209), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(912), 15, + ACTIONS(919), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -83224,255 +134185,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [70562] = 2, - ACTIONS(1883), 1, + [11505] = 9, + ACTIONS(2207), 1, + anon_sym_in, + ACTIONS(2221), 1, + anon_sym_AMP_AMP, + ACTIONS(921), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1881), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70604] = 3, - ACTIONS(1883), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1881), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(2219), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2215), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70648] = 2, - ACTIONS(1887), 1, - sym__if_else_separator, - ACTIONS(1885), 36, + anon_sym_PERCENT, + ACTIONS(2209), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 19, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70690] = 2, - ACTIONS(1891), 1, - sym__if_else_separator, - ACTIONS(1889), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [11562] = 5, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + sym__func_call, + ACTIONS(2195), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70732] = 3, - ACTIONS(1891), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1889), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(713), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70776] = 2, - ACTIONS(1895), 1, - sym__if_else_separator, - ACTIONS(1893), 36, + anon_sym_EQ, + ACTIONS(733), 24, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [11611] = 4, + ACTIONS(759), 1, + sym_concatenating_space, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, + anon_sym_LT, + ACTIONS(755), 35, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70818] = 4, - ACTIONS(674), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [11658] = 4, + ACTIONS(733), 2, sym_concatenating_space, - ACTIONS(1281), 2, + sym__if_else_separator, + ACTIONS(2067), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1413), 7, + ACTIONS(2143), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83480,7 +134335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 27, + ACTIONS(713), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83508,263 +134363,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70864] = 2, - ACTIONS(1899), 1, + [11705] = 11, + ACTIONS(2207), 1, + anon_sym_in, + ACTIONS(2211), 1, + anon_sym_QMARK, + ACTIONS(2221), 1, + anon_sym_AMP_AMP, + ACTIONS(2223), 1, + anon_sym_PIPE_PIPE, + ACTIONS(829), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1897), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70906] = 2, - ACTIONS(1903), 1, - sym__if_else_separator, - ACTIONS(1901), 36, + ACTIONS(2219), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2209), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(809), 17, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70948] = 2, - ACTIONS(1907), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [11766] = 5, + ACTIONS(841), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1905), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [70990] = 2, - ACTIONS(1911), 1, - sym__if_else_separator, - ACTIONS(1909), 36, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(839), 29, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71032] = 3, - ACTIONS(1911), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [11815] = 6, + ACTIONS(921), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1857), 3, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2209), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 23, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1909), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71076] = 2, - ACTIONS(1915), 1, - sym__if_else_separator, - ACTIONS(1913), 36, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [11866] = 3, + ACTIONS(799), 1, + sym_concatenating_space, + ACTIONS(2147), 1, + sym_regex_flags, + ACTIONS(795), 36, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71118] = 6, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1779), 1, anon_sym_EQ, - ACTIONS(1777), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [11911] = 5, + ACTIONS(733), 1, + sym__if_else_separator, + ACTIONS(2151), 1, + sym_concatenating_space, + ACTIONS(2077), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1781), 6, + ACTIONS(2149), 7, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + ACTIONS(713), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11960] = 2, + ACTIONS(769), 10, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -83774,8 +134599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 18, + anon_sym_EQ, + ACTIONS(771), 28, sym_concatenating_space, + sym__func_call, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -83792,1104 +134619,748 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [71168] = 3, - ACTIONS(1915), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1913), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71212] = 2, - ACTIONS(1919), 1, - sym__if_else_separator, - ACTIONS(1917), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71254] = 3, - ACTIONS(1919), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1917), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71298] = 2, - ACTIONS(1923), 1, - sym__if_else_separator, - ACTIONS(1921), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71340] = 3, - ACTIONS(1923), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + [12003] = 7, + ACTIONS(909), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1921), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71384] = 2, - ACTIONS(1927), 1, - sym__if_else_separator, - ACTIONS(1925), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(2219), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2215), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71426] = 3, - ACTIONS(1927), 1, - sym__if_else_separator, - ACTIONS(1857), 3, + anon_sym_PERCENT, + ACTIONS(2209), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(907), 21, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1925), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71470] = 2, - ACTIONS(1931), 1, - sym__if_else_separator, - ACTIONS(1929), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [12056] = 5, + ACTIONS(2033), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + sym_concatenating_space, + ACTIONS(2099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71512] = 2, - ACTIONS(1935), 1, - sym__if_else_separator, - ACTIONS(1933), 36, + ACTIONS(2179), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71554] = 2, - ACTIONS(1935), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [12105] = 11, + ACTIONS(2207), 1, + anon_sym_in, + ACTIONS(2211), 1, + anon_sym_QMARK, + ACTIONS(2221), 1, + anon_sym_AMP_AMP, + ACTIONS(2223), 1, + anon_sym_PIPE_PIPE, + ACTIONS(899), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1933), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71596] = 2, - ACTIONS(1939), 1, - sym__if_else_separator, - ACTIONS(1937), 36, + ACTIONS(2219), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2209), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(897), 17, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71638] = 2, - ACTIONS(1943), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [12166] = 4, + ACTIONS(921), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1941), 36, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71680] = 3, - ACTIONS(1943), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [12213] = 3, + ACTIONS(921), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1857), 3, + ACTIONS(2213), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(919), 34, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1941), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [12258] = 5, + ACTIONS(2227), 1, sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71724] = 2, - ACTIONS(1947), 1, + STATE(2524), 1, + sym_namespace, + ACTIONS(729), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1945), 36, + STATE(1603), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(725), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [12306] = 4, + ACTIONS(733), 1, + sym_concatenating_space, + ACTIONS(2105), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71766] = 3, - ACTIONS(1947), 1, - sym__if_else_separator, - ACTIONS(1857), 3, + ACTIONS(2183), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1945), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [12352] = 4, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2195), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71810] = 2, - ACTIONS(1951), 1, - sym__if_else_separator, - ACTIONS(1949), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(713), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71852] = 3, - ACTIONS(1951), 1, - sym__if_else_separator, - ACTIONS(1857), 3, + anon_sym_EQ, + ACTIONS(733), 24, + sym_concatenating_space, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1949), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [12398] = 3, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(755), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(759), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71896] = 2, - ACTIONS(1955), 1, - sym__if_else_separator, - ACTIONS(1953), 36, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [12442] = 7, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2187), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(719), 6, + sym_concatenating_space, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71938] = 3, - ACTIONS(1955), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1953), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(733), 12, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [12494] = 4, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2225), 1, + anon_sym_LT, + ACTIONS(755), 9, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(759), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [71982] = 2, - ACTIONS(1959), 1, - sym__if_else_separator, - ACTIONS(1957), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [12540] = 3, + ACTIONS(2229), 1, + sym_regex_flags, + ACTIONS(795), 11, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(799), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72024] = 3, - ACTIONS(1959), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1957), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [12584] = 3, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(765), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(767), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72068] = 2, - ACTIONS(1963), 1, - sym__if_else_separator, - ACTIONS(1961), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [12628] = 3, + ACTIONS(2231), 1, + sym_regex_flags, + ACTIONS(789), 11, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(793), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72110] = 3, - ACTIONS(1963), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1961), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [12672] = 6, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + anon_sym_EQ, + ACTIONS(2199), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72154] = 2, - ACTIONS(1967), 1, - sym__if_else_separator, - ACTIONS(1965), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(2203), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72196] = 2, - ACTIONS(1077), 1, - anon_sym_LBRACK, - ACTIONS(1773), 36, + ACTIONS(733), 18, + sym_concatenating_space, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [12722] = 2, + ACTIONS(801), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(803), 27, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72238] = 3, - ACTIONS(1967), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1965), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + [12764] = 4, + ACTIONS(2181), 1, + sym_concatenating_space, + ACTIONS(2099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72282] = 2, - ACTIONS(1971), 1, - sym__if_else_separator, - ACTIONS(1969), 36, + ACTIONS(2179), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 27, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72324] = 4, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1839), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [12810] = 2, + ACTIONS(769), 10, anon_sym_LT, - ACTIONS(714), 9, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -84899,7 +135370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(716), 26, + ACTIONS(771), 27, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -84925,142 +135396,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - [72370] = 2, - ACTIONS(1975), 1, - sym__if_else_separator, - ACTIONS(1973), 36, + [12852] = 5, + ACTIONS(841), 1, + sym_concatenating_space, + ACTIONS(2233), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2235), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(839), 29, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72412] = 3, - ACTIONS(1975), 1, - sym__if_else_separator, - ACTIONS(1857), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [12900] = 7, + ACTIONS(857), 1, + sym_concatenating_space, + ACTIONS(2233), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2241), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2235), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2239), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(855), 21, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1973), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [12952] = 5, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2233), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + ACTIONS(2235), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72456] = 2, - ACTIONS(1979), 1, - sym__if_else_separator, - ACTIONS(1977), 36, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [13000] = 3, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2233), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(919), 34, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72498] = 5, - ACTIONS(910), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [13044] = 4, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(1869), 2, + ACTIONS(2233), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1871), 3, + ACTIONS(2235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(908), 29, + ACTIONS(919), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85073,6 +135593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -85090,402 +135612,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [72546] = 3, - ACTIONS(1979), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1977), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72590] = 2, - ACTIONS(1983), 1, - sym__if_else_separator, - ACTIONS(1981), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72632] = 3, - ACTIONS(1983), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1981), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72676] = 2, - ACTIONS(1987), 1, - sym__if_else_separator, - ACTIONS(1985), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + [13090] = 6, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2233), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72718] = 3, - ACTIONS(1987), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1985), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(2235), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72762] = 2, - ACTIONS(1991), 1, - sym__if_else_separator, - ACTIONS(1989), 36, + anon_sym_PERCENT, + ACTIONS(2239), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 23, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72804] = 3, - ACTIONS(1991), 1, - sym__if_else_separator, - ACTIONS(1857), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1989), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [13140] = 8, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2243), 1, + anon_sym_in, + ACTIONS(2233), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72848] = 2, - ACTIONS(1995), 1, - sym__if_else_separator, - ACTIONS(1993), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(2241), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2235), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72890] = 2, - ACTIONS(1999), 1, - sym__if_else_separator, - ACTIONS(1997), 36, + anon_sym_PERCENT, + ACTIONS(2239), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 20, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [72932] = 11, - ACTIONS(906), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [13194] = 9, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(1863), 1, + ACTIONS(2243), 1, anon_sym_in, - ACTIONS(1867), 1, - anon_sym_QMARK, - ACTIONS(1877), 1, + ACTIONS(2245), 1, anon_sym_AMP_AMP, - ACTIONS(1879), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1869), 2, + ACTIONS(2233), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1875), 2, + ACTIONS(2241), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1871), 3, + ACTIONS(2235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, + ACTIONS(2239), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(904), 17, + ACTIONS(919), 19, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85494,6 +135738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -85503,46 +135749,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [72992] = 11, - ACTIONS(900), 1, + [13250] = 7, + ACTIONS(909), 1, sym_concatenating_space, - ACTIONS(1863), 1, - anon_sym_in, - ACTIONS(1867), 1, - anon_sym_QMARK, - ACTIONS(1877), 1, - anon_sym_AMP_AMP, - ACTIONS(1879), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1869), 2, + ACTIONS(2233), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1875), 2, + ACTIONS(2241), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1871), 3, + ACTIONS(2235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, + ACTIONS(2239), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(898), 17, + ACTIONS(907), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -85552,38 +135794,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73052] = 11, - ACTIONS(896), 1, - sym_concatenating_space, - ACTIONS(1863), 1, + [13302] = 5, + ACTIONS(711), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(733), 12, anon_sym_in, - ACTIONS(1867), 1, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(1877), 1, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(719), 14, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [13350] = 11, + ACTIONS(903), 1, + sym_concatenating_space, + ACTIONS(2243), 1, + anon_sym_in, + ACTIONS(2245), 1, anon_sym_AMP_AMP, - ACTIONS(1879), 1, + ACTIONS(2247), 1, + anon_sym_QMARK, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, - ACTIONS(1869), 2, + ACTIONS(2233), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1875), 2, + ACTIONS(2241), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1871), 3, + ACTIONS(2235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, + ACTIONS(2239), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(894), 17, + ACTIONS(901), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85601,38 +135886,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73112] = 11, - ACTIONS(886), 1, + [13410] = 11, + ACTIONS(899), 1, sym_concatenating_space, - ACTIONS(1863), 1, + ACTIONS(2243), 1, anon_sym_in, - ACTIONS(1867), 1, - anon_sym_QMARK, - ACTIONS(1877), 1, + ACTIONS(2245), 1, anon_sym_AMP_AMP, - ACTIONS(1879), 1, + ACTIONS(2247), 1, + anon_sym_QMARK, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, - ACTIONS(1869), 2, + ACTIONS(2233), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1875), 2, + ACTIONS(2241), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1871), 3, + ACTIONS(2235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, + ACTIONS(2239), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 17, + ACTIONS(897), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85650,42 +135935,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73172] = 7, - ACTIONS(890), 1, + [13470] = 11, + ACTIONS(895), 1, sym_concatenating_space, - ACTIONS(1869), 2, + ACTIONS(2243), 1, + anon_sym_in, + ACTIONS(2245), 1, + anon_sym_AMP_AMP, + ACTIONS(2247), 1, + anon_sym_QMARK, + ACTIONS(2249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1875), 2, + ACTIONS(2241), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1871), 3, + ACTIONS(2235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, + ACTIONS(2239), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(888), 21, + ACTIONS(893), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -85695,34 +135984,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73224] = 9, - ACTIONS(780), 1, + [13530] = 11, + ACTIONS(829), 1, sym_concatenating_space, - ACTIONS(1863), 1, + ACTIONS(2243), 1, anon_sym_in, - ACTIONS(1877), 1, + ACTIONS(2245), 1, anon_sym_AMP_AMP, - ACTIONS(1869), 2, + ACTIONS(2247), 1, + anon_sym_QMARK, + ACTIONS(2249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2233), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1875), 2, + ACTIONS(2241), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1871), 3, + ACTIONS(2235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, + ACTIONS(2239), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 19, + ACTIONS(809), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85731,8 +136024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -85742,43 +136033,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73280] = 8, - ACTIONS(780), 1, + [13590] = 7, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2187), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(733), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [13642] = 12, + ACTIONS(875), 1, sym_concatenating_space, - ACTIONS(1863), 1, + ACTIONS(2243), 1, anon_sym_in, - ACTIONS(1869), 2, + ACTIONS(2245), 1, + anon_sym_AMP_AMP, + ACTIONS(2247), 1, + anon_sym_QMARK, + ACTIONS(2249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2233), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1875), 2, + ACTIONS(2241), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1871), 3, + ACTIONS(2235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, + ACTIONS(2239), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 20, + ACTIONS(871), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -85788,75 +136128,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73334] = 6, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1869), 2, + [13704] = 13, + ACTIONS(2251), 1, + anon_sym_in, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2269), 1, + anon_sym_AMP_AMP, + ACTIONS(2271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(893), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1871), 3, + ACTIONS(2267), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2265), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 23, + ACTIONS(895), 15, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [13767] = 7, + ACTIONS(2273), 1, + sym_identifier, + ACTIONS(2275), 1, + anon_sym_LT, + STATE(1603), 1, + sym_array_ref, + STATE(1615), 1, + sym_ns_qualified_name, + STATE(2524), 1, + sym_namespace, + ACTIONS(729), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(725), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_POUND, + [13818] = 13, + ACTIONS(2251), 1, + anon_sym_in, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2269), 1, + anon_sym_AMP_AMP, + ACTIONS(2271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(809), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2263), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2267), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2265), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(829), 15, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73384] = 4, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1869), 2, + anon_sym_RBRACK, + [13881] = 3, + ACTIONS(2195), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(713), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(778), 31, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(733), 24, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [13924] = 4, + ACTIONS(711), 1, + anon_sym_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(733), 12, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -85865,39 +136338,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(719), 14, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73430] = 3, - ACTIONS(780), 1, + anon_sym_RBRACK, + [13969] = 6, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2187), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(719), 6, sym_concatenating_space, - ACTIONS(1869), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 34, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(733), 12, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -85906,36 +136396,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [73474] = 4, - ACTIONS(1441), 1, + [14018] = 5, + ACTIONS(729), 1, sym_concatenating_space, - ACTIONS(1287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1439), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 27, + ACTIONS(2277), 1, + sym_identifier, + STATE(2510), 1, + sym_namespace, + STATE(1639), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(725), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -85957,32 +136437,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [73520] = 5, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(1869), 2, + anon_sym_POUND, + [14065] = 2, + ACTIONS(877), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(778), 29, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(879), 26, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + anon_sym_RPAREN, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -85993,63 +136470,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73568] = 7, - ACTIONS(874), 1, - sym_concatenating_space, - ACTIONS(1869), 2, + anon_sym_RBRACK, + [14106] = 13, + ACTIONS(2251), 1, + anon_sym_in, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(1873), 2, + ACTIONS(2269), 1, + anon_sym_AMP_AMP, + ACTIONS(2271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(901), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1875), 2, + ACTIONS(2267), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1871), 3, + ACTIONS(2261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1865), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2265), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(862), 21, + ACTIONS(903), 15, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [73620] = 3, - ACTIONS(1143), 1, - sym_regex_flags, - ACTIONS(848), 11, - anon_sym_in, + anon_sym_RBRACK, + [14169] = 2, + ACTIONS(889), 10, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -86060,11 +136539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(852), 25, + ACTIONS(891), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -86086,11 +136566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [73664] = 3, - ACTIONS(1145), 1, - sym_regex_flags, - ACTIONS(856), 11, - anon_sym_in, + [14210] = 2, + ACTIONS(881), 10, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -86101,11 +136578,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(860), 25, + ACTIONS(883), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -86127,42 +136605,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [73708] = 9, - ACTIONS(2003), 1, + [14251] = 4, + ACTIONS(711), 1, + anon_sym_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(733), 12, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(719), 14, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [14296] = 11, + ACTIONS(2251), 1, + anon_sym_in, + ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2005), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(888), 2, + ACTIONS(2269), 1, + anon_sym_AMP_AMP, + ACTIONS(919), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2001), 2, + ACTIONS(2253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2009), 2, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2013), 2, + ACTIONS(2267), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2007), 3, + ACTIONS(2261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2011), 4, + ACTIONS(2265), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(890), 19, + ACTIONS(921), 17, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -86173,113 +136694,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [73763] = 1, - ACTIONS(1961), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [73802] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1881), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [73843] = 4, - ACTIONS(2003), 1, + [14355] = 10, + ACTIONS(2251), 1, + anon_sym_in, + ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2005), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(778), 9, + ACTIONS(919), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2253), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2263), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2267), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - ACTIONS(780), 25, + ACTIONS(2265), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(921), 18, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -86291,23 +136741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [73888] = 5, - ACTIONS(2003), 1, + [14412] = 2, + ACTIONS(765), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2005), 1, - anon_sym_STAR_STAR, - ACTIONS(2007), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(778), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(780), 25, + ACTIONS(767), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -86316,6 +136762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -86333,30 +136780,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [73935] = 8, - ACTIONS(2003), 1, + [14453] = 8, + ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2005), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(778), 2, + ACTIONS(919), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2001), 2, + ACTIONS(2253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2009), 2, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2007), 3, + ACTIONS(2261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2011), 4, + ACTIONS(2265), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(780), 21, + ACTIONS(921), 21, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -86378,103 +136825,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [73988] = 1, - ACTIONS(1889), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74027] = 1, - ACTIONS(1989), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + [14506] = 2, + ACTIONS(939), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74066] = 6, - ACTIONS(746), 1, anon_sym_EQ, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(686), 6, + ACTIONS(941), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1085), 6, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACK, + [14547] = 2, + ACTIONS(931), 10, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -86484,8 +136875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, + anon_sym_EQ, + ACTIONS(933), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -86497,42 +136894,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [74115] = 10, - ACTIONS(2003), 1, - anon_sym_CARET, - ACTIONS(2005), 1, - anon_sym_STAR_STAR, - ACTIONS(2017), 1, - anon_sym_in, - ACTIONS(778), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2001), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [14588] = 2, + ACTIONS(927), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(2009), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2013), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2007), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2011), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(780), 18, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(929), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -86544,44 +136942,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [74172] = 11, - ACTIONS(2003), 1, - anon_sym_CARET, - ACTIONS(2005), 1, - anon_sym_STAR_STAR, - ACTIONS(2017), 1, - anon_sym_in, - ACTIONS(2019), 1, - anon_sym_AMP_AMP, - ACTIONS(778), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2001), 2, + [14629] = 2, + ACTIONS(915), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(2009), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2013), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2007), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2011), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(780), 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(917), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -86592,47 +136981,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [74231] = 13, - ACTIONS(2003), 1, - anon_sym_CARET, - ACTIONS(2005), 1, - anon_sym_STAR_STAR, - ACTIONS(2017), 1, - anon_sym_in, - ACTIONS(2019), 1, - anon_sym_AMP_AMP, - ACTIONS(2021), 1, - anon_sym_QMARK, - ACTIONS(2023), 1, - anon_sym_PIPE_PIPE, - ACTIONS(876), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2001), 2, + [14670] = 2, + ACTIONS(911), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(2009), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2013), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2007), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2011), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(886), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(913), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -86642,47 +137020,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [74294] = 13, - ACTIONS(2003), 1, + [14711] = 5, + ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2005), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(2017), 1, - anon_sym_in, - ACTIONS(2019), 1, - anon_sym_AMP_AMP, - ACTIONS(2021), 1, - anon_sym_QMARK, - ACTIONS(2023), 1, - anon_sym_PIPE_PIPE, - ACTIONS(894), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2001), 2, + ACTIONS(2261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(2009), 2, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2013), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2007), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2011), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(896), 15, + anon_sym_EQ, + ACTIONS(921), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -86692,47 +137062,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [74357] = 13, - ACTIONS(2003), 1, + [14758] = 15, + ACTIONS(871), 1, + anon_sym_EQ, + ACTIONS(2251), 1, + anon_sym_in, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2005), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(2017), 1, - anon_sym_in, - ACTIONS(2019), 1, + ACTIONS(2269), 1, anon_sym_AMP_AMP, - ACTIONS(2021), 1, - anon_sym_QMARK, - ACTIONS(2023), 1, + ACTIONS(2271), 1, anon_sym_PIPE_PIPE, - ACTIONS(898), 2, + ACTIONS(2279), 1, anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2001), 2, + ACTIONS(2281), 1, + anon_sym_PIPE_AMP, + ACTIONS(2253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2009), 2, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2013), 2, + ACTIONS(2267), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2007), 3, + ACTIONS(2261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2011), 4, + ACTIONS(2265), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(900), 15, + ACTIONS(875), 14, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -86742,85 +137114,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [74420] = 1, - ACTIONS(1881), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74459] = 13, - ACTIONS(2003), 1, - anon_sym_CARET, - ACTIONS(2005), 1, - anon_sym_STAR_STAR, - ACTIONS(2017), 1, - anon_sym_in, - ACTIONS(2019), 1, - anon_sym_AMP_AMP, - ACTIONS(2021), 1, - anon_sym_QMARK, - ACTIONS(2023), 1, - anon_sym_PIPE_PIPE, - ACTIONS(904), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2001), 2, + [14825] = 2, + ACTIONS(859), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(2009), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2013), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2007), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2011), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(861), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(906), 15, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -86830,24 +137153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [74522] = 6, - ACTIONS(2003), 1, + [14866] = 2, + ACTIONS(831), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2005), 1, - anon_sym_STAR_STAR, - ACTIONS(2009), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2007), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(908), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(910), 25, + ACTIONS(833), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -86856,6 +137174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -86873,49 +137192,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [74571] = 15, - ACTIONS(912), 1, - anon_sym_EQ, - ACTIONS(1169), 1, - anon_sym_PIPE, - ACTIONS(1171), 1, - anon_sym_PIPE_AMP, - ACTIONS(2003), 1, + [14907] = 6, + ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2005), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(2017), 1, - anon_sym_in, - ACTIONS(2019), 1, - anon_sym_AMP_AMP, - ACTIONS(2021), 1, - anon_sym_QMARK, - ACTIONS(2023), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2001), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2009), 2, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2013), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2007), 3, + ACTIONS(2261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2011), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(916), 14, + ACTIONS(839), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(841), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -86925,148 +137235,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [74638] = 1, - ACTIONS(1885), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + [14956] = 5, + ACTIONS(2201), 1, + anon_sym_EQ, + ACTIONS(2199), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74677] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1889), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(2203), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74718] = 1, - ACTIONS(1893), 36, + ACTIONS(733), 18, + sym_concatenating_space, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74757] = 9, - ACTIONS(2003), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [15003] = 9, + ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2005), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(862), 2, + ACTIONS(855), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2001), 2, + ACTIONS(2253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2009), 2, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2013), 2, + ACTIONS(2267), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2007), 3, + ACTIONS(2261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2011), 4, + ACTIONS(2265), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(874), 19, + ACTIONS(857), 19, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -87086,288 +137323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [74812] = 1, - ACTIONS(1849), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74851] = 1, - ACTIONS(1897), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74890] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1853), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74931] = 1, - ACTIONS(1905), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [74970] = 1, - ACTIONS(1909), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75009] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1909), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75050] = 1, - ACTIONS(1913), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75089] = 5, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1777), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1781), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, + [15058] = 2, + ACTIONS(863), 10, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -87377,7 +137334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 18, + anon_sym_EQ, + ACTIONS(865), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -87395,308 +137353,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [75136] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1913), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75177] = 1, - ACTIONS(1917), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75216] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1917), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75257] = 1, - ACTIONS(1993), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75296] = 1, - ACTIONS(1997), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75335] = 1, - ACTIONS(1859), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75374] = 1, - ACTIONS(1921), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75413] = 5, - ACTIONS(682), 1, - sym__if_else_separator, - ACTIONS(2025), 1, - sym_identifier, - STATE(2257), 1, - sym_namespace, - STATE(1430), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15099] = 2, + ACTIONS(867), 10, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + ACTIONS(869), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -87705,100 +137392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [75460] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1921), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75501] = 1, - ACTIONS(1925), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75540] = 6, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1725), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1085), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACK, + [15140] = 2, + ACTIONS(851), 10, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -87808,7 +137412,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 17, + anon_sym_EQ, + ACTIONS(853), 26, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -87825,134 +137431,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_RBRACK, - [75589] = 1, - ACTIONS(1845), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + [15181] = 13, + ACTIONS(2251), 1, + anon_sym_in, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2269), 1, + anon_sym_AMP_AMP, + ACTIONS(2271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(897), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + ACTIONS(2267), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2265), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(899), 15, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75628] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1925), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15244] = 6, + ACTIONS(2257), 1, + anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + ACTIONS(2261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(921), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75669] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1989), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15293] = 4, + ACTIONS(2257), 1, + anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(919), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(921), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75710] = 5, - ACTIONS(682), 1, - sym_concatenating_space, - ACTIONS(2027), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15338] = 5, + ACTIONS(729), 1, + sym__if_else_separator, + ACTIONS(2283), 1, sym_identifier, - STATE(2246), 1, + STATE(2523), 1, sym_namespace, - STATE(1425), 2, + STATE(1643), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(680), 31, + ACTIONS(725), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87984,232 +137616,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75757] = 1, - ACTIONS(1929), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + [15385] = 2, + ACTIONS(923), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(925), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75796] = 1, - ACTIONS(1933), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15426] = 2, + ACTIONS(935), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(937), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75835] = 1, - ACTIONS(1901), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15467] = 2, + ACTIONS(919), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(921), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75874] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1985), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15508] = 2, + ACTIONS(847), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(849), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75915] = 1, - ACTIONS(1985), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15549] = 2, + ACTIONS(843), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_EQ, + ACTIONS(845), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [75954] = 7, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(2031), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15590] = 2, + ACTIONS(835), 10, anon_sym_LT, - STATE(1406), 1, - sym_array_ref, - STATE(1426), 1, - sym_ns_qualified_name, - STATE(2258), 1, - sym_namespace, - ACTIONS(682), 2, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(837), 26, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(680), 29, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + anon_sym_RPAREN, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -88218,919 +137841,816 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [76005] = 4, - ACTIONS(2037), 1, - anon_sym_POUND, - STATE(1349), 2, - sym_comment, - aux_sym_if_statement_repeat1, - ACTIONS(2035), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token2, - anon_sym_DQUOTE, - ACTIONS(2033), 21, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15631] = 9, + ACTIONS(2257), 1, + anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(907), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2263), 2, anon_sym_PLUS, anon_sym_DASH, - sym_identifier, - aux_sym_number_token1, - [76050] = 1, - ACTIONS(1933), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(2267), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2261), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76089] = 1, - ACTIONS(1937), 36, + anon_sym_PERCENT, + ACTIONS(2265), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(909), 19, + sym_concatenating_space, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76128] = 1, - ACTIONS(1941), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15686] = 2, + ACTIONS(885), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76167] = 2, - ACTIONS(2015), 3, + anon_sym_EQ, + ACTIONS(887), 26, + sym_concatenating_space, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1981), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76208] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1941), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [15727] = 6, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76249] = 1, - ACTIONS(1981), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76288] = 1, - ACTIONS(1945), 36, + ACTIONS(733), 17, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [15776] = 10, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2285), 1, + anon_sym_in, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76327] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1945), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76368] = 1, - ACTIONS(1949), 36, + ACTIONS(733), 12, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15832] = 10, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2287), 1, + anon_sym_in, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76407] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1949), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76448] = 1, - ACTIONS(1853), 36, + ACTIONS(733), 12, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15888] = 10, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2289), 1, + anon_sym_in, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76487] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1977), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(733), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15944] = 7, + ACTIONS(729), 1, + sym__if_else_separator, + ACTIONS(2291), 1, sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76528] = 1, - ACTIONS(1977), 36, + ACTIONS(2293), 1, + anon_sym_LT, + STATE(1643), 1, + sym_array_ref, + STATE(1668), 1, + sym_ns_qualified_name, + STATE(2523), 1, + sym_namespace, + ACTIONS(725), 29, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [76567] = 2, - ACTIONS(2015), 3, + [15994] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(767), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(765), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1973), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [16038] = 10, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2297), 1, + anon_sym_in, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(733), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16094] = 4, + ACTIONS(2299), 1, sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76608] = 1, - ACTIONS(1953), 36, + STATE(2501), 1, + sym_namespace, + STATE(1658), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(725), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [76647] = 1, - ACTIONS(1973), 36, + [16138] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [16182] = 10, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2301), 1, + anon_sym_in, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76686] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1953), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + ACTIONS(733), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16238] = 10, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2303), 1, + anon_sym_in, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(733), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16294] = 7, + ACTIONS(729), 1, + sym_concatenating_space, + ACTIONS(2305), 1, sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76727] = 1, - ACTIONS(1957), 36, + ACTIONS(2307), 1, + anon_sym_LT, + STATE(1639), 1, + sym_array_ref, + STATE(1680), 1, + sym_ns_qualified_name, + STATE(2510), 1, + sym_namespace, + ACTIONS(725), 29, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [16344] = 9, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2287), 1, + anon_sym_in, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76766] = 1, - ACTIONS(1969), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + ACTIONS(733), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16397] = 9, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2289), 1, + anon_sym_in, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76805] = 2, - ACTIONS(2015), 3, + ACTIONS(1103), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(733), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16450] = 2, + ACTIONS(803), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(801), 32, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1965), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [76846] = 2, - ACTIONS(2015), 3, + [16489] = 2, + ACTIONS(771), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(769), 32, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1957), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [76887] = 1, - ACTIONS(1965), 36, + [16528] = 3, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [76926] = 6, - ACTIONS(2003), 1, - anon_sym_CARET, - ACTIONS(2005), 1, - anon_sym_STAR_STAR, - ACTIONS(2009), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2007), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 4, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(780), 25, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -89139,78 +138659,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_POUND, + [16569] = 9, + ACTIONS(749), 1, + anon_sym_EQ, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + sym__func_call, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2303), 1, + anon_sym_in, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1103), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_RBRACK, - [76975] = 2, - ACTIONS(2015), 3, + ACTIONS(713), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(733), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16622] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(767), 1, + sym_concatenating_space, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(765), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1961), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [77016] = 10, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(746), 1, + [16665] = 9, + ACTIONS(749), 1, anon_sym_EQ, - ACTIONS(938), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1729), 1, + ACTIONS(2191), 1, sym__func_call, - ACTIONS(2040), 1, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2285), 1, anon_sym_in, - ACTIONS(1725), 2, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1085), 6, + ACTIONS(1103), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + ACTIONS(713), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -89220,7 +138774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, + ACTIONS(733), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -89233,30 +138787,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77072] = 10, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(746), 1, + [16718] = 9, + ACTIONS(749), 1, anon_sym_EQ, - ACTIONS(938), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1729), 1, + ACTIONS(2191), 1, sym__func_call, - ACTIONS(2042), 1, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2301), 1, anon_sym_in, - ACTIONS(1725), 2, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1085), 6, + ACTIONS(1103), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + ACTIONS(713), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -89266,7 +138818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, + ACTIONS(733), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -89279,66 +138831,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77128] = 2, - ACTIONS(2046), 1, - sym__if_else_separator, - ACTIONS(2044), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [77168] = 7, - ACTIONS(682), 1, + [16771] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(759), 1, sym_concatenating_space, - ACTIONS(2048), 1, - sym_identifier, - ACTIONS(2050), 1, - anon_sym_LT, - STATE(1425), 1, - sym_array_ref, - STATE(1504), 1, - sym_ns_qualified_name, - STATE(2246), 1, - sym_namespace, - ACTIONS(680), 29, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(755), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -89360,15 +138870,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [77218] = 4, - ACTIONS(672), 1, + [16814] = 4, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(2052), 1, - anon_sym_LBRACK, - ACTIONS(724), 2, - sym_concatenating_space, + ACTIONS(767), 1, sym__if_else_separator, - ACTIONS(722), 31, + ACTIONS(2311), 1, + anon_sym_LBRACK, + ACTIONS(765), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -89400,82 +138909,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [77262] = 2, - ACTIONS(2054), 1, - sym__if_else_separator, - ACTIONS(2044), 34, + [16857] = 6, + ACTIONS(2313), 1, + sym_identifier, + ACTIONS(2315), 1, + anon_sym_LT, + STATE(1658), 1, + sym_array_ref, + STATE(1735), 1, + sym_ns_qualified_name, + STATE(2501), 1, + sym_namespace, + ACTIONS(725), 29, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [77302] = 10, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(2056), 1, anon_sym_in, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, - anon_sym_LT, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -89484,68 +138949,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77358] = 2, - ACTIONS(2054), 1, + anon_sym_POUND, + [16904] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2317), 1, + anon_sym_LT, + ACTIONS(759), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2044), 34, + ACTIONS(755), 29, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [77398] = 10, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(746), 1, + [16949] = 9, + ACTIONS(749), 1, anon_sym_EQ, - ACTIONS(938), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1729), 1, + ACTIONS(2191), 1, sym__func_call, - ACTIONS(2058), 1, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(2297), 1, anon_sym_in, - ACTIONS(1725), 2, + ACTIONS(2187), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1085), 6, + ACTIONS(1103), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(666), 9, + ACTIONS(713), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -89555,7 +139021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, + ACTIONS(733), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -89568,15 +139034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77454] = 4, - ACTIONS(672), 1, + [17002] = 4, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(2052), 1, - anon_sym_LBRACK, - ACTIONS(716), 2, - sym_concatenating_space, + ACTIONS(759), 1, sym__if_else_separator, - ACTIONS(714), 31, + ACTIONS(2311), 1, + anon_sym_LBRACK, + ACTIONS(755), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -89608,28 +139073,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [77498] = 7, - ACTIONS(682), 1, + [17045] = 3, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(767), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2062), 1, - anon_sym_LT, - STATE(1430), 1, - sym_array_ref, - STATE(1488), 1, - sym_ns_qualified_name, - STATE(2257), 1, - sym_namespace, - ACTIONS(680), 29, + ACTIONS(765), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -89651,120 +139111,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [77548] = 2, - ACTIONS(2066), 1, + [17086] = 4, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2317), 1, + anon_sym_LT, + ACTIONS(759), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2064), 34, + ACTIONS(755), 29, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [77588] = 2, - ACTIONS(2066), 1, + [17128] = 2, + ACTIONS(767), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2064), 34, + ACTIONS(765), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [77628] = 10, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(2068), 1, anon_sym_in, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -89773,44 +139184,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77684] = 10, - ACTIONS(672), 1, + anon_sym_POUND, + [17166] = 3, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, + ACTIONS(2319), 1, anon_sym_LBRACK, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(2070), 1, + ACTIONS(765), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -89819,53 +139221,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77740] = 2, - ACTIONS(2072), 1, + anon_sym_POUND, + [17206] = 2, + ACTIONS(933), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2064), 34, + ACTIONS(931), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [77780] = 4, - ACTIONS(2074), 1, - sym_identifier, - STATE(2237), 1, - sym_namespace, - STATE(1458), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 31, + [17244] = 2, + ACTIONS(937), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(935), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -89897,101 +139294,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [77824] = 2, - ACTIONS(2072), 1, + [17282] = 2, + ACTIONS(941), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2064), 34, + ACTIONS(939), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [77864] = 2, - ACTIONS(2046), 1, + [17320] = 2, + ACTIONS(929), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2044), 34, + ACTIONS(927), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [77904] = 5, - ACTIONS(672), 1, + [17358] = 3, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(2052), 1, + ACTIONS(2319), 1, anon_sym_LBRACK, - ACTIONS(2076), 1, - anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 29, + ACTIONS(755), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -90013,42 +139403,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [77949] = 9, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, + [17398] = 2, + ACTIONS(925), 2, sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(2070), 1, + sym__if_else_separator, + ACTIONS(923), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -90057,42 +139438,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78002] = 9, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, + anon_sym_POUND, + [17436] = 2, + ACTIONS(803), 1, sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(2040), 1, + ACTIONS(801), 32, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -90101,19 +139473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78055] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(724), 1, - sym_concatenating_space, - ACTIONS(2078), 1, anon_sym_LBRACK, - ACTIONS(722), 31, + anon_sym_POUND, + [17474] = 3, + ACTIONS(2321), 1, + sym_regex_flags, + ACTIONS(799), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(795), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -90140,19 +139512,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78098] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(716), 1, + [17514] = 3, + ACTIONS(2323), 1, + sym_regex_flags, + ACTIONS(793), 2, sym_concatenating_space, - ACTIONS(2078), 1, - anon_sym_LBRACK, - ACTIONS(714), 31, + sym__if_else_separator, + ACTIONS(789), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -90179,14 +139549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78141] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(724), 1, + [17554] = 2, + ACTIONS(771), 1, sym__if_else_separator, - ACTIONS(2080), 1, - anon_sym_LBRACK, - ACTIONS(722), 31, + ACTIONS(769), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90217,43 +139583,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [78184] = 9, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, anon_sym_LBRACK, - ACTIONS(1727), 1, + anon_sym_POUND, + [17592] = 2, + ACTIONS(771), 1, sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(2058), 1, + ACTIONS(769), 32, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -90262,11 +139619,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78237] = 2, - ACTIONS(744), 2, + anon_sym_LBRACK, + anon_sym_POUND, + [17630] = 2, + ACTIONS(917), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(742), 32, + ACTIONS(915), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90297,44 +139656,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [78276] = 9, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, + [17668] = 3, + ACTIONS(767), 1, + sym__if_else_separator, + ACTIONS(2311), 1, anon_sym_LBRACK, - ACTIONS(1727), 1, - sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(2056), 1, + ACTIONS(765), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -90343,13 +139693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78329] = 3, - ACTIONS(2052), 1, - anon_sym_LBRACK, - ACTIONS(724), 2, + anon_sym_POUND, + [17708] = 2, + ACTIONS(913), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(722), 31, + ACTIONS(911), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90381,42 +139730,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78370] = 9, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, + [17746] = 2, + ACTIONS(853), 2, sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(2068), 1, + sym__if_else_separator, + ACTIONS(851), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -90425,26 +139765,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78423] = 6, - ACTIONS(2082), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LT, - STATE(1458), 1, - sym_array_ref, - STATE(1530), 1, - sym_ns_qualified_name, - STATE(2237), 1, - sym_namespace, - ACTIONS(680), 29, + anon_sym_POUND, + [17784] = 2, + ACTIONS(849), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(847), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -90466,42 +139802,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78470] = 9, - ACTIONS(746), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, + [17822] = 2, + ACTIONS(837), 2, sym_concatenating_space, - ACTIONS(1729), 1, - sym__func_call, - ACTIONS(2042), 1, + sym__if_else_separator, + ACTIONS(835), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(1725), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1085), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(666), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(674), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -90510,13 +139837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78523] = 3, - ACTIONS(2052), 1, - anon_sym_LBRACK, - ACTIONS(716), 2, + anon_sym_POUND, + [17860] = 2, + ACTIONS(845), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(714), 31, + ACTIONS(843), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90548,48 +139874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78564] = 2, - ACTIONS(2088), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - ACTIONS(2086), 21, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_PLUS, - anon_sym_DASH, - sym_identifier, - aux_sym_number_token1, - [78603] = 2, - ACTIONS(720), 2, + [17898] = 2, + ACTIONS(861), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(718), 32, + ACTIONS(859), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90620,16 +139909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [78642] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(716), 1, + [17936] = 2, + ACTIONS(865), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2080), 1, - anon_sym_LBRACK, - ACTIONS(714), 31, + ACTIONS(863), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90661,54 +139946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78685] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(2090), 31, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [78724] = 3, - ACTIONS(2092), 1, - sym_regex_flags, - ACTIONS(860), 2, + [17974] = 2, + ACTIONS(869), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(856), 30, + ACTIONS(867), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -90735,11 +139982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78764] = 2, - ACTIONS(764), 2, + [18012] = 3, + ACTIONS(759), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(762), 31, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(755), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90771,11 +140019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78802] = 2, - ACTIONS(822), 2, + [18052] = 2, + ACTIONS(887), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(820), 31, + ACTIONS(885), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90807,11 +140055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78840] = 2, - ACTIONS(796), 2, + [18090] = 3, + ACTIONS(767), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(794), 31, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(765), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90843,20 +140092,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78878] = 2, - ACTIONS(744), 1, + [18130] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(759), 1, sym__if_else_separator, - ACTIONS(742), 32, + ACTIONS(2311), 1, + anon_sym_LBRACK, + ACTIONS(2325), 1, + anon_sym_LT, + ACTIONS(755), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -90877,13 +140130,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [78916] = 2, - ACTIONS(792), 2, - sym_concatenating_space, + [18174] = 3, + ACTIONS(759), 1, sym__if_else_separator, - ACTIONS(790), 31, + ACTIONS(2311), 1, + anon_sym_LBRACK, + ACTIONS(755), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90915,27 +140168,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [78954] = 7, - ACTIONS(2094), 1, - sym_identifier, - ACTIONS(2096), 1, - anon_sym_LT, - STATE(1406), 1, - sym_array_ref, - STATE(1544), 1, - sym_ns_qualified_name, - STATE(2258), 1, - sym_namespace, - ACTIONS(682), 2, + [18214] = 2, + ACTIONS(879), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(680), 26, + ACTIONS(877), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -90956,25 +140203,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [79002] = 3, - ACTIONS(686), 2, + anon_sym_POUND, + [18252] = 2, + ACTIONS(891), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(684), 10, + ACTIONS(889), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -90993,11 +140239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [79042] = 2, - ACTIONS(804), 2, - sym_concatenating_space, + anon_sym_POUND, + [18290] = 2, + ACTIONS(803), 1, sym__if_else_separator, - ACTIONS(802), 31, + ACTIONS(801), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91028,24 +140274,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [79080] = 2, - ACTIONS(780), 2, + [18328] = 3, + ACTIONS(719), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(778), 31, + ACTIONS(711), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(713), 21, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -91064,12 +140313,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [79118] = 2, - ACTIONS(800), 2, + [18368] = 2, + ACTIONS(833), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(798), 31, + ACTIONS(831), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91101,11 +140349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79156] = 2, - ACTIONS(724), 2, + [18406] = 2, + ACTIONS(883), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(722), 31, + ACTIONS(881), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91137,22 +140385,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79194] = 3, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(2098), 1, - anon_sym_LBRACK, - ACTIONS(714), 31, + [18444] = 7, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_LT, + STATE(1603), 1, + sym_array_ref, + STATE(1766), 1, + sym_ns_qualified_name, + STATE(2524), 1, + sym_namespace, + ACTIONS(729), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(725), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -91173,12 +140426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [79234] = 2, - ACTIONS(838), 2, + [18492] = 2, + ACTIONS(921), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(836), 31, + ACTIONS(919), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91210,22 +140462,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79272] = 3, - ACTIONS(716), 1, + [18530] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(759), 1, sym_concatenating_space, - ACTIONS(2078), 1, + ACTIONS(2309), 1, anon_sym_LBRACK, - ACTIONS(714), 31, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(755), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -91247,23 +140501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79312] = 4, - ACTIONS(2052), 1, - anon_sym_LBRACK, - ACTIONS(2076), 1, - anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, + [18574] = 2, + ACTIONS(767), 1, sym__if_else_separator, - ACTIONS(714), 29, + ACTIONS(765), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -91285,12 +140536,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79354] = 3, - ACTIONS(724), 1, + [18611] = 11, + ACTIONS(2333), 1, + anon_sym_in, + ACTIONS(2337), 1, + anon_sym_QMARK, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(829), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2080), 1, - anon_sym_LBRACK, - ACTIONS(722), 31, + ACTIONS(2339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2341), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(809), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_POUND, + [18666] = 2, + ACTIONS(887), 1, + sym_concatenating_space, + ACTIONS(885), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91322,17 +140615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79394] = 3, - ACTIONS(2100), 1, - sym_regex_flags, - ACTIONS(852), 2, + [18703] = 2, + ACTIONS(883), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(848), 30, + ACTIONS(881), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -91359,11 +140650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79434] = 2, - ACTIONS(818), 2, + [18740] = 2, + ACTIONS(879), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(816), 31, + ACTIONS(877), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91395,12 +140685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79472] = 3, - ACTIONS(716), 1, - sym__if_else_separator, - ACTIONS(2080), 1, + [18777] = 2, + ACTIONS(2319), 1, anon_sym_LBRACK, - ACTIONS(714), 31, + ACTIONS(755), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91432,12 +140720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79512] = 3, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(2098), 1, + [18814] = 2, + ACTIONS(2319), 1, anon_sym_LBRACK, - ACTIONS(722), 31, + ACTIONS(765), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91469,11 +140755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79552] = 2, - ACTIONS(814), 2, + [18851] = 2, + ACTIONS(925), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(812), 31, + ACTIONS(923), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91505,11 +140790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79590] = 2, - ACTIONS(826), 2, + [18888] = 2, + ACTIONS(937), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(824), 31, + ACTIONS(935), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91541,10 +140825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79628] = 2, - ACTIONS(720), 1, + [18925] = 2, + ACTIONS(837), 1, sym_concatenating_space, - ACTIONS(718), 32, + ACTIONS(835), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91575,13 +140859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [79666] = 2, - ACTIONS(830), 2, + [18962] = 2, + ACTIONS(853), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(828), 31, + ACTIONS(851), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91613,11 +140895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79704] = 2, - ACTIONS(788), 2, + [18999] = 2, + ACTIONS(921), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(786), 31, + ACTIONS(919), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91649,11 +140930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79742] = 2, - ACTIONS(808), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(806), 31, + [19036] = 1, + ACTIONS(801), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91684,21 +140962,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [79780] = 2, - ACTIONS(720), 1, - sym__if_else_separator, - ACTIONS(718), 32, + [19071] = 7, + ACTIONS(729), 1, + sym_concatenating_space, + ACTIONS(2351), 1, + sym_identifier, + ACTIONS(2353), 1, + anon_sym_LT, + STATE(1639), 1, + sym_array_ref, + STATE(1785), 1, + sym_ns_qualified_name, + STATE(2510), 1, + sym_namespace, + ACTIONS(725), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -91719,14 +141004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, - anon_sym_POUND, - [79818] = 3, - ACTIONS(724), 1, + [19118] = 2, + ACTIONS(767), 1, sym_concatenating_space, - ACTIONS(2078), 1, - anon_sym_LBRACK, - ACTIONS(722), 31, + ACTIONS(765), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91758,21 +141039,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79858] = 2, - ACTIONS(784), 2, - sym_concatenating_space, + [19155] = 4, + ACTIONS(759), 1, sym__if_else_separator, - ACTIONS(782), 31, + ACTIONS(2311), 1, + anon_sym_LBRACK, + ACTIONS(2325), 1, + anon_sym_LT, + ACTIONS(755), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -91794,11 +141076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79896] = 2, - ACTIONS(768), 2, + [19196] = 2, + ACTIONS(941), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(766), 31, + ACTIONS(939), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91830,24 +141111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79934] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(716), 1, - sym__if_else_separator, - ACTIONS(2080), 1, - anon_sym_LBRACK, - ACTIONS(2102), 1, - anon_sym_LT, - ACTIONS(714), 29, + [19233] = 2, + ACTIONS(933), 1, + sym_concatenating_space, + ACTIONS(931), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -91869,24 +141146,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [79978] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(716), 1, + [19270] = 2, + ACTIONS(929), 1, sym_concatenating_space, - ACTIONS(2078), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_LT, - ACTIONS(714), 29, + ACTIONS(927), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -91908,10 +141181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80022] = 2, - ACTIONS(744), 1, + [19307] = 2, + ACTIONS(917), 1, sym_concatenating_space, - ACTIONS(742), 32, + ACTIONS(915), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91942,13 +141215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [80060] = 2, - ACTIONS(846), 2, + [19344] = 2, + ACTIONS(913), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(844), 31, + ACTIONS(911), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -91980,10 +141251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80098] = 2, - ACTIONS(838), 1, - sym__if_else_separator, - ACTIONS(836), 31, + [19381] = 2, + ACTIONS(861), 1, + sym_concatenating_space, + ACTIONS(859), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92015,10 +141286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80135] = 2, - ACTIONS(814), 1, - sym__if_else_separator, - ACTIONS(812), 31, + [19418] = 2, + ACTIONS(865), 1, + sym_concatenating_space, + ACTIONS(863), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92050,247 +141321,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80172] = 12, - ACTIONS(2106), 1, - anon_sym_in, - ACTIONS(2112), 1, - anon_sym_QMARK, - ACTIONS(2122), 1, - anon_sym_AMP_AMP, - ACTIONS(2124), 1, - anon_sym_PIPE_PIPE, - ACTIONS(916), 2, + [19455] = 2, + ACTIONS(869), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2110), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2114), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2116), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(912), 9, + ACTIONS(867), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_POUND, - [80229] = 11, - ACTIONS(2106), 1, - anon_sym_in, - ACTIONS(2112), 1, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(2122), 1, - anon_sym_AMP_AMP, - ACTIONS(2124), 1, - anon_sym_PIPE_PIPE, - ACTIONS(906), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2114), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2116), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(904), 11, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [19492] = 3, + ACTIONS(733), 1, + sym__if_else_separator, + ACTIONS(2081), 1, + sym_concatenating_space, + ACTIONS(713), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_POUND, - [80284] = 11, - ACTIONS(2106), 1, - anon_sym_in, - ACTIONS(2112), 1, anon_sym_QMARK, - ACTIONS(2122), 1, - anon_sym_AMP_AMP, - ACTIONS(2124), 1, - anon_sym_PIPE_PIPE, - ACTIONS(900), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2114), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2116), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(898), 11, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [19531] = 3, + ACTIONS(719), 1, + sym_concatenating_space, + ACTIONS(711), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_POUND, - [80339] = 11, - ACTIONS(2106), 1, + ACTIONS(713), 21, anon_sym_in, - ACTIONS(2112), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(2122), 1, - anon_sym_AMP_AMP, - ACTIONS(2124), 1, - anon_sym_PIPE_PIPE, - ACTIONS(896), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2114), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2116), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(894), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_POUND, - [80394] = 11, - ACTIONS(2106), 1, - anon_sym_in, - ACTIONS(2112), 1, - anon_sym_QMARK, - ACTIONS(2122), 1, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, - ACTIONS(2124), 1, anon_sym_PIPE_PIPE, - ACTIONS(886), 2, + [19570] = 5, + ACTIONS(841), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2114), 2, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, + ACTIONS(2343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2116), 3, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 11, + ACTIONS(839), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [80449] = 7, - ACTIONS(682), 1, - sym__if_else_separator, - ACTIONS(2126), 1, - sym_identifier, - ACTIONS(2128), 1, + [19613] = 4, + ACTIONS(759), 1, + sym_concatenating_space, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2331), 1, anon_sym_LT, - STATE(1430), 1, - sym_array_ref, - STATE(1580), 1, - sym_ns_qualified_name, - STATE(2257), 1, - sym_namespace, - ACTIONS(680), 26, + ACTIONS(755), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -92311,48 +141502,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [80496] = 7, - ACTIONS(890), 2, + anon_sym_POUND, + [19654] = 2, + ACTIONS(891), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2114), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2116), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 15, + ACTIONS(889), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80543] = 1, - ACTIONS(718), 32, + [19691] = 1, + ACTIONS(769), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92385,20 +141572,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LBRACK, anon_sym_POUND, - [80578] = 2, - ACTIONS(724), 1, - sym_concatenating_space, - ACTIONS(722), 31, + [19726] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2319), 1, + anon_sym_LBRACK, + ACTIONS(2355), 1, + anon_sym_LT, + ACTIONS(755), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -92420,10 +141609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80615] = 2, - ACTIONS(724), 1, - sym__if_else_separator, - ACTIONS(722), 31, + [19767] = 2, + ACTIONS(845), 1, + sym_concatenating_space, + ACTIONS(843), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92455,10 +141644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80652] = 2, - ACTIONS(2098), 1, - anon_sym_LBRACK, - ACTIONS(714), 31, + [19804] = 2, + ACTIONS(869), 1, + sym__if_else_separator, + ACTIONS(867), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92490,144 +141679,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80689] = 9, - ACTIONS(2106), 1, - anon_sym_in, - ACTIONS(2122), 1, - anon_sym_AMP_AMP, - ACTIONS(780), 2, - sym_concatenating_space, + [19841] = 2, + ACTIONS(925), 1, sym__if_else_separator, - ACTIONS(2114), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2116), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 13, + ACTIONS(923), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [80740] = 8, - ACTIONS(2106), 1, - anon_sym_in, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2114), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2116), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 14, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [19878] = 2, + ACTIONS(865), 1, + sym__if_else_separator, + ACTIONS(863), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [80789] = 6, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2114), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2116), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 17, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80834] = 4, - ACTIONS(780), 2, - sym_concatenating_space, + [19915] = 2, + ACTIONS(861), 1, sym__if_else_separator, - ACTIONS(2114), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2116), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 25, + ACTIONS(859), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -92638,6 +141768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -92649,14 +141784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80875] = 3, - ACTIONS(780), 2, + [19952] = 3, + ACTIONS(921), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2114), 2, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(778), 28, + ACTIONS(919), 28, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92685,88 +141820,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [80914] = 5, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2114), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2116), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 23, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + [19991] = 11, + ACTIONS(2333), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2337), 1, anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2347), 1, anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [80957] = 7, - ACTIONS(874), 2, + ACTIONS(895), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2114), 2, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, + ACTIONS(2343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2120), 2, + ACTIONS(2345), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2116), 3, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, + ACTIONS(2335), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(862), 15, + ACTIONS(893), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_POUND, - [81004] = 2, - ACTIONS(800), 1, - sym_concatenating_space, - ACTIONS(798), 31, + [20046] = 2, + ACTIONS(913), 1, + sym__if_else_separator, + ACTIONS(911), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92798,10 +141899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81041] = 2, - ACTIONS(764), 1, - sym_concatenating_space, - ACTIONS(762), 31, + [20083] = 2, + ACTIONS(917), 1, + sym__if_else_separator, + ACTIONS(915), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92833,10 +141934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81078] = 2, - ACTIONS(818), 1, + [20120] = 2, + ACTIONS(929), 1, sym__if_else_separator, - ACTIONS(816), 31, + ACTIONS(927), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92868,10 +141969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81115] = 2, - ACTIONS(768), 1, - sym_concatenating_space, - ACTIONS(766), 31, + [20157] = 2, + ACTIONS(933), 1, + sym__if_else_separator, + ACTIONS(931), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92903,10 +142004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81152] = 2, - ACTIONS(796), 1, - sym_concatenating_space, - ACTIONS(794), 31, + [20194] = 2, + ACTIONS(941), 1, + sym__if_else_separator, + ACTIONS(939), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -92938,45 +142039,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81189] = 2, - ACTIONS(784), 1, - sym_concatenating_space, - ACTIONS(782), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + [20231] = 12, + ACTIONS(2333), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2337), 1, anon_sym_QMARK, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(875), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2357), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2335), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(871), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_POUND, - [81226] = 2, - ACTIONS(838), 1, + [20288] = 2, + ACTIONS(833), 1, sym_concatenating_space, - ACTIONS(836), 31, + ACTIONS(831), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93008,15 +142119,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81263] = 2, - ACTIONS(804), 1, - sym_concatenating_space, - ACTIONS(802), 31, + [20325] = 3, + ACTIONS(793), 1, + sym__if_else_separator, + ACTIONS(2359), 1, + sym_regex_flags, + ACTIONS(789), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -93043,13 +142155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81300] = 1, - ACTIONS(742), 32, + [20364] = 3, + ACTIONS(799), 1, + sym__if_else_separator, + ACTIONS(2361), 1, + sym_regex_flags, + ACTIONS(795), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -93075,87 +142190,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [81335] = 2, - ACTIONS(808), 1, - sym_concatenating_space, - ACTIONS(806), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + [20403] = 11, + ACTIONS(2333), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2337), 1, anon_sym_QMARK, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(899), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2335), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [81372] = 2, - ACTIONS(826), 1, - sym__if_else_separator, - ACTIONS(824), 31, + ACTIONS(897), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_POUND, - [81409] = 2, - ACTIONS(830), 1, - sym__if_else_separator, - ACTIONS(828), 31, + [20458] = 3, + ACTIONS(793), 1, + sym_concatenating_space, + ACTIONS(2363), 1, + sym_regex_flags, + ACTIONS(789), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -93182,15 +142271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81446] = 2, - ACTIONS(788), 1, - sym__if_else_separator, - ACTIONS(786), 31, + [20497] = 3, + ACTIONS(799), 1, + sym_concatenating_space, + ACTIONS(2365), 1, + sym_regex_flags, + ACTIONS(795), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -93217,15 +142307,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81483] = 2, - ACTIONS(846), 1, + [20536] = 5, + ACTIONS(921), 2, sym_concatenating_space, - ACTIONS(844), 31, + sym__if_else_separator, + ACTIONS(2339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -93236,13 +142336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -93252,96 +142345,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81520] = 2, - ACTIONS(822), 1, + [20579] = 7, + ACTIONS(857), 2, sym_concatenating_space, - ACTIONS(820), 31, + sym__if_else_separator, + ACTIONS(2339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2341), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(855), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [20626] = 9, + ACTIONS(2333), 1, + anon_sym_in, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2335), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [81557] = 2, - ACTIONS(846), 1, - sym__if_else_separator, - ACTIONS(844), 31, + ACTIONS(919), 13, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81594] = 7, - ACTIONS(682), 1, + [20677] = 2, + ACTIONS(849), 1, sym_concatenating_space, - ACTIONS(2130), 1, - sym_identifier, - ACTIONS(2132), 1, - anon_sym_LT, - STATE(1425), 1, - sym_array_ref, - STATE(1561), 1, - sym_ns_qualified_name, - STATE(2246), 1, - sym_namespace, - ACTIONS(680), 26, + ACTIONS(847), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -93362,10 +142461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [81641] = 2, - ACTIONS(814), 1, - sym_concatenating_space, - ACTIONS(812), 31, + anon_sym_POUND, + [20714] = 2, + ACTIONS(853), 1, + sym__if_else_separator, + ACTIONS(851), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93397,10 +142497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81678] = 2, - ACTIONS(768), 1, + [20751] = 2, + ACTIONS(837), 1, sym__if_else_separator, - ACTIONS(766), 31, + ACTIONS(835), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93432,24 +142532,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81715] = 3, - ACTIONS(686), 1, - sym_concatenating_space, - ACTIONS(684), 10, + [20788] = 2, + ACTIONS(937), 1, + sym__if_else_separator, + ACTIONS(935), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(666), 21, - anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -93468,20 +142566,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [81754] = 2, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(778), 31, + anon_sym_POUND, + [20825] = 7, + ACTIONS(729), 1, + sym__if_else_separator, + ACTIONS(2367), 1, + sym_identifier, + ACTIONS(2369), 1, + anon_sym_LT, + STATE(1643), 1, + sym_array_ref, + STATE(1779), 1, + sym_ns_qualified_name, + STATE(2523), 1, + sym_namespace, + ACTIONS(725), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -93502,11 +142607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [81791] = 2, - ACTIONS(818), 1, - sym_concatenating_space, - ACTIONS(816), 31, + [20872] = 2, + ACTIONS(879), 1, + sym__if_else_separator, + ACTIONS(877), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93538,82 +142642,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81828] = 4, - ACTIONS(716), 1, + [20909] = 8, + ACTIONS(2333), 1, + anon_sym_in, + ACTIONS(921), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2080), 1, - anon_sym_LBRACK, - ACTIONS(2102), 1, + ACTIONS(2339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2341), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 6, anon_sym_LT, - ACTIONS(714), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [20958] = 6, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2335), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [81869] = 2, - ACTIONS(792), 1, - sym_concatenating_space, - ACTIONS(790), 31, + ACTIONS(919), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [21003] = 11, + ACTIONS(2333), 1, + anon_sym_in, + ACTIONS(2337), 1, + anon_sym_QMARK, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(903), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2335), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(901), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_POUND, - [81906] = 2, - ACTIONS(784), 1, + [21058] = 2, + ACTIONS(833), 1, sym__if_else_separator, - ACTIONS(782), 31, + ACTIONS(831), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93645,12 +142801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81943] = 3, - ACTIONS(852), 1, + [21095] = 4, + ACTIONS(921), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2134), 1, - sym_regex_flags, - ACTIONS(848), 30, + ACTIONS(2339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2341), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93665,11 +142827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -93681,12 +142838,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [81982] = 3, - ACTIONS(860), 1, + [21136] = 7, + ACTIONS(909), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2136), 1, - sym_regex_flags, - ACTIONS(856), 30, + ACTIONS(2339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2341), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(907), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93695,38 +142871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82021] = 3, - ACTIONS(674), 1, - sym__if_else_separator, - ACTIONS(1265), 1, - sym_concatenating_space, - ACTIONS(666), 30, + [21183] = 1, + ACTIONS(851), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -93753,15 +142911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82060] = 2, - ACTIONS(764), 1, - sym__if_else_separator, - ACTIONS(762), 31, + [21217] = 2, + ACTIONS(2103), 1, + sym_concatenating_space, + ACTIONS(713), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -93788,21 +142945,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82097] = 3, - ACTIONS(852), 1, - sym_concatenating_space, - ACTIONS(2138), 1, - sym_regex_flags, - ACTIONS(848), 30, + [21253] = 6, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, + anon_sym_LT, + STATE(1658), 1, + sym_array_ref, + STATE(1802), 1, + sym_ns_qualified_name, + STATE(2501), 1, + sym_namespace, + ACTIONS(725), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -93823,11 +142983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [82136] = 2, - ACTIONS(796), 1, - sym__if_else_separator, - ACTIONS(794), 31, + [21297] = 1, + ACTIONS(877), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93859,16 +143016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82173] = 3, - ACTIONS(860), 1, - sym_concatenating_space, - ACTIONS(2140), 1, - sym_regex_flags, - ACTIONS(856), 30, + [21331] = 1, + ACTIONS(765), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -93895,10 +143049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82212] = 2, - ACTIONS(788), 1, - sym_concatenating_space, - ACTIONS(786), 31, + [21365] = 1, + ACTIONS(939), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93930,10 +143082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82249] = 2, - ACTIONS(826), 1, - sym_concatenating_space, - ACTIONS(824), 31, + [21399] = 1, + ACTIONS(931), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -93965,22 +143115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82286] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(2098), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_LT, - ACTIONS(714), 29, + [21433] = 1, + ACTIONS(927), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -94002,10 +143148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82327] = 2, - ACTIONS(2098), 1, - anon_sym_LBRACK, - ACTIONS(722), 31, + [21467] = 1, + ACTIONS(915), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -94037,10 +143181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82364] = 2, - ACTIONS(830), 1, - sym_concatenating_space, - ACTIONS(828), 31, + [21501] = 1, + ACTIONS(911), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -94072,25 +143214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82401] = 5, - ACTIONS(910), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2114), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2116), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(908), 23, + [21535] = 1, + ACTIONS(859), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -94101,6 +143231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -94110,22 +143247,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82444] = 4, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(2078), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_LT, - ACTIONS(714), 29, + [21569] = 1, + ACTIONS(867), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -94147,32 +143280,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82485] = 6, - ACTIONS(2144), 1, + [21603] = 7, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2146), 1, + ACTIONS(2377), 1, anon_sym_LT, - STATE(1458), 1, - sym_array_ref, - STATE(1614), 1, + STATE(1817), 1, sym_ns_qualified_name, - STATE(2237), 1, + STATE(1824), 1, + sym_array_ref, + STATE(2495), 1, sym_namespace, - ACTIONS(680), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + ACTIONS(725), 4, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(729), 22, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -94185,108 +143318,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [82529] = 12, - ACTIONS(1107), 1, + anon_sym_RBRACK, + [21649] = 1, + ACTIONS(923), 31, anon_sym_COMMA, - ACTIONS(1113), 1, - sym__if_else_separator, - ACTIONS(2106), 1, - anon_sym_in, - ACTIONS(2112), 1, - anon_sym_QMARK, - ACTIONS(2122), 1, - anon_sym_AMP_AMP, - ACTIONS(2124), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2114), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2116), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2108), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1111), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_POUND, - [82585] = 2, - ACTIONS(1999), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - ACTIONS(1997), 19, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_PLUS, - anon_sym_DASH, - sym_identifier, - aux_sym_number_token1, - [82621] = 7, - ACTIONS(890), 1, - sym_concatenating_space, - ACTIONS(2150), 2, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2156), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2152), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(888), 15, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [21683] = 2, + ACTIONS(2379), 1, + sym_regex_flags, + ACTIONS(789), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -94295,60 +143364,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [82667] = 11, - ACTIONS(896), 1, - sym_concatenating_space, - ACTIONS(2158), 1, - anon_sym_in, - ACTIONS(2160), 1, - anon_sym_QMARK, - ACTIONS(2162), 1, - anon_sym_AMP_AMP, - ACTIONS(2164), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2156), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2152), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [82721] = 2, - ACTIONS(2166), 1, + [21719] = 2, + ACTIONS(2381), 1, sym_regex_flags, - ACTIONS(856), 30, + ACTIONS(795), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -94379,38 +143420,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82757] = 11, - ACTIONS(900), 1, - sym_concatenating_space, - ACTIONS(2158), 1, + [21755] = 12, + ACTIONS(875), 1, + sym__if_else_separator, + ACTIONS(2333), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2337), 1, anon_sym_QMARK, - ACTIONS(2162), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2164), 1, + ACTIONS(2349), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2345), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2383), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2335), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(898), 11, + ACTIONS(871), 9, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -94419,76 +143463,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_POUND, - [82811] = 11, - ACTIONS(906), 1, - sym_concatenating_space, - ACTIONS(2158), 1, - anon_sym_in, - ACTIONS(2160), 1, - anon_sym_QMARK, - ACTIONS(2162), 1, - anon_sym_AMP_AMP, - ACTIONS(2164), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2154), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2156), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2152), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2148), 6, + [21811] = 3, + ACTIONS(2319), 1, + anon_sym_LBRACK, + ACTIONS(2355), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(904), 11, + ACTIONS(755), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_POUND, - [82865] = 5, - ACTIONS(2168), 1, - sym_identifier, - STATE(2234), 1, - sym_namespace, - STATE(1595), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 5, - anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(682), 22, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -94501,9 +143498,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [82907] = 1, - ACTIONS(816), 31, + anon_sym_POUND, + [21849] = 1, + ACTIONS(935), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -94535,51 +143532,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [82941] = 11, - ACTIONS(886), 1, + [21883] = 7, + ACTIONS(909), 1, sym_concatenating_space, - ACTIONS(2158), 1, - anon_sym_in, - ACTIONS(2160), 1, - anon_sym_QMARK, - ACTIONS(2162), 1, - anon_sym_AMP_AMP, - ACTIONS(2164), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 11, + ACTIONS(907), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [82995] = 1, - ACTIONS(786), 31, + [21929] = 1, + ACTIONS(835), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -94611,10 +143604,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [83029] = 2, - ACTIONS(2170), 1, - sym_regex_flags, - ACTIONS(848), 30, + [21963] = 5, + ACTIONS(841), 1, + sym_concatenating_space, + ACTIONS(2387), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2391), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2389), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(839), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -94629,13 +143632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -94645,19 +143641,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [83065] = 2, - ACTIONS(1291), 1, + [22005] = 12, + ACTIONS(875), 1, sym_concatenating_space, - ACTIONS(666), 30, + ACTIONS(2395), 1, + anon_sym_in, + ACTIONS(2399), 1, + anon_sym_QMARK, + ACTIONS(2401), 1, + anon_sym_AMP_AMP, + ACTIONS(2403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2387), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2391), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2393), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2397), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2389), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2385), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(871), 9, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + [22061] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, anon_sym_LT, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -94678,39 +143722,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [83101] = 9, - ACTIONS(780), 1, + [22103] = 7, + ACTIONS(857), 1, sym_concatenating_space, - ACTIONS(2158), 1, - anon_sym_in, - ACTIONS(2162), 1, - anon_sym_AMP_AMP, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 13, + ACTIONS(855), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, @@ -94718,79 +143758,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [83151] = 12, - ACTIONS(916), 1, + [22149] = 12, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(1141), 1, sym__if_else_separator, - ACTIONS(2106), 1, + ACTIONS(2333), 1, anon_sym_in, - ACTIONS(2112), 1, + ACTIONS(2337), 1, anon_sym_QMARK, - ACTIONS(2122), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2124), 1, + ACTIONS(2349), 1, anon_sym_PIPE_PIPE, - ACTIONS(2114), 2, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, + ACTIONS(2343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2120), 2, + ACTIONS(2345), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2172), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2116), 3, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, + ACTIONS(2335), 5, anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(912), 9, - anon_sym_COMMA, + ACTIONS(1139), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_POUND, - [83207] = 8, - ACTIONS(780), 1, + [22205] = 5, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(2158), 1, + ACTIONS(2387), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2391), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2389), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 23, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [22247] = 12, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(1135), 1, + sym__if_else_separator, + ACTIONS(2333), 1, anon_sym_in, - ACTIONS(2150), 2, + ACTIONS(2337), 1, + anon_sym_QMARK, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2345), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2335), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 14, - anon_sym_COMMA, + ACTIONS(1131), 10, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -94800,73 +143885,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_POUND, + [22303] = 11, + ACTIONS(829), 1, + sym_concatenating_space, + ACTIONS(2395), 1, + anon_sym_in, + ACTIONS(2399), 1, anon_sym_QMARK, + ACTIONS(2401), 1, anon_sym_AMP_AMP, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [83255] = 6, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2152), 3, + ACTIONS(2393), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 17, + ACTIONS(809), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_POUND, + [22357] = 11, + ACTIONS(895), 1, + sym_concatenating_space, + ACTIONS(2395), 1, + anon_sym_in, + ACTIONS(2399), 1, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2401), 1, anon_sym_AMP_AMP, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [83299] = 4, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2152), 3, + ACTIONS(2391), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2393), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(778), 25, + ACTIONS(2385), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(893), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_POUND, + [22411] = 5, + ACTIONS(2407), 1, + sym_identifier, + STATE(2495), 1, + sym_namespace, + STATE(1824), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(725), 5, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(729), 22, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -94877,14 +144008,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [83339] = 1, - ACTIONS(812), 31, + anon_sym_RBRACK, + [22453] = 3, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2387), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(919), 28, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -94895,8 +144030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -94911,17 +144044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [83373] = 3, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(2150), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 28, + [22491] = 1, + ACTIONS(831), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -94932,6 +144061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -94946,20 +144077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [83411] = 5, - ACTIONS(780), 1, + [22525] = 4, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(778), 23, + ACTIONS(919), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -94974,6 +144102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -94983,80 +144113,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [83453] = 7, - ACTIONS(2174), 1, - sym_identifier, - ACTIONS(2176), 1, - anon_sym_LT, - STATE(1594), 1, - sym_ns_qualified_name, - STATE(1595), 1, - sym_array_ref, - STATE(2234), 1, - sym_namespace, - ACTIONS(680), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(682), 22, + [22565] = 6, + ACTIONS(921), 1, sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2389), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2385), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(919), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [83499] = 12, - ACTIONS(916), 1, + anon_sym_POUND, + [22609] = 8, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(2158), 1, + ACTIONS(2395), 1, anon_sym_in, - ACTIONS(2160), 1, - anon_sym_QMARK, - ACTIONS(2162), 1, - anon_sym_AMP_AMP, - ACTIONS(2164), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2178), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(912), 9, + ACTIONS(919), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -95065,41 +144185,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [83555] = 12, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(1109), 1, - sym__if_else_separator, - ACTIONS(2106), 1, + [22657] = 11, + ACTIONS(899), 1, + sym_concatenating_space, + ACTIONS(2395), 1, anon_sym_in, - ACTIONS(2112), 1, + ACTIONS(2399), 1, anon_sym_QMARK, - ACTIONS(2122), 1, + ACTIONS(2401), 1, anon_sym_AMP_AMP, - ACTIONS(2124), 1, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - ACTIONS(2114), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2120), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2116), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1105), 10, + ACTIONS(897), 11, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95110,20 +144234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_POUND, - [83611] = 3, - ACTIONS(2098), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_LT, - ACTIONS(714), 29, + [22711] = 1, + ACTIONS(863), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -95145,109 +144267,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [83649] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(2052), 1, - anon_sym_LBRACK, - ACTIONS(2180), 1, - anon_sym_LT, - ACTIONS(716), 2, + [22745] = 11, + ACTIONS(903), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + ACTIONS(2395), 1, anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2399), 1, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2401), 1, anon_sym_AMP_AMP, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - [83691] = 5, - ACTIONS(910), 1, - sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2152), 3, + ACTIONS(2393), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(908), 23, + ACTIONS(2385), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(901), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_POUND, - [83733] = 7, - ACTIONS(874), 1, + [22799] = 9, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2395), 1, + anon_sym_in, + ACTIONS(2401), 1, + anon_sym_AMP_AMP, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(862), 15, + ACTIONS(919), 13, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, @@ -95255,20 +144349,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [83779] = 1, - ACTIONS(836), 31, + [22849] = 3, + ACTIONS(2321), 1, + sym_regex_flags, + ACTIONS(799), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(795), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -95290,259 +144385,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [83813] = 1, - ACTIONS(762), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + [22886] = 11, + ACTIONS(2395), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2399), 1, anon_sym_QMARK, + ACTIONS(2401), 1, + anon_sym_AMP_AMP, + ACTIONS(2403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [83847] = 1, - ACTIONS(766), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2385), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [83881] = 1, - ACTIONS(782), 31, + ACTIONS(871), 9, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [83915] = 2, - ACTIONS(1995), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token2, - anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(1993), 19, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_PLUS, - anon_sym_DASH, - sym_identifier, - aux_sym_number_token1, - [83951] = 1, - ACTIONS(722), 31, + [22939] = 11, + ACTIONS(1133), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + ACTIONS(2395), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2399), 1, anon_sym_QMARK, + ACTIONS(2401), 1, + anon_sym_AMP_AMP, + ACTIONS(2403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [83985] = 1, - ACTIONS(828), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2385), 5, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [84019] = 1, - ACTIONS(824), 31, - anon_sym_COMMA, + ACTIONS(1139), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_POUND, - [84053] = 1, - ACTIONS(794), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + [22992] = 5, + ACTIONS(2411), 1, + sym_identifier, + STATE(2480), 1, + sym_namespace, + STATE(1877), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(725), 5, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(729), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -95555,27 +144504,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [84087] = 1, - ACTIONS(844), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_RBRACK, + [23033] = 7, + ACTIONS(2413), 1, + sym_identifier, + ACTIONS(2415), 1, anon_sym_LT, + STATE(1873), 1, + sym_ns_qualified_name, + STATE(1877), 1, + sym_array_ref, + STATE(2480), 1, + sym_namespace, + ACTIONS(725), 4, + anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(729), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -95588,16 +144542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [84121] = 4, - ACTIONS(2052), 1, + anon_sym_RBRACK, + [23078] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(759), 1, + sym__if_else_separator, + ACTIONS(2311), 1, anon_sym_LBRACK, - ACTIONS(2180), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(716), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(714), 26, + ACTIONS(755), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -95624,31 +144579,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84160] = 7, - ACTIONS(2182), 1, - sym_identifier, - ACTIONS(2184), 1, - anon_sym_LT, - STATE(1638), 1, - sym_ns_qualified_name, - STATE(1639), 1, - sym_array_ref, - STATE(2221), 1, - sym_namespace, - ACTIONS(680), 4, + [23119] = 3, + ACTIONS(2323), 1, + sym_regex_flags, + ACTIONS(793), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(789), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(682), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -95661,17 +144613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [84205] = 5, - ACTIONS(672), 1, + [23156] = 5, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(716), 1, + ACTIONS(759), 1, sym_concatenating_space, - ACTIONS(2078), 1, + ACTIONS(2309), 1, anon_sym_LBRACK, - ACTIONS(2186), 1, + ACTIONS(2419), 1, anon_sym_LT, - ACTIONS(714), 26, + ACTIONS(755), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -95698,58 +144649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84246] = 11, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(2158), 1, - anon_sym_in, - ACTIONS(2160), 1, - anon_sym_QMARK, - ACTIONS(2162), 1, - anon_sym_AMP_AMP, - ACTIONS(2164), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2154), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2156), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2152), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2148), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1111), 11, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_POUND, - [84299] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(716), 1, - sym__if_else_separator, - ACTIONS(2080), 1, + [23197] = 4, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2188), 1, + ACTIONS(2405), 1, anon_sym_LT, - ACTIONS(714), 26, + ACTIONS(759), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(755), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -95776,38 +144684,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84340] = 11, - ACTIONS(1107), 1, + [23236] = 11, + ACTIONS(1133), 1, anon_sym_COMMA, - ACTIONS(2158), 1, + ACTIONS(2395), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2399), 1, anon_sym_QMARK, - ACTIONS(2162), 1, + ACTIONS(2401), 1, anon_sym_AMP_AMP, - ACTIONS(2164), 1, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1105), 10, + ACTIONS(1131), 10, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95818,134 +144726,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_POUND, - [84393] = 3, - ACTIONS(2100), 1, - sym_regex_flags, - ACTIONS(852), 2, - sym_concatenating_space, + [23289] = 12, + ACTIONS(1177), 1, sym__if_else_separator, - ACTIONS(848), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [84430] = 11, - ACTIONS(2158), 1, + ACTIONS(2333), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2337), 1, anon_sym_QMARK, - ACTIONS(2162), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2164), 1, + ACTIONS(2349), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2345), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2190), 2, + ACTIONS(2383), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2152), 3, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2335), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(912), 9, - anon_sym_COMMA, + ACTIONS(1175), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - [84483] = 2, - ACTIONS(2086), 15, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_else, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(2088), 15, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, anon_sym_POUND, - [84518] = 5, - ACTIONS(2192), 1, - sym_identifier, - STATE(2221), 1, - sym_namespace, - STATE(1639), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(680), 5, - anon_sym_in, + [23343] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2421), 1, anon_sym_LT, + ACTIONS(2423), 1, + anon_sym_LBRACK, + ACTIONS(755), 4, + anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(682), 21, + ACTIONS(759), 22, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_in, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -95963,13 +144803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [84559] = 3, - ACTIONS(2092), 1, - sym_regex_flags, - ACTIONS(860), 2, + [23383] = 5, + ACTIONS(841), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(856), 27, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(839), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -95982,13 +144830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -95997,12 +144838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84596] = 3, - ACTIONS(852), 1, + [23423] = 3, + ACTIONS(793), 1, sym_concatenating_space, - ACTIONS(2138), 1, + ACTIONS(2363), 1, sym_regex_flags, - ACTIONS(848), 27, + ACTIONS(789), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -96030,82 +144871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84632] = 11, - ACTIONS(2194), 1, - anon_sym_in, - ACTIONS(2198), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_AMP_AMP, - ACTIONS(2210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(886), 2, + [23459] = 7, + ACTIONS(857), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2433), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 6, + ACTIONS(2431), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 8, + ACTIONS(855), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [84684] = 12, - ACTIONS(1161), 1, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [23503] = 12, + ACTIONS(87), 1, sym__if_else_separator, - ACTIONS(2106), 1, + ACTIONS(2333), 1, anon_sym_in, - ACTIONS(2112), 1, + ACTIONS(2337), 1, anon_sym_QMARK, - ACTIONS(2122), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2124), 1, + ACTIONS(2349), 1, anon_sym_PIPE_PIPE, - ACTIONS(2114), 2, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, + ACTIONS(2343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2120), 2, + ACTIONS(2345), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2172), 2, + ACTIONS(2383), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 3, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, + ACTIONS(2335), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1159), 7, + ACTIONS(43), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -96113,41 +144950,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [84738] = 12, - ACTIONS(1179), 1, + [23557] = 12, + ACTIONS(1215), 1, sym__if_else_separator, - ACTIONS(2106), 1, + ACTIONS(2333), 1, anon_sym_in, - ACTIONS(2112), 1, + ACTIONS(2337), 1, anon_sym_QMARK, - ACTIONS(2122), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2124), 1, + ACTIONS(2349), 1, anon_sym_PIPE_PIPE, - ACTIONS(2114), 2, + ACTIONS(2339), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, + ACTIONS(2343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2120), 2, + ACTIONS(2345), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2172), 2, + ACTIONS(2383), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 3, + ACTIONS(2341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, + ACTIONS(2335), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 7, + ACTIONS(1213), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -96155,12 +144992,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [84792] = 3, - ACTIONS(674), 1, + [23611] = 12, + ACTIONS(1211), 1, sym__if_else_separator, - ACTIONS(1319), 1, + ACTIONS(2333), 1, + anon_sym_in, + ACTIONS(2337), 1, + anon_sym_QMARK, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2383), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2341), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1209), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [23665] = 5, + ACTIONS(921), 2, sym_concatenating_space, - ACTIONS(666), 27, + sym__if_else_separator, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -96173,6 +145061,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [23705] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2319), 1, + anon_sym_LBRACK, + ACTIONS(2435), 1, + anon_sym_LT, + ACTIONS(755), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, anon_sym_STAR, @@ -96188,56 +145103,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84828] = 12, - ACTIONS(1183), 1, + [23743] = 3, + ACTIONS(921), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2106), 1, - anon_sym_in, - ACTIONS(2112), 1, - anon_sym_QMARK, - ACTIONS(2122), 1, - anon_sym_AMP_AMP, - ACTIONS(2124), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2114), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2172), 2, + ACTIONS(919), 25, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 3, + anon_sym_QMARK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1181), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [84882] = 4, - ACTIONS(716), 1, - sym_concatenating_space, - ACTIONS(2078), 1, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [23779] = 4, + ACTIONS(759), 1, + sym__if_else_separator, + ACTIONS(2311), 1, anon_sym_LBRACK, - ACTIONS(2186), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(714), 26, + ACTIONS(755), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -96264,54 +145170,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84920] = 12, - ACTIONS(83), 1, + [23817] = 3, + ACTIONS(799), 1, sym__if_else_separator, - ACTIONS(2106), 1, + ACTIONS(2361), 1, + sym_regex_flags, + ACTIONS(795), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(2112), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(2122), 1, - anon_sym_AMP_AMP, - ACTIONS(2124), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2114), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2120), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2172), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [23853] = 3, + ACTIONS(793), 1, + sym__if_else_separator, + ACTIONS(2359), 1, + sym_regex_flags, + ACTIONS(789), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 3, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(41), 7, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [23889] = 4, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 22, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [84974] = 3, - ACTIONS(860), 1, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [23927] = 3, + ACTIONS(799), 1, sym_concatenating_space, - ACTIONS(2140), 1, + ACTIONS(2365), 1, sym_regex_flags, - ACTIONS(856), 27, + ACTIONS(795), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -96339,56 +145303,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85010] = 12, - ACTIONS(1187), 1, - sym__if_else_separator, - ACTIONS(2106), 1, + [23963] = 11, + ACTIONS(2437), 1, anon_sym_in, - ACTIONS(2112), 1, + ACTIONS(2439), 1, anon_sym_QMARK, - ACTIONS(2122), 1, + ACTIONS(2441), 1, anon_sym_AMP_AMP, - ACTIONS(2124), 1, + ACTIONS(2443), 1, anon_sym_PIPE_PIPE, - ACTIONS(2114), 2, + ACTIONS(899), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2120), 2, + ACTIONS(2433), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2172), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2116), 3, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2108), 6, + ACTIONS(2431), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 7, + ACTIONS(897), 8, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [85064] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(2098), 1, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + [24015] = 4, + ACTIONS(759), 1, + sym_concatenating_space, + ACTIONS(2309), 1, anon_sym_LBRACK, - ACTIONS(2212), 1, + ACTIONS(2419), 1, anon_sym_LT, - ACTIONS(714), 26, + ACTIONS(755), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -96415,122 +145378,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85102] = 12, - ACTIONS(2194), 1, + [24053] = 12, + ACTIONS(2437), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2439), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2441), 1, anon_sym_AMP_AMP, - ACTIONS(2210), 1, + ACTIONS(2443), 1, anon_sym_PIPE_PIPE, - ACTIONS(916), 2, + ACTIONS(875), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2110), 2, + ACTIONS(2357), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2433), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(871), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + ACTIONS(2431), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24107] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2423), 1, + anon_sym_LBRACK, + ACTIONS(765), 5, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(767), 22, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, anon_sym_PIPE_AMP, - ACTIONS(2200), 2, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [24145] = 11, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2439), 1, + anon_sym_QMARK, + ACTIONS(2441), 1, + anon_sym_AMP_AMP, + ACTIONS(2443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(903), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2433), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(912), 6, + ACTIONS(2431), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(901), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, - ACTIONS(2196), 6, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + [24197] = 12, + ACTIONS(1181), 1, + sym__if_else_separator, + ACTIONS(2333), 1, + anon_sym_in, + ACTIONS(2337), 1, + anon_sym_QMARK, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2383), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2341), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [85156] = 5, - ACTIONS(910), 2, + ACTIONS(1179), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [24251] = 9, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2441), 1, + anon_sym_AMP_AMP, + ACTIONS(921), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2202), 3, + ACTIONS(2433), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(908), 20, + ACTIONS(2431), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [24299] = 8, + ACTIONS(2437), 1, anon_sym_in, + ACTIONS(921), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2433), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2431), 6, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(919), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [24345] = 7, + ACTIONS(909), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2433), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2431), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [85196] = 3, - ACTIONS(860), 1, - sym__if_else_separator, - ACTIONS(2136), 1, - sym_regex_flags, - ACTIONS(856), 27, + ACTIONS(907), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85232] = 3, - ACTIONS(852), 1, + [24389] = 3, + ACTIONS(733), 1, sym__if_else_separator, - ACTIONS(2134), 1, - sym_regex_flags, - ACTIONS(848), 27, + ACTIONS(2151), 1, + sym_concatenating_space, + ACTIONS(713), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -96558,18 +145684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85268] = 4, - ACTIONS(672), 1, + [24425] = 4, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(2214), 1, + ACTIONS(2423), 1, anon_sym_LBRACK, - ACTIONS(714), 5, + ACTIONS(755), 5, anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(716), 22, + ACTIONS(759), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -96592,282 +145718,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [85306] = 7, - ACTIONS(874), 2, + [24463] = 11, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2439), 1, + anon_sym_QMARK, + ACTIONS(2441), 1, + anon_sym_AMP_AMP, + ACTIONS(2443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(829), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2433), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 6, + ACTIONS(2431), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(862), 12, + ACTIONS(809), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [85350] = 5, - ACTIONS(780), 2, + [24515] = 6, + ACTIONS(921), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2202), 3, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(778), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, + ACTIONS(2431), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [85390] = 3, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2200), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 25, + ACTIONS(919), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85426] = 4, - ACTIONS(780), 2, + [24557] = 11, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2439), 1, + anon_sym_QMARK, + ACTIONS(2441), 1, + anon_sym_AMP_AMP, + ACTIONS(2443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(895), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2202), 3, + ACTIONS(2429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2433), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(778), 22, + ACTIONS(2431), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(893), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + [24609] = 12, + ACTIONS(875), 1, + sym_concatenating_space, + ACTIONS(2445), 1, + anon_sym_in, + ACTIONS(2449), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2459), 1, anon_sym_AMP_AMP, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - [85464] = 9, - ACTIONS(2194), 1, - anon_sym_in, - ACTIONS(2208), 1, - anon_sym_AMP_AMP, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2397), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 10, + ACTIONS(871), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2447), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24662] = 11, + ACTIONS(899), 1, + sym_concatenating_space, + ACTIONS(2445), 1, + anon_sym_in, + ACTIONS(2449), 1, anon_sym_QMARK, + ACTIONS(2459), 1, + anon_sym_AMP_AMP, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - [85512] = 6, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2202), 3, + ACTIONS(2457), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 14, + ACTIONS(897), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [85554] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LT, - ACTIONS(714), 4, - anon_sym_COLON, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(716), 22, + [24713] = 11, + ACTIONS(829), 1, sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2445), 1, anon_sym_in, - anon_sym_PIPE_AMP, + ACTIONS(2449), 1, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2459), 1, anon_sym_AMP_AMP, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [85594] = 8, - ACTIONS(2194), 1, - anon_sym_in, - ACTIONS(780), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 11, + ACTIONS(809), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -96876,30 +145957,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [85640] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(722), 5, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(724), 22, + [24764] = 2, + ACTIONS(2181), 1, sym_concatenating_space, + ACTIONS(713), 27, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -96912,15 +145988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [85678] = 4, - ACTIONS(716), 1, - sym__if_else_separator, - ACTIONS(2080), 1, + [24797] = 3, + ACTIONS(2319), 1, anon_sym_LBRACK, - ACTIONS(2188), 1, + ACTIONS(2435), 1, anon_sym_LT, - ACTIONS(714), 26, + ACTIONS(755), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -96947,76 +146020,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85716] = 7, - ACTIONS(890), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2200), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2204), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2206), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2202), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2196), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 12, + [24832] = 2, + ACTIONS(2381), 1, + sym_regex_flags, + ACTIONS(795), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85760] = 11, - ACTIONS(2194), 1, + [24865] = 11, + ACTIONS(903), 1, + sym_concatenating_space, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2449), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2210), 1, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(900), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(898), 8, + ACTIONS(901), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -97025,40 +146091,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [85812] = 11, - ACTIONS(2194), 1, + [24916] = 12, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(1135), 1, + sym__if_else_separator, + ACTIONS(2437), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2439), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2441), 1, anon_sym_AMP_AMP, - ACTIONS(2210), 1, + ACTIONS(2443), 1, anon_sym_PIPE_PIPE, - ACTIONS(896), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2433), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 6, + ACTIONS(2431), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(894), 8, - anon_sym_COMMA, + ACTIONS(1131), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -97066,61 +146132,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [85864] = 11, - ACTIONS(2194), 1, + [24969] = 12, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(1141), 1, + sym__if_else_separator, + ACTIONS(2437), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2439), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2441), 1, anon_sym_AMP_AMP, - ACTIONS(2210), 1, + ACTIONS(2443), 1, anon_sym_PIPE_PIPE, - ACTIONS(906), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2200), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2433), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 6, + ACTIONS(2431), 5, anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(904), 8, - anon_sym_COMMA, + ACTIONS(1139), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [85916] = 5, - ACTIONS(910), 1, - sym_concatenating_space, - ACTIONS(2218), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2220), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(908), 20, + [25022] = 2, + ACTIONS(2379), 1, + sym_regex_flags, + ACTIONS(789), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -97133,6 +146189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -97141,63 +146204,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85955] = 12, - ACTIONS(916), 1, + [25055] = 11, + ACTIONS(895), 1, sym_concatenating_space, - ACTIONS(2224), 1, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2228), 1, + ACTIONS(2449), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2178), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(912), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - ACTIONS(2226), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86008] = 4, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(722), 5, - anon_sym_COLON, + ACTIONS(893), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + [25106] = 3, + ACTIONS(2463), 1, + sym_regex_flags, + ACTIONS(789), 5, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(724), 21, + ACTIONS(793), 22, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -97215,88 +146276,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [86045] = 2, - ACTIONS(1441), 1, + [25141] = 7, + ACTIONS(909), 1, sym_concatenating_space, - ACTIONS(666), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [86078] = 3, - ACTIONS(2238), 1, - sym_regex_flags, - ACTIONS(848), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2453), 3, anon_sym_STAR, - ACTIONS(852), 22, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2447), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [86113] = 2, - ACTIONS(2170), 1, - sym_regex_flags, - ACTIONS(848), 27, + ACTIONS(907), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [25184] = 4, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(765), 5, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(767), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -97309,21 +146344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86146] = 3, - ACTIONS(2214), 1, + anon_sym_RBRACK, + [25221] = 5, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(722), 4, + ACTIONS(2467), 1, anon_sym_LT, + ACTIONS(755), 4, + anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(724), 23, - sym_concatenating_space, + ACTIONS(759), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_in, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -97341,89 +146379,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [86181] = 12, - ACTIONS(916), 1, + [25260] = 12, + ACTIONS(875), 1, sym__if_else_separator, - ACTIONS(2194), 1, + ACTIONS(2437), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2439), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2441), 1, anon_sym_AMP_AMP, - ACTIONS(2210), 1, + ACTIONS(2443), 1, anon_sym_PIPE_PIPE, - ACTIONS(2172), 2, + ACTIONS(2383), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2200), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2433), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(912), 6, + ACTIONS(871), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, - ACTIONS(2196), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [86234] = 3, - ACTIONS(2240), 1, - sym_regex_flags, - ACTIONS(856), 5, - anon_sym_in, + ACTIONS(2431), 6, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(860), 22, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [86269] = 4, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, + [25313] = 2, + ACTIONS(801), 4, anon_sym_LT, - ACTIONS(714), 3, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(716), 23, + ACTIONS(803), 24, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -97446,71 +146449,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [86306] = 3, - ACTIONS(2214), 1, anon_sym_LBRACK, - ACTIONS(714), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(716), 23, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [86341] = 11, - ACTIONS(906), 1, + [25346] = 9, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(2224), 1, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2228), 1, - anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2226), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(904), 8, + ACTIONS(919), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -97519,179 +146487,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [86392] = 11, - ACTIONS(900), 1, - sym_concatenating_space, - ACTIONS(2224), 1, - anon_sym_in, - ACTIONS(2228), 1, anon_sym_QMARK, - ACTIONS(2232), 1, - anon_sym_AMP_AMP, - ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - ACTIONS(2218), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2230), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2220), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2226), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(898), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - [86443] = 11, - ACTIONS(896), 1, - sym_concatenating_space, - ACTIONS(2224), 1, + [25393] = 11, + ACTIONS(2395), 1, anon_sym_in, - ACTIONS(2228), 1, + ACTIONS(2399), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2401), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - ACTIONS(2218), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2226), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(894), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - [86494] = 11, - ACTIONS(886), 1, - sym_concatenating_space, - ACTIONS(2224), 1, - anon_sym_in, - ACTIONS(2228), 1, - anon_sym_QMARK, - ACTIONS(2232), 1, - anon_sym_AMP_AMP, - ACTIONS(2234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2218), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2230), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2226), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 8, - anon_sym_COMMA, + ACTIONS(1209), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - [86545] = 7, - ACTIONS(890), 1, - sym_concatenating_space, - ACTIONS(2218), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2230), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2220), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2226), 6, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [25444] = 4, + ACTIONS(2421), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(888), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [86588] = 5, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(2236), 1, + ACTIONS(2423), 1, anon_sym_LBRACK, - ACTIONS(2242), 1, - anon_sym_LT, - ACTIONS(714), 4, - anon_sym_COLON, + ACTIONS(755), 3, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(716), 21, + ACTIONS(759), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -97701,78 +146554,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [86627] = 9, - ACTIONS(780), 1, - sym_concatenating_space, - ACTIONS(2224), 1, - anon_sym_in, - ACTIONS(2232), 1, - anon_sym_AMP_AMP, - ACTIONS(2218), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2230), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2220), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2226), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(778), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86674] = 8, - ACTIONS(780), 1, + anon_sym_RBRACK, + [25481] = 8, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(2224), 1, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2226), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 11, + ACTIONS(919), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -97784,53 +146599,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86719] = 6, - ACTIONS(780), 1, + [25526] = 2, + ACTIONS(769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(771), 24, sym_concatenating_space, - ACTIONS(2218), 2, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2220), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2226), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 14, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86760] = 4, - ACTIONS(672), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + [25559] = 4, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(2236), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(714), 5, + ACTIONS(755), 5, anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(716), 21, + ACTIONS(759), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -97852,17 +146663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [86797] = 4, - ACTIONS(780), 1, + [25596] = 3, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2220), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(778), 22, + ACTIONS(919), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -97875,6 +146682,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -97885,26 +146695,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86834] = 3, - ACTIONS(780), 1, + [25631] = 3, + ACTIONS(2423), 1, + anon_sym_LBRACK, + ACTIONS(765), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(767), 23, sym_concatenating_space, - ACTIONS(2218), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 25, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + anon_sym_RPAREN, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -97917,20 +146726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86869] = 5, - ACTIONS(780), 1, + anon_sym_RBRACK, + [25666] = 4, + ACTIONS(921), 1, sym_concatenating_space, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(778), 20, + ACTIONS(919), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -97943,6 +146750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -97951,30 +146760,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86908] = 7, - ACTIONS(874), 1, + [25703] = 3, + ACTIONS(2423), 1, + anon_sym_LBRACK, + ACTIONS(755), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(759), 23, sym_concatenating_space, - ACTIONS(2218), 2, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [25738] = 6, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2451), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2455), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2226), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(862), 12, + ACTIONS(919), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -97985,41 +146823,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86951] = 11, - ACTIONS(2158), 1, + [25779] = 11, + ACTIONS(2395), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2399), 1, anon_sym_QMARK, - ACTIONS(2162), 1, + ACTIONS(2401), 1, anon_sym_AMP_AMP, - ACTIONS(2164), 1, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2190), 2, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 7, + ACTIONS(1179), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -98027,152 +146867,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [87002] = 12, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(1113), 1, - sym__if_else_separator, - ACTIONS(2194), 1, - anon_sym_in, - ACTIONS(2198), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_AMP_AMP, - ACTIONS(2210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2200), 2, + [25830] = 7, + ACTIONS(857), 1, + sym_concatenating_space, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 5, + ACTIONS(2447), 6, anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 8, + ACTIONS(855), 12, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_GT, + anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [87055] = 12, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(1109), 1, - sym__if_else_separator, - ACTIONS(2194), 1, - anon_sym_in, - ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2208), 1, anon_sym_AMP_AMP, - ACTIONS(2210), 1, anon_sym_PIPE_PIPE, - ACTIONS(2200), 2, + [25873] = 5, + ACTIONS(921), 1, + sym_concatenating_space, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2196), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1105), 7, + ACTIONS(919), 20, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [87108] = 11, - ACTIONS(2158), 1, - anon_sym_in, - ACTIONS(2160), 1, anon_sym_QMARK, - ACTIONS(2162), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, - ACTIONS(2164), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + [25912] = 5, + ACTIONS(841), 1, + sym_concatenating_space, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2190), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2152), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1159), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [87159] = 3, - ACTIONS(2098), 1, - anon_sym_LBRACK, - ACTIONS(2212), 1, - anon_sym_LT, - ACTIONS(714), 26, + ACTIONS(839), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -98181,39 +146971,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [87194] = 11, - ACTIONS(2158), 1, + [25951] = 11, + ACTIONS(2395), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2399), 1, anon_sym_QMARK, - ACTIONS(2162), 1, + ACTIONS(2401), 1, anon_sym_AMP_AMP, - ACTIONS(2164), 1, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2190), 2, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1177), 7, + ACTIONS(1175), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -98221,80 +147011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [87245] = 2, - ACTIONS(2166), 1, + [26002] = 3, + ACTIONS(2469), 1, sym_regex_flags, - ACTIONS(856), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [87278] = 2, - ACTIONS(742), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(744), 24, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(795), 5, anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [87311] = 2, - ACTIONS(718), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(720), 24, + ACTIONS(799), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -98312,41 +147042,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_RBRACK, - [87344] = 11, - ACTIONS(2158), 1, + [26037] = 11, + ACTIONS(2395), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2399), 1, anon_sym_QMARK, - ACTIONS(2162), 1, + ACTIONS(2401), 1, anon_sym_AMP_AMP, - ACTIONS(2164), 1, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2190), 2, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1181), 7, + ACTIONS(1213), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -98354,39 +147083,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [87395] = 11, - ACTIONS(2158), 1, + [26088] = 11, + ACTIONS(2395), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2399), 1, anon_sym_QMARK, - ACTIONS(2162), 1, + ACTIONS(2401), 1, anon_sym_AMP_AMP, - ACTIONS(2164), 1, + ACTIONS(2403), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2387), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2393), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2190), 2, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2152), 3, + ACTIONS(2389), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2148), 6, + ACTIONS(2385), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(41), 7, + ACTIONS(43), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -98394,20 +147123,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [87446] = 5, - ACTIONS(2246), 1, - anon_sym_STAR, - ACTIONS(2244), 2, + [26139] = 11, + ACTIONS(2445), 1, + anon_sym_in, + ACTIONS(2449), 1, + anon_sym_QMARK, + ACTIONS(2459), 1, + anon_sym_AMP_AMP, + ACTIONS(2461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2409), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2455), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2457), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2453), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(778), 3, + ACTIONS(871), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + ACTIONS(2447), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26189] = 2, + ACTIONS(915), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(780), 19, + anon_sym_STAR, + ACTIONS(917), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -98416,6 +147177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -98427,13 +147192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [87484] = 2, - ACTIONS(844), 4, + [26221] = 3, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(919), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(846), 23, + ACTIONS(921), 21, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -98442,8 +147210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -98457,43 +147223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [87516] = 2, - ACTIONS(1997), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_while, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(1999), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [87548] = 2, - ACTIONS(790), 4, + [26255] = 2, + ACTIONS(885), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(792), 23, + ACTIONS(887), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -98517,54 +147253,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [87580] = 13, - ACTIONS(904), 1, + [26287] = 3, + ACTIONS(2473), 1, + sym_regex_flags, + ACTIONS(789), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2246), 1, anon_sym_STAR, - ACTIONS(2250), 1, - anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(793), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(2262), 1, - anon_sym_AMP_AMP, - ACTIONS(2264), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2244), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2258), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(906), 7, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [87634] = 2, - ACTIONS(742), 4, + [26321] = 5, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(919), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(744), 23, + ACTIONS(921), 19, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -98572,10 +147306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -98586,95 +147316,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_RBRACK, - [87666] = 11, - ACTIONS(2224), 1, + [26359] = 11, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2228), 1, + ACTIONS(2449), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2190), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(912), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - ACTIONS(2226), 6, + ACTIONS(2447), 5, anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87716] = 13, - ACTIONS(898), 1, + ACTIONS(1139), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - ACTIONS(2246), 1, + anon_sym_PIPE_AMP, + [26409] = 9, + ACTIONS(855), 1, + anon_sym_PIPE, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, - anon_sym_in, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2262), 1, - anon_sym_AMP_AMP, - ACTIONS(2264), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(900), 7, + ACTIONS(857), 11, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [87770] = 2, - ACTIONS(798), 4, + [26455] = 2, + ACTIONS(923), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(800), 23, + ACTIONS(925), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -98698,157 +147423,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [87802] = 13, - ACTIONS(894), 1, + [26487] = 2, + ACTIONS(927), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2246), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(929), 23, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_in, - ACTIONS(2254), 1, + anon_sym_COLON, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(2262), 1, - anon_sym_AMP_AMP, - ACTIONS(2264), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2244), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2258), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(896), 7, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [26519] = 2, + ACTIONS(889), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(891), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, - anon_sym_RBRACK, - [87856] = 2, - ACTIONS(1993), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_while, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(1995), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [87888] = 4, - ACTIONS(13), 1, - anon_sym_LBRACE, - STATE(1673), 1, - sym_block, - ACTIONS(2268), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(2266), 13, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [87924] = 13, - ACTIONS(876), 1, - anon_sym_PIPE, - ACTIONS(2246), 1, - anon_sym_STAR, - ACTIONS(2250), 1, - anon_sym_in, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2262), 1, - anon_sym_AMP_AMP, - ACTIONS(2264), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2244), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2258), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(886), 7, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [87978] = 2, - ACTIONS(794), 4, + [26551] = 2, + ACTIONS(881), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(796), 23, + ACTIONS(883), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -98872,65 +147513,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88010] = 9, - ACTIONS(888), 1, - anon_sym_PIPE, - ACTIONS(2246), 1, + [26583] = 6, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2258), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(890), 11, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [88056] = 3, - ACTIONS(2270), 1, - sym_regex_flags, - ACTIONS(856), 5, - anon_sym_in, + ACTIONS(919), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(860), 21, + ACTIONS(921), 17, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -98940,77 +147547,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88090] = 2, - ACTIONS(762), 4, - anon_sym_LT, - anon_sym_GT, + [26623] = 13, + ACTIONS(809), 1, anon_sym_PIPE, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(764), 23, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2487), 1, anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, + ACTIONS(2489), 1, anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [88122] = 4, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2242), 1, - anon_sym_LT, - ACTIONS(714), 3, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(716), 22, + ACTIONS(829), 7, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_RBRACK, + [26677] = 8, + ACTIONS(919), 1, + anon_sym_PIPE, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(921), 13, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88158] = 3, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(714), 4, + [26721] = 2, + ACTIONS(851), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(716), 22, + ACTIONS(853), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -99033,13 +147654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88192] = 2, - ACTIONS(718), 4, + [26753] = 2, + ACTIONS(935), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(720), 23, + ACTIONS(937), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -99061,15 +147683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_RBRACK, - [88224] = 2, - ACTIONS(836), 4, + [26785] = 2, + ACTIONS(835), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(838), 23, + ACTIONS(837), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -99093,165 +147714,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88256] = 11, - ACTIONS(778), 1, + [26817] = 2, + ACTIONS(911), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2246), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(913), 23, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_in, - ACTIONS(2262), 1, - anon_sym_AMP_AMP, - ACTIONS(2244), 2, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2258), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(780), 9, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88306] = 10, - ACTIONS(778), 1, + [26849] = 9, + ACTIONS(907), 1, anon_sym_PIPE, - ACTIONS(2246), 1, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, - anon_sym_in, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(780), 10, + ACTIONS(909), 11, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88354] = 8, - ACTIONS(778), 1, + [26895] = 10, + ACTIONS(919), 1, anon_sym_PIPE, - ACTIONS(2246), 1, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2244), 2, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2258), 4, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(780), 13, + ACTIONS(921), 10, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88398] = 11, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(2224), 1, - anon_sym_in, - ACTIONS(2228), 1, - anon_sym_QMARK, - ACTIONS(2232), 1, - anon_sym_AMP_AMP, - ACTIONS(2234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2218), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2230), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2220), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2226), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1105), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - [88448] = 2, - ACTIONS(778), 4, + [26943] = 2, + ACTIONS(931), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(780), 23, + ACTIONS(933), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -99275,13 +147849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88480] = 2, - ACTIONS(806), 4, + [26975] = 2, + ACTIONS(939), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(808), 23, + ACTIONS(941), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -99305,13 +147879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88512] = 2, - ACTIONS(802), 4, + [27007] = 2, + ACTIONS(765), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(804), 23, + ACTIONS(767), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -99335,14 +147909,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88544] = 2, - ACTIONS(722), 4, + [27039] = 2, + ACTIONS(801), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(724), 23, - sym_concatenating_space, + ACTIONS(803), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -99364,32 +147937,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_RBRACK, - [88576] = 6, - ACTIONS(2246), 1, + [27071] = 13, + ACTIONS(897), 1, + anon_sym_PIPE, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2244), 2, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2256), 2, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(778), 3, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(899), 7, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + [27125] = 3, + ACTIONS(713), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(780), 17, + anon_sym_STAR, + ACTIONS(719), 6, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(733), 17, + anon_sym_in, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -99398,51 +148011,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [88616] = 9, - ACTIONS(862), 1, + [27159] = 13, + ACTIONS(893), 1, anon_sym_PIPE, - ACTIONS(2246), 1, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2244), 2, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(874), 11, + ACTIONS(895), 7, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88662] = 2, - ACTIONS(816), 4, + [27213] = 2, + ACTIONS(859), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(818), 23, + ACTIONS(861), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -99466,74 +148082,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88694] = 2, - ACTIONS(812), 4, - anon_sym_LT, - anon_sym_GT, + [27245] = 13, + ACTIONS(901), 1, anon_sym_PIPE, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(814), 23, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2487), 1, anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, + ACTIONS(2489), 1, anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [88726] = 2, - ACTIONS(824), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(826), 23, + ACTIONS(903), 7, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, + anon_sym_RBRACK, + [27299] = 11, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(2445), 1, + anon_sym_in, + ACTIONS(2449), 1, anon_sym_QMARK, + ACTIONS(2459), 1, + anon_sym_AMP_AMP, + ACTIONS(2461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2457), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2453), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2447), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1131), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + [27349] = 11, + ACTIONS(919), 1, + anon_sym_PIPE, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(921), 9, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88758] = 2, - ACTIONS(828), 4, + [27399] = 2, + ACTIONS(769), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(830), 23, - sym_concatenating_space, + ACTIONS(771), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -99555,15 +148229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_RBRACK, - [88790] = 2, - ACTIONS(786), 4, + [27431] = 3, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(765), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(788), 23, - sym_concatenating_space, + ACTIONS(767), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -99586,97 +148262,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88822] = 2, - ACTIONS(806), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(808), 15, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [88854] = 11, - ACTIONS(1107), 1, - anon_sym_COMMA, - ACTIONS(2224), 1, + [27465] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2228), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2218), 2, + ACTIONS(2495), 1, + anon_sym_PIPE, + ACTIONS(2497), 1, + anon_sym_PIPE_AMP, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2226), 5, - anon_sym_LT, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - [88904] = 3, - ACTIONS(1727), 1, + ACTIONS(875), 6, sym_concatenating_space, - ACTIONS(666), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(674), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_RBRACK, + [27521] = 6, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(839), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(841), 17, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -99686,55 +148338,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88938] = 14, - ACTIONS(2246), 1, - anon_sym_STAR, - ACTIONS(2250), 1, + [27561] = 3, + ACTIONS(2499), 1, + sym_regex_flags, + ACTIONS(795), 5, anon_sym_in, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2262), 1, - anon_sym_AMP_AMP, - ACTIONS(2264), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2272), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2274), 1, + anon_sym_STAR, + ACTIONS(799), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_AMP, - ACTIONS(2244), 2, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2258), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(916), 6, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [88994] = 2, - ACTIONS(820), 4, + [27595] = 2, + ACTIONS(863), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(822), 23, + ACTIONS(865), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -99758,16 +148399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89026] = 3, - ACTIONS(2244), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(778), 4, + [27627] = 2, + ACTIONS(867), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(780), 21, + ACTIONS(869), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -99776,6 +148414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -99789,44 +148429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89060] = 2, - ACTIONS(790), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(792), 15, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [89092] = 2, - ACTIONS(782), 4, + [27659] = 4, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, anon_sym_LT, + ACTIONS(755), 3, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(784), 23, - sym_concatenating_space, + ACTIONS(759), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -99849,13 +148461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89124] = 2, - ACTIONS(766), 4, + [27695] = 2, + ACTIONS(919), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(768), 23, + ACTIONS(921), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -99879,15 +148491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89156] = 3, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(722), 4, + [27727] = 2, + ACTIONS(847), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(724), 22, + ACTIONS(849), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -99910,21 +148521,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89190] = 3, - ACTIONS(666), 4, + [27759] = 3, + ACTIONS(2205), 1, + sym_concatenating_space, + ACTIONS(713), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(686), 6, - sym_concatenating_space, + ACTIONS(733), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(674), 17, anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -99941,19 +148551,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [89224] = 3, - ACTIONS(2276), 1, - sym_regex_flags, - ACTIONS(848), 5, - anon_sym_in, + anon_sym_RBRACK, + [27793] = 3, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(755), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(852), 21, + ACTIONS(759), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -99972,23 +148583,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89258] = 6, - ACTIONS(2246), 1, + [27827] = 2, + ACTIONS(843), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_STAR, - ACTIONS(2244), 2, + ACTIONS(845), 23, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2256), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(908), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [27859] = 2, + ACTIONS(877), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(910), 17, + anon_sym_STAR, + ACTIONS(879), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -99997,6 +148628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -100006,42 +148643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89298] = 2, - ACTIONS(2280), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(2278), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [89329] = 2, - ACTIONS(786), 4, + [27891] = 2, + ACTIONS(831), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(788), 22, + ACTIONS(833), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100064,13 +148673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89360] = 2, - ACTIONS(762), 4, + [27923] = 2, + ACTIONS(851), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(764), 22, + ACTIONS(853), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100093,42 +148702,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89391] = 2, - ACTIONS(2284), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, + [27954] = 12, + ACTIONS(87), 1, + sym__if_else_separator, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2439), 1, + anon_sym_QMARK, + ACTIONS(2441), 1, + anon_sym_AMP_AMP, + ACTIONS(2443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2383), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(2282), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2433), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2427), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [89422] = 2, - ACTIONS(816), 4, + anon_sym_PERCENT, + ACTIONS(43), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + ACTIONS(2431), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [28005] = 12, + ACTIONS(1211), 1, + sym__if_else_separator, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2439), 1, + anon_sym_QMARK, + ACTIONS(2441), 1, + anon_sym_AMP_AMP, + ACTIONS(2443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2383), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2433), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1209), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + ACTIONS(2431), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [28056] = 12, + ACTIONS(1215), 1, + sym__if_else_separator, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2439), 1, + anon_sym_QMARK, + ACTIONS(2441), 1, + anon_sym_AMP_AMP, + ACTIONS(2443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2383), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2433), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1213), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + ACTIONS(2431), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [28107] = 2, + ACTIONS(911), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(818), 22, + ACTIONS(913), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100151,13 +148848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89453] = 2, - ACTIONS(794), 4, + [28138] = 2, + ACTIONS(915), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(796), 22, + ACTIONS(917), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100180,13 +148877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89484] = 2, - ACTIONS(844), 4, + [28169] = 2, + ACTIONS(867), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(846), 22, + ACTIONS(869), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100209,13 +148906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89515] = 2, - ACTIONS(722), 4, + [28200] = 2, + ACTIONS(923), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(724), 22, + ACTIONS(925), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100238,13 +148935,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89546] = 2, - ACTIONS(828), 4, + [28231] = 12, + ACTIONS(1181), 1, + sym__if_else_separator, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2439), 1, + anon_sym_QMARK, + ACTIONS(2441), 1, + anon_sym_AMP_AMP, + ACTIONS(2443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2383), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2425), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2433), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1179), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + ACTIONS(2431), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [28282] = 2, + ACTIONS(765), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(830), 22, + ACTIONS(767), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100267,13 +149003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89577] = 2, - ACTIONS(782), 4, + [28313] = 2, + ACTIONS(927), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(784), 22, + ACTIONS(929), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100296,13 +149032,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89608] = 2, - ACTIONS(766), 4, + [28344] = 2, + ACTIONS(939), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(768), 22, + ACTIONS(941), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100325,13 +149061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89639] = 2, - ACTIONS(824), 4, + [28375] = 2, + ACTIONS(877), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(826), 22, + ACTIONS(879), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100354,13 +149090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89670] = 2, - ACTIONS(812), 4, + [28406] = 2, + ACTIONS(931), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(814), 22, + ACTIONS(933), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100383,229 +149119,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [89701] = 14, - ACTIONS(2246), 1, + [28437] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(916), 5, + ACTIONS(875), 5, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [89756] = 2, - ACTIONS(2292), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(2290), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, + [28492] = 2, + ACTIONS(935), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(937), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [89787] = 2, - ACTIONS(1249), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(1247), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [89818] = 12, - ACTIONS(1187), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [28523] = 12, + ACTIONS(1177), 1, sym__if_else_separator, - ACTIONS(2194), 1, + ACTIONS(2437), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2439), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2441), 1, anon_sym_AMP_AMP, - ACTIONS(2210), 1, + ACTIONS(2443), 1, anon_sym_PIPE_PIPE, - ACTIONS(2172), 2, + ACTIONS(2383), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2200), 2, + ACTIONS(2425), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, + ACTIONS(2429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2206), 2, + ACTIONS(2433), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2202), 3, + ACTIONS(2427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1185), 4, + ACTIONS(1175), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2196), 6, + ACTIONS(2431), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89869] = 12, - ACTIONS(1179), 1, - sym__if_else_separator, - ACTIONS(2194), 1, - anon_sym_in, - ACTIONS(2198), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_AMP_AMP, - ACTIONS(2210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2172), 2, + [28574] = 2, + ACTIONS(835), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2200), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2204), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2206), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2202), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1177), 4, + ACTIONS(837), 22, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - ACTIONS(2196), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [89920] = 12, - ACTIONS(1183), 1, - sym__if_else_separator, - ACTIONS(2194), 1, + anon_sym_RPAREN, anon_sym_in, - ACTIONS(2198), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_AMP_AMP, - ACTIONS(2210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2172), 2, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, - ACTIONS(2200), 2, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2206), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2202), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1181), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - ACTIONS(2196), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89971] = 2, - ACTIONS(836), 4, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [28605] = 2, + ACTIONS(859), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(838), 22, + ACTIONS(861), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -100628,5497 +149286,5619 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [90002] = 12, - ACTIONS(83), 1, - sym__if_else_separator, - ACTIONS(2194), 1, - anon_sym_in, - ACTIONS(2198), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_AMP_AMP, - ACTIONS(2210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2172), 2, + [28636] = 2, + ACTIONS(863), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(865), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, - ACTIONS(2200), 2, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2206), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2202), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(41), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - ACTIONS(2196), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90053] = 2, - ACTIONS(2296), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(2294), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [90084] = 12, - ACTIONS(1161), 1, - sym__if_else_separator, - ACTIONS(2194), 1, - anon_sym_in, - ACTIONS(2198), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, - ACTIONS(2210), 1, anon_sym_PIPE_PIPE, - ACTIONS(2172), 2, + anon_sym_RBRACK, + [28667] = 2, + ACTIONS(831), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(833), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, - ACTIONS(2200), 2, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2204), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2206), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2202), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1159), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - ACTIONS(2196), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90135] = 2, - ACTIONS(2268), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(2266), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [90166] = 11, - ACTIONS(2224), 1, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [28698] = 11, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2228), 1, + ACTIONS(2449), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2190), 2, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1181), 4, + ACTIONS(43), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2226), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90214] = 11, - ACTIONS(2224), 1, + [28746] = 11, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2228), 1, + ACTIONS(2449), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2190), 2, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(41), 4, + ACTIONS(1213), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2226), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90262] = 11, - ACTIONS(2224), 1, + [28794] = 11, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2228), 1, + ACTIONS(2449), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2190), 2, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1185), 4, + ACTIONS(1209), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2226), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90310] = 11, - ACTIONS(2224), 1, + [28842] = 11, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2228), 1, + ACTIONS(2449), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2190), 2, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1159), 4, + ACTIONS(1175), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2226), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90358] = 11, - ACTIONS(2224), 1, + [28890] = 11, + ACTIONS(2445), 1, anon_sym_in, - ACTIONS(2228), 1, + ACTIONS(2449), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2190), 2, + ACTIONS(2409), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2218), 2, + ACTIONS(2451), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2222), 2, + ACTIONS(2455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2220), 3, + ACTIONS(2453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1177), 4, + ACTIONS(1179), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2226), 6, + ACTIONS(2447), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90406] = 16, - ACTIONS(2246), 1, + [28938] = 16, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2298), 1, + ACTIONS(2505), 1, anon_sym_COMMA, - ACTIONS(2300), 1, + ACTIONS(2507), 1, anon_sym_RPAREN, - STATE(2024), 1, + STATE(2214), 1, aux_sym_args_repeat1, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90463] = 15, - ACTIONS(2246), 1, + [28995] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(1109), 2, + ACTIONS(1135), 2, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90518] = 15, - ACTIONS(2246), 1, + [29050] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2304), 1, - anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2511), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90572] = 15, - ACTIONS(2246), 1, + [29104] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2306), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2513), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90626] = 15, - ACTIONS(2246), 1, + [29158] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2308), 1, - anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2515), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90680] = 15, - ACTIONS(2246), 1, + [29212] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2310), 1, + ACTIONS(2517), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90734] = 15, - ACTIONS(2246), 1, + [29266] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2312), 1, + ACTIONS(2519), 1, anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90788] = 14, - ACTIONS(2246), 1, + [29320] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2244), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2248), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2314), 2, + ACTIONS(2509), 1, anon_sym_COMMA, + ACTIONS(2521), 1, anon_sym_RPAREN, - ACTIONS(2258), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [90840] = 15, - ACTIONS(2246), 1, - anon_sym_STAR, - ACTIONS(2250), 1, - anon_sym_in, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2262), 1, - anon_sym_AMP_AMP, - ACTIONS(2264), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - anon_sym_PIPE_AMP, - ACTIONS(2302), 1, - anon_sym_COMMA, - ACTIONS(2316), 1, - anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90894] = 15, - ACTIONS(2246), 1, + [29374] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2318), 1, + ACTIONS(2523), 1, anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90948] = 15, - ACTIONS(2246), 1, + [29428] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2320), 1, + ACTIONS(2525), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91002] = 15, - ACTIONS(2246), 1, + [29482] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2322), 1, + ACTIONS(2527), 1, anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91056] = 15, - ACTIONS(2246), 1, + [29536] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2324), 1, - anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2529), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91110] = 15, - ACTIONS(2246), 1, + [29590] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2326), 1, + ACTIONS(2531), 1, anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91164] = 15, - ACTIONS(2246), 1, + [29644] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2533), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91218] = 15, - ACTIONS(2246), 1, + [29698] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2330), 1, + ACTIONS(2535), 1, anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91272] = 15, - ACTIONS(2246), 1, + [29752] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2332), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2537), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91326] = 15, - ACTIONS(2246), 1, + [29806] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2334), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2539), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91380] = 15, - ACTIONS(2246), 1, + [29860] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, - anon_sym_COMMA, - ACTIONS(2336), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [91434] = 15, - ACTIONS(2246), 1, - anon_sym_STAR, - ACTIONS(2250), 1, - anon_sym_in, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2262), 1, - anon_sym_AMP_AMP, - ACTIONS(2264), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2541), 2, anon_sym_COMMA, - ACTIONS(2338), 1, - anon_sym_RBRACK, - ACTIONS(2244), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2248), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + anon_sym_RPAREN, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91488] = 15, - ACTIONS(1113), 1, - anon_sym_RPAREN, - ACTIONS(2246), 1, + [29912] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2244), 2, + ACTIONS(2543), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91542] = 15, - ACTIONS(2246), 1, + [29966] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2340), 1, + ACTIONS(2545), 1, anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91596] = 15, - ACTIONS(2246), 1, + [30020] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2342), 1, + ACTIONS(2547), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91650] = 15, - ACTIONS(2246), 1, + [30074] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2344), 1, + ACTIONS(2549), 1, anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91704] = 15, - ACTIONS(2246), 1, + [30128] = 15, + ACTIONS(1141), 1, + anon_sym_RPAREN, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2346), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91758] = 15, - ACTIONS(2246), 1, + [30182] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2348), 1, + ACTIONS(2551), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91812] = 15, - ACTIONS(2246), 1, + [30236] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2350), 1, - anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2553), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91866] = 15, - ACTIONS(2246), 1, + [30290] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2352), 1, + ACTIONS(2555), 1, anon_sym_RBRACK, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91920] = 15, - ACTIONS(1113), 1, - anon_sym_RPAREN, - ACTIONS(2246), 1, + [30344] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2244), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2248), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2258), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [91974] = 14, - ACTIONS(2246), 1, - anon_sym_STAR, - ACTIONS(2250), 1, - anon_sym_in, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2262), 1, - anon_sym_AMP_AMP, - ACTIONS(2264), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - anon_sym_PIPE_AMP, - ACTIONS(2354), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2557), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92025] = 14, - ACTIONS(2246), 1, + [30398] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2356), 1, + ACTIONS(2509), 1, + anon_sym_COMMA, + ACTIONS(2559), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92076] = 14, - ACTIONS(2246), 1, + [30452] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2358), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2509), 1, + anon_sym_COMMA, + ACTIONS(2561), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92127] = 14, - ACTIONS(2246), 1, + [30506] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2360), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2509), 1, + anon_sym_COMMA, + ACTIONS(2563), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92178] = 14, - ACTIONS(2246), 1, + [30560] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2362), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2509), 1, + anon_sym_COMMA, + ACTIONS(2565), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92229] = 14, - ACTIONS(2246), 1, + [30614] = 15, + ACTIONS(1141), 1, + anon_sym_RPAREN, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2364), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2509), 1, + anon_sym_COMMA, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92280] = 14, - ACTIONS(2246), 1, + [30668] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2366), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2509), 1, + anon_sym_COMMA, + ACTIONS(2567), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92331] = 14, - ACTIONS(2246), 1, + [30722] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2368), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2509), 1, + anon_sym_COMMA, + ACTIONS(2569), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92382] = 14, - ACTIONS(2246), 1, + [30776] = 15, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2509), 1, + anon_sym_COMMA, + ACTIONS(2571), 1, + anon_sym_RBRACK, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92433] = 14, - ACTIONS(2246), 1, + [30830] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2372), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2573), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92484] = 14, - ACTIONS(2246), 1, + [30881] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2374), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2575), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92535] = 14, - ACTIONS(2246), 1, + [30932] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2376), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2577), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92586] = 14, - ACTIONS(2246), 1, + [30983] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2378), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2509), 1, + anon_sym_COMMA, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92637] = 14, - ACTIONS(2246), 1, + [31034] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2380), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2579), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92688] = 14, - ACTIONS(2246), 1, + [31085] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2382), 1, + ACTIONS(2581), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92739] = 14, - ACTIONS(2246), 1, + [31136] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2384), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2583), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92790] = 14, - ACTIONS(2246), 1, + [31187] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2386), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2585), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92841] = 14, - ACTIONS(2246), 1, + [31238] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2388), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2587), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92892] = 14, - ACTIONS(2246), 1, + [31289] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2390), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2589), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92943] = 14, - ACTIONS(2246), 1, + [31340] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2392), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2591), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92994] = 14, - ACTIONS(2246), 1, + [31391] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2394), 1, + ACTIONS(2593), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93045] = 14, - ACTIONS(2246), 1, + [31442] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, - anon_sym_COMMA, - ACTIONS(2244), 2, + ACTIONS(2595), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93096] = 14, - ACTIONS(2246), 1, + [31493] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2396), 1, + ACTIONS(2597), 1, anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93147] = 14, - ACTIONS(2246), 1, + [31544] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2398), 1, + ACTIONS(2599), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93198] = 14, - ACTIONS(2246), 1, + [31595] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2400), 1, + ACTIONS(2601), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93249] = 14, - ACTIONS(2246), 1, + [31646] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2402), 1, + ACTIONS(2603), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93300] = 14, - ACTIONS(2246), 1, + [31697] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2404), 1, + ACTIONS(2605), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [31748] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2607), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93351] = 14, - ACTIONS(2246), 1, + [31799] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2406), 1, + ACTIONS(2609), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93402] = 14, - ACTIONS(2246), 1, + [31850] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2408), 1, + ACTIONS(2611), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93453] = 14, - ACTIONS(2246), 1, + [31901] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2410), 1, + ACTIONS(2613), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93504] = 14, - ACTIONS(2246), 1, + [31952] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2412), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2615), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93555] = 14, - ACTIONS(2246), 1, + [32003] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2414), 1, + ACTIONS(2617), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93606] = 14, - ACTIONS(2246), 1, + [32054] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2416), 1, + ACTIONS(2619), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93657] = 14, - ACTIONS(2246), 1, + [32105] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2418), 1, + ACTIONS(2621), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [32156] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2623), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93708] = 14, - ACTIONS(2246), 1, + [32207] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2420), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2625), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93759] = 14, - ACTIONS(2246), 1, + [32258] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2422), 1, + ACTIONS(2627), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93810] = 14, - ACTIONS(2246), 1, + [32309] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2424), 1, + ACTIONS(2629), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [32360] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2631), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93861] = 14, - ACTIONS(2246), 1, + [32411] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2426), 1, + ACTIONS(2633), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93912] = 14, - ACTIONS(2246), 1, + [32462] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2428), 1, + ACTIONS(2635), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93963] = 14, - ACTIONS(2246), 1, + [32513] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2430), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2637), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94014] = 14, - ACTIONS(2246), 1, + [32564] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2432), 1, + ACTIONS(2639), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94065] = 14, - ACTIONS(2246), 1, + [32615] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2434), 1, + ACTIONS(2641), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94116] = 14, - ACTIONS(2246), 1, + [32666] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2436), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2643), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94167] = 14, - ACTIONS(2246), 1, + [32717] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2438), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2645), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [32768] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2647), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94218] = 14, - ACTIONS(2246), 1, + [32819] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2440), 1, + ACTIONS(2649), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94269] = 14, - ACTIONS(2246), 1, + [32870] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2442), 1, + ACTIONS(2651), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94320] = 14, - ACTIONS(2246), 1, + [32921] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2444), 1, + ACTIONS(2653), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [32972] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2655), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94371] = 14, - ACTIONS(2246), 1, + [33023] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2446), 1, + ACTIONS(2657), 1, + anon_sym_COLON, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [33074] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2659), 1, anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94422] = 14, - ACTIONS(2246), 1, + [33125] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2448), 1, + ACTIONS(2661), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [33176] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2663), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94473] = 14, - ACTIONS(2246), 1, + [33227] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2450), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2665), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94524] = 14, - ACTIONS(2246), 1, + [33278] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2452), 1, + ACTIONS(2667), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94575] = 14, - ACTIONS(2246), 1, + [33329] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2454), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2669), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94626] = 14, - ACTIONS(2246), 1, + [33380] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2456), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2671), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94677] = 14, - ACTIONS(2246), 1, + [33431] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2458), 1, + ACTIONS(2673), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94728] = 14, - ACTIONS(2246), 1, + [33482] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2460), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2675), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94779] = 14, - ACTIONS(2246), 1, + [33533] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2462), 1, + ACTIONS(2677), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94830] = 14, - ACTIONS(2246), 1, + [33584] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2464), 1, + ACTIONS(2679), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [33635] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2681), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94881] = 14, - ACTIONS(2246), 1, + [33686] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2466), 1, + ACTIONS(2683), 1, anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94932] = 14, - ACTIONS(2246), 1, + [33737] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2468), 1, + ACTIONS(2685), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94983] = 14, - ACTIONS(2246), 1, + [33788] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2470), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2687), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2477), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2483), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [33839] = 14, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(2487), 1, + anon_sym_in, + ACTIONS(2489), 1, + anon_sym_QMARK, + ACTIONS(2491), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2689), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95034] = 14, - ACTIONS(2246), 1, + [33890] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2472), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2691), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95085] = 14, - ACTIONS(2246), 1, + [33941] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2474), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2693), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95136] = 14, - ACTIONS(2246), 1, + [33992] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2476), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2695), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95187] = 14, - ACTIONS(2246), 1, + [34043] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2478), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2697), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95238] = 14, - ACTIONS(2246), 1, + [34094] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2480), 1, + ACTIONS(2699), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95289] = 14, - ACTIONS(2246), 1, + [34145] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2482), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2701), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95340] = 14, - ACTIONS(2246), 1, + [34196] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2484), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2703), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95391] = 14, - ACTIONS(2246), 1, + [34247] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2486), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2705), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95442] = 14, - ACTIONS(2246), 1, + [34298] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2488), 1, + ACTIONS(2707), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95493] = 14, - ACTIONS(2246), 1, + [34349] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2490), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2709), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95544] = 14, - ACTIONS(2246), 1, + [34400] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2492), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2711), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95595] = 14, - ACTIONS(2246), 1, + [34451] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2494), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2713), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95646] = 14, - ACTIONS(2246), 1, + [34502] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2496), 1, + ACTIONS(2715), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95697] = 14, - ACTIONS(2246), 1, + [34553] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2498), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2717), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95748] = 14, - ACTIONS(2246), 1, + [34604] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2500), 1, + ACTIONS(2719), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95799] = 14, - ACTIONS(2246), 1, + [34655] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2502), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2721), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95850] = 14, - ACTIONS(2246), 1, + [34706] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2504), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2723), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95901] = 14, - ACTIONS(2246), 1, + [34757] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2506), 1, + ACTIONS(2725), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95952] = 14, - ACTIONS(2246), 1, + [34808] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2508), 1, + ACTIONS(2727), 1, anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96003] = 14, - ACTIONS(2246), 1, + [34859] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2510), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2729), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96054] = 14, - ACTIONS(2246), 1, + [34910] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2512), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2731), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96105] = 14, - ACTIONS(2246), 1, + [34961] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2514), 1, + ACTIONS(2733), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96156] = 14, - ACTIONS(2246), 1, + [35012] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2516), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2735), 1, + anon_sym_SEMI, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96207] = 14, - ACTIONS(2246), 1, + [35063] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2518), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2737), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96258] = 14, - ACTIONS(2246), 1, + [35114] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2520), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2739), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96309] = 14, - ACTIONS(2246), 1, + [35165] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2522), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2741), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96360] = 14, - ACTIONS(2246), 1, + [35216] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2524), 1, + ACTIONS(2743), 1, anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96411] = 14, - ACTIONS(2246), 1, + [35267] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2526), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2745), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96462] = 14, - ACTIONS(2246), 1, + [35318] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2528), 1, - anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2747), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96513] = 14, - ACTIONS(2246), 1, + [35369] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2530), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2749), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96564] = 14, - ACTIONS(2246), 1, + [35420] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2532), 1, + ACTIONS(2751), 1, anon_sym_SEMI, - ACTIONS(2244), 2, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96615] = 14, - ACTIONS(2246), 1, + [35471] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2534), 1, - anon_sym_COLON, - ACTIONS(2244), 2, + ACTIONS(2753), 1, + anon_sym_RPAREN, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96666] = 14, - ACTIONS(2246), 1, + [35522] = 14, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2250), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2536), 1, - anon_sym_RPAREN, - ACTIONS(2244), 2, + ACTIONS(2755), 1, + anon_sym_COLON, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96717] = 13, - ACTIONS(1153), 1, + [35573] = 13, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(1167), 1, - anon_sym_AMP_AMP, - ACTIONS(1173), 1, - anon_sym_QMARK, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2538), 1, + ACTIONS(2757), 1, anon_sym_in, - ACTIONS(1147), 2, + ACTIONS(2759), 1, + anon_sym_QMARK, + ACTIONS(2771), 1, + anon_sym_AMP_AMP, + ACTIONS(2773), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2431), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1151), 2, + ACTIONS(2761), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2540), 2, + ACTIONS(2763), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2542), 2, + ACTIONS(2765), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1157), 4, + ACTIONS(2769), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2767), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96765] = 13, - ACTIONS(928), 1, + [35621] = 13, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2544), 1, + ACTIONS(2775), 1, anon_sym_in, - ACTIONS(2546), 1, + ACTIONS(2777), 1, anon_sym_QMARK, - ACTIONS(2558), 1, + ACTIONS(2789), 1, anon_sym_AMP_AMP, - ACTIONS(2560), 1, + ACTIONS(2791), 1, anon_sym_PIPE_PIPE, - ACTIONS(920), 2, + ACTIONS(1145), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2548), 2, + ACTIONS(2779), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2550), 2, + ACTIONS(2781), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2552), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(2787), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2554), 4, + ACTIONS(2785), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96813] = 13, - ACTIONS(2116), 1, + [35669] = 13, + ACTIONS(1191), 1, + anon_sym_QMARK, + ACTIONS(1197), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(1205), 1, + anon_sym_AMP_AMP, + ACTIONS(1207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2562), 1, + ACTIONS(2793), 1, anon_sym_in, - ACTIONS(2564), 1, - anon_sym_QMARK, - ACTIONS(2576), 1, - anon_sym_AMP_AMP, - ACTIONS(2578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2108), 2, + ACTIONS(1185), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 2, + ACTIONS(1195), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2568), 2, + ACTIONS(1203), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2795), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 2, + ACTIONS(2797), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2574), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2572), 4, + ACTIONS(1201), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96861] = 13, - ACTIONS(2246), 1, - anon_sym_STAR, - ACTIONS(2250), 1, + [35717] = 13, + ACTIONS(2251), 1, anon_sym_in, - ACTIONS(2254), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2262), 1, + ACTIONS(2261), 1, + anon_sym_STAR, + ACTIONS(2269), 1, anon_sym_AMP_AMP, - ACTIONS(2264), 1, + ACTIONS(2271), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2244), 2, + ACTIONS(2253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2259), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2248), 2, + ACTIONS(2267), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2799), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 2, + ACTIONS(2801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2260), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2258), 4, + ACTIONS(2265), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96909] = 13, - ACTIONS(1123), 1, + [35765] = 13, + ACTIONS(2341), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2580), 1, + ACTIONS(2803), 1, anon_sym_in, - ACTIONS(2582), 1, + ACTIONS(2805), 1, anon_sym_QMARK, - ACTIONS(2594), 1, + ACTIONS(2817), 1, anon_sym_AMP_AMP, - ACTIONS(2596), 1, + ACTIONS(2819), 1, anon_sym_PIPE_PIPE, - ACTIONS(1117), 2, + ACTIONS(2335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2584), 2, + ACTIONS(2807), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2586), 2, + ACTIONS(2809), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2588), 2, + ACTIONS(2811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2592), 2, + ACTIONS(2815), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2590), 4, + ACTIONS(2813), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96957] = 13, - ACTIONS(2152), 1, + [35813] = 13, + ACTIONS(819), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2598), 1, + ACTIONS(2821), 1, anon_sym_in, - ACTIONS(2600), 1, + ACTIONS(2823), 1, anon_sym_QMARK, - ACTIONS(2612), 1, + ACTIONS(2835), 1, anon_sym_AMP_AMP, - ACTIONS(2614), 1, + ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2148), 2, + ACTIONS(813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2602), 2, + ACTIONS(2825), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2604), 2, + ACTIONS(2827), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2606), 2, + ACTIONS(2829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2833), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2608), 4, + ACTIONS(2831), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97005] = 13, - ACTIONS(1215), 1, + [35861] = 13, + ACTIONS(2235), 1, anon_sym_STAR, - ACTIONS(1231), 1, - anon_sym_QMARK, - ACTIONS(1237), 1, - anon_sym_AMP_AMP, - ACTIONS(1239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2616), 1, + ACTIONS(2839), 1, anon_sym_in, - ACTIONS(1213), 2, + ACTIONS(2841), 1, + anon_sym_QMARK, + ACTIONS(2853), 1, + anon_sym_AMP_AMP, + ACTIONS(2855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2843), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1217), 2, + ACTIONS(2845), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1225), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1235), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2618), 2, + ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1233), 4, + ACTIONS(2851), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2849), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97053] = 13, - ACTIONS(1821), 1, + [35909] = 13, + ACTIONS(2475), 1, anon_sym_STAR, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - anon_sym_PIPE_AMP, - ACTIONS(2620), 1, + ACTIONS(2487), 1, anon_sym_in, - ACTIONS(2622), 1, + ACTIONS(2489), 1, anon_sym_QMARK, - ACTIONS(2634), 1, + ACTIONS(2491), 1, anon_sym_AMP_AMP, - ACTIONS(2636), 1, + ACTIONS(2493), 1, anon_sym_PIPE_PIPE, - ACTIONS(1817), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2624), 2, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2471), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2626), 2, + ACTIONS(2477), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 2, + ACTIONS(2479), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2632), 2, + ACTIONS(2485), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2630), 4, + ACTIONS(2483), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97101] = 13, - ACTIONS(2202), 1, + [35957] = 13, + ACTIONS(2159), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2638), 1, + ACTIONS(2857), 1, anon_sym_in, - ACTIONS(2640), 1, + ACTIONS(2859), 1, anon_sym_QMARK, - ACTIONS(2652), 1, + ACTIONS(2871), 1, anon_sym_AMP_AMP, - ACTIONS(2654), 1, + ACTIONS(2873), 1, anon_sym_PIPE_PIPE, - ACTIONS(2196), 2, + ACTIONS(2155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2642), 2, + ACTIONS(2861), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2644), 2, + ACTIONS(2863), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2646), 2, + ACTIONS(2865), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2650), 2, + ACTIONS(2869), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2648), 4, + ACTIONS(2867), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97149] = 13, - ACTIONS(2007), 1, + [36005] = 13, + ACTIONS(951), 1, anon_sym_STAR, - ACTIONS(2017), 1, + ACTIONS(2501), 1, + anon_sym_PIPE, + ACTIONS(2503), 1, + anon_sym_PIPE_AMP, + ACTIONS(2875), 1, anon_sym_in, - ACTIONS(2019), 1, - anon_sym_AMP_AMP, - ACTIONS(2021), 1, + ACTIONS(2877), 1, anon_sym_QMARK, - ACTIONS(2023), 1, + ACTIONS(2889), 1, + anon_sym_AMP_AMP, + ACTIONS(2891), 1, anon_sym_PIPE_PIPE, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - anon_sym_PIPE_AMP, - ACTIONS(2001), 2, + ACTIONS(945), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2005), 2, + ACTIONS(2879), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2013), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2656), 2, + ACTIONS(2881), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2658), 2, + ACTIONS(2883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2011), 4, + ACTIONS(2887), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2885), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97197] = 13, - ACTIONS(1475), 1, + [36053] = 13, + ACTIONS(1249), 1, + anon_sym_QMARK, + ACTIONS(1253), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(1263), 1, + anon_sym_AMP_AMP, + ACTIONS(1265), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2660), 1, + ACTIONS(2893), 1, anon_sym_in, - ACTIONS(2662), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - anon_sym_AMP_AMP, - ACTIONS(2676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1469), 2, + ACTIONS(1243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2664), 2, + ACTIONS(1251), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2666), 2, + ACTIONS(1255), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2668), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2672), 2, + ACTIONS(1261), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2670), 4, + ACTIONS(2895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1259), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97245] = 13, - ACTIONS(1307), 1, + [36101] = 13, + ACTIONS(2215), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2678), 1, + ACTIONS(2897), 1, anon_sym_in, - ACTIONS(2680), 1, + ACTIONS(2899), 1, anon_sym_QMARK, - ACTIONS(2692), 1, + ACTIONS(2911), 1, anon_sym_AMP_AMP, - ACTIONS(2694), 1, + ACTIONS(2913), 1, anon_sym_PIPE_PIPE, - ACTIONS(1301), 2, + ACTIONS(2209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2682), 2, + ACTIONS(2901), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2684), 2, + ACTIONS(2903), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2686), 2, + ACTIONS(2905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2690), 2, + ACTIONS(2909), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2688), 4, + ACTIONS(2907), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97293] = 13, - ACTIONS(1053), 1, + [36149] = 13, + ACTIONS(2453), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2696), 1, + ACTIONS(2915), 1, anon_sym_in, - ACTIONS(2698), 1, + ACTIONS(2917), 1, anon_sym_QMARK, - ACTIONS(2710), 1, + ACTIONS(2929), 1, anon_sym_AMP_AMP, - ACTIONS(2712), 1, + ACTIONS(2931), 1, anon_sym_PIPE_PIPE, - ACTIONS(1049), 2, + ACTIONS(2447), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2700), 2, + ACTIONS(2919), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2702), 2, + ACTIONS(2921), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2704), 2, + ACTIONS(2923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2708), 2, + ACTIONS(2927), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2706), 4, + ACTIONS(2925), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97341] = 13, - ACTIONS(1871), 1, + [36197] = 13, + ACTIONS(1075), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2714), 1, + ACTIONS(2933), 1, anon_sym_in, - ACTIONS(2716), 1, + ACTIONS(2935), 1, anon_sym_QMARK, - ACTIONS(2728), 1, + ACTIONS(2947), 1, anon_sym_AMP_AMP, - ACTIONS(2730), 1, + ACTIONS(2949), 1, anon_sym_PIPE_PIPE, - ACTIONS(1865), 2, + ACTIONS(1071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(2937), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2720), 2, + ACTIONS(2939), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2722), 2, + ACTIONS(2941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2726), 2, + ACTIONS(2945), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2724), 4, + ACTIONS(2943), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97389] = 13, - ACTIONS(868), 1, + [36245] = 13, + ACTIONS(2389), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2732), 1, + ACTIONS(2951), 1, anon_sym_in, - ACTIONS(2734), 1, + ACTIONS(2953), 1, anon_sym_QMARK, - ACTIONS(2746), 1, + ACTIONS(2965), 1, anon_sym_AMP_AMP, - ACTIONS(2748), 1, + ACTIONS(2967), 1, anon_sym_PIPE_PIPE, - ACTIONS(864), 2, + ACTIONS(2385), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2736), 2, + ACTIONS(2955), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2738), 2, + ACTIONS(2957), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2740), 2, + ACTIONS(2959), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2744), 2, + ACTIONS(2963), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2742), 4, + ACTIONS(2961), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97437] = 13, - ACTIONS(2220), 1, + [36293] = 13, + ACTIONS(2123), 1, anon_sym_STAR, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2503), 1, anon_sym_PIPE_AMP, - ACTIONS(2750), 1, + ACTIONS(2969), 1, anon_sym_in, - ACTIONS(2752), 1, + ACTIONS(2971), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2766), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2226), 2, + ACTIONS(2121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2754), 2, + ACTIONS(2973), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2756), 2, + ACTIONS(2975), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2758), 2, + ACTIONS(2977), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2762), 2, + ACTIONS(2981), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2760), 4, + ACTIONS(2979), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97485] = 2, - ACTIONS(2768), 5, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - sym_identifier, - aux_sym_number_token1, - ACTIONS(2770), 9, - anon_sym_LPAREN, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token2, - anon_sym_DQUOTE, - [97504] = 4, - ACTIONS(1767), 1, - sym__if_else_separator, - ACTIONS(2772), 2, - anon_sym_GT, - anon_sym_GT_GT, - ACTIONS(2774), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1761), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [97525] = 1, - ACTIONS(2776), 12, + [36341] = 1, + ACTIONS(2987), 12, anon_sym_print, anon_sym_alnum, anon_sym_alpha, @@ -106131,14 +154911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_space, anon_sym_upper, anon_sym_xdigit, - [97540] = 3, - ACTIONS(2778), 2, + [36356] = 4, + ACTIONS(1810), 1, + sym__if_else_separator, + ACTIONS(2989), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2780), 2, + ACTIONS(2991), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1761), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -106146,50 +154928,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [97558] = 4, - ACTIONS(1767), 1, - sym__if_else_separator, - ACTIONS(2782), 2, + [36377] = 3, + ACTIONS(2993), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2784), 2, + ACTIONS(2995), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1761), 4, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - [97576] = 3, - ACTIONS(2786), 2, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [36395] = 4, + ACTIONS(1810), 1, + sym__if_else_separator, + ACTIONS(2997), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2788), 2, + ACTIONS(2999), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1761), 4, + ACTIONS(1804), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - [97591] = 5, - ACTIONS(37), 1, + [36413] = 2, + ACTIONS(3001), 1, + sym__if_else_separator, + ACTIONS(1973), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [36426] = 5, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(2790), 1, + ACTIONS(3003), 1, anon_sym_RBRACE, - ACTIONS(2792), 1, + ACTIONS(3005), 1, anon_sym_case, - ACTIONS(2794), 1, + ACTIONS(3007), 1, anon_sym_default, - STATE(1847), 4, + STATE(2064), 4, sym_switch_case, sym_switch_default, sym_comment, aux_sym_switch_body_repeat1, - [97610] = 2, - ACTIONS(2796), 1, + [36445] = 2, + ACTIONS(3009), 1, sym__if_else_separator, - ACTIONS(2044), 7, + ACTIONS(1973), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -106197,10 +154993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [97623] = 2, - ACTIONS(2798), 1, + [36458] = 2, + ACTIONS(3009), 1, sym__if_else_separator, - ACTIONS(2044), 7, + ACTIONS(1973), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -106208,10 +155004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [97636] = 2, - ACTIONS(2796), 1, + [36471] = 2, + ACTIONS(3011), 1, sym__if_else_separator, - ACTIONS(2044), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -106219,24 +155015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [97649] = 5, - ACTIONS(2800), 1, - anon_sym_RBRACE, - ACTIONS(2802), 1, - anon_sym_case, - ACTIONS(2805), 1, - anon_sym_default, - ACTIONS(2808), 1, - anon_sym_POUND, - STATE(1847), 4, - sym_switch_case, - sym_switch_default, - sym_comment, - aux_sym_switch_body_repeat1, - [97668] = 2, - ACTIONS(2811), 1, + [36484] = 2, + ACTIONS(3011), 1, sym__if_else_separator, - ACTIONS(2064), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -106244,38 +155026,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [97681] = 5, - ACTIONS(2813), 1, + [36497] = 5, + ACTIONS(3013), 1, + anon_sym_RBRACE, + ACTIONS(3015), 1, + anon_sym_case, + ACTIONS(3018), 1, + anon_sym_default, + ACTIONS(3021), 1, + anon_sym_POUND, + STATE(2061), 4, + sym_switch_case, + sym_switch_default, + sym_comment, + aux_sym_switch_body_repeat1, + [36516] = 5, + ACTIONS(3024), 1, anon_sym_SLASH, - ACTIONS(2815), 1, + ACTIONS(3026), 1, aux_sym_number_token1, - ACTIONS(2817), 1, + ACTIONS(3028), 1, aux_sym_number_token2, - ACTIONS(2819), 1, + ACTIONS(3030), 1, anon_sym_DQUOTE, - STATE(2184), 4, + STATE(2455), 4, sym_regex, sym__primitive, sym_number, sym_string, - [97700] = 5, - ACTIONS(37), 1, + [36535] = 3, + ACTIONS(3032), 2, + anon_sym_GT, + anon_sym_GT_GT, + ACTIONS(3034), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1804), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + [36550] = 5, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(2792), 1, + ACTIONS(3005), 1, anon_sym_case, - ACTIONS(2794), 1, + ACTIONS(3007), 1, anon_sym_default, - ACTIONS(2821), 1, + ACTIONS(3036), 1, anon_sym_RBRACE, - STATE(1853), 4, + STATE(2061), 4, sym_switch_case, sym_switch_default, sym_comment, aux_sym_switch_body_repeat1, - [97719] = 2, - ACTIONS(2798), 1, + [36569] = 2, + ACTIONS(3038), 1, sym__if_else_separator, - ACTIONS(2044), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -106283,10 +155091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [97732] = 2, - ACTIONS(2811), 1, + [36582] = 2, + ACTIONS(3038), 1, sym__if_else_separator, - ACTIONS(2064), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -106294,49 +155102,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [97745] = 5, - ACTIONS(37), 1, + [36595] = 5, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(2792), 1, + ACTIONS(3005), 1, anon_sym_case, - ACTIONS(2794), 1, + ACTIONS(3007), 1, anon_sym_default, - ACTIONS(2823), 1, + ACTIONS(3040), 1, anon_sym_RBRACE, - STATE(1847), 4, + STATE(2061), 4, sym_switch_case, sym_switch_default, sym_comment, aux_sym_switch_body_repeat1, - [97764] = 5, - ACTIONS(37), 1, + [36614] = 5, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(2792), 1, + ACTIONS(3005), 1, anon_sym_case, - ACTIONS(2794), 1, + ACTIONS(3007), 1, anon_sym_default, - ACTIONS(2825), 1, + ACTIONS(3042), 1, anon_sym_RBRACE, - STATE(1843), 4, + STATE(2067), 4, sym_switch_case, sym_switch_default, - sym_comment, - aux_sym_switch_body_repeat1, - [97783] = 2, - ACTIONS(2827), 1, - sym__if_else_separator, - ACTIONS(2064), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [97796] = 2, - ACTIONS(2827), 1, + sym_comment, + aux_sym_switch_body_repeat1, + [36633] = 2, + ACTIONS(3001), 1, sym__if_else_separator, - ACTIONS(2064), 7, + ACTIONS(1973), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -106344,6459 +155141,5793 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [97809] = 5, - ACTIONS(2829), 1, + [36646] = 5, + ACTIONS(3044), 1, anon_sym_SLASH2, - ACTIONS(2833), 1, + ACTIONS(3048), 1, anon_sym_LBRACK2, - STATE(2220), 1, + STATE(2493), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [97827] = 5, - ACTIONS(2833), 1, + [36664] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2835), 1, + ACTIONS(3050), 1, anon_sym_SLASH2, - STATE(2196), 1, + STATE(2415), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [97845] = 5, - ACTIONS(2833), 1, + [36682] = 2, + ACTIONS(1958), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(3052), 4, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [36694] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2837), 1, + ACTIONS(3054), 1, anon_sym_SLASH2, - STATE(2265), 1, + STATE(2444), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [97863] = 5, - ACTIONS(2833), 1, + [36712] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2839), 1, + ACTIONS(3056), 1, anon_sym_SLASH2, - STATE(2266), 1, + STATE(2425), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [97881] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(510), 4, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [97893] = 5, - ACTIONS(2833), 1, + [36730] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2841), 1, + ACTIONS(3058), 1, anon_sym_SLASH2, - STATE(2267), 1, + STATE(2481), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [97911] = 5, - ACTIONS(2833), 1, + [36748] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2843), 1, + ACTIONS(3060), 1, anon_sym_SLASH2, - STATE(2250), 1, + STATE(2325), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [97929] = 5, - ACTIONS(2833), 1, + [36766] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2845), 1, + ACTIONS(3062), 1, anon_sym_SLASH2, - STATE(2269), 1, + STATE(2463), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [97947] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(2847), 4, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [97959] = 5, - ACTIONS(2833), 1, + [36784] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2849), 1, + ACTIONS(3064), 1, anon_sym_SLASH2, - STATE(2244), 1, + STATE(2422), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [97977] = 5, - ACTIONS(2833), 1, + [36802] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2851), 1, + ACTIONS(3066), 1, anon_sym_SLASH2, - STATE(2157), 1, + STATE(2465), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [97995] = 5, - ACTIONS(2833), 1, + [36820] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2853), 1, + ACTIONS(3068), 1, anon_sym_SLASH2, - STATE(2129), 1, + STATE(2473), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98013] = 5, - ACTIONS(2833), 1, + [36838] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2855), 1, + ACTIONS(3070), 1, anon_sym_SLASH2, - STATE(2175), 1, + STATE(2514), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98031] = 5, - ACTIONS(2833), 1, + [36856] = 2, + ACTIONS(1958), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(637), 4, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [36868] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2857), 1, + ACTIONS(3072), 1, anon_sym_SLASH2, - STATE(2173), 1, + STATE(2435), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98049] = 5, - ACTIONS(2833), 1, + [36886] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2859), 1, + ACTIONS(3074), 1, anon_sym_SLASH2, - STATE(2179), 1, + STATE(2381), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98067] = 5, - ACTIONS(2833), 1, + [36904] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2861), 1, + ACTIONS(3076), 1, anon_sym_SLASH2, - STATE(2226), 1, + STATE(2475), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98085] = 5, - ACTIONS(2833), 1, + [36922] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2863), 1, + ACTIONS(3078), 1, anon_sym_SLASH2, - STATE(2202), 1, + STATE(2517), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98103] = 5, - ACTIONS(2833), 1, + [36940] = 2, + ACTIONS(1958), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(281), 4, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [36952] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2865), 1, + ACTIONS(3080), 1, anon_sym_SLASH2, - STATE(2238), 1, + STATE(2388), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98121] = 5, - ACTIONS(2833), 1, + [36970] = 2, + ACTIONS(1958), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(3082), 4, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [36982] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2867), 1, + ACTIONS(3084), 1, anon_sym_SLASH2, - STATE(2088), 1, + STATE(2397), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98139] = 5, - ACTIONS(2833), 1, + [37000] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2869), 1, + ACTIONS(3086), 1, anon_sym_SLASH2, - STATE(2189), 1, + STATE(2407), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98157] = 5, - ACTIONS(2833), 1, + [37018] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2871), 1, + ACTIONS(3088), 1, anon_sym_SLASH2, - STATE(2232), 1, + STATE(2452), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98175] = 5, - ACTIONS(2833), 1, + [37036] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2873), 1, + ACTIONS(3090), 1, anon_sym_SLASH2, - STATE(2195), 1, + STATE(2471), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98193] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(556), 4, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [98205] = 5, - ACTIONS(2833), 1, + [37054] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2875), 1, + ACTIONS(3092), 1, anon_sym_SLASH2, - STATE(2145), 1, + STATE(2477), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98223] = 5, - ACTIONS(2833), 1, + [37072] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2877), 1, + ACTIONS(3094), 1, anon_sym_SLASH2, - STATE(2126), 1, + STATE(2543), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98241] = 5, - ACTIONS(2833), 1, + [37090] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2879), 1, + ACTIONS(3096), 1, anon_sym_SLASH2, - STATE(2163), 1, + STATE(2274), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98259] = 2, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(2881), 4, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [98271] = 5, - ACTIONS(2833), 1, + [37108] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2883), 1, + ACTIONS(3098), 1, anon_sym_SLASH2, - STATE(2190), 1, + STATE(2537), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98289] = 5, - ACTIONS(2833), 1, + [37126] = 5, + ACTIONS(3048), 1, anon_sym_LBRACK2, - ACTIONS(2885), 1, + ACTIONS(3100), 1, anon_sym_SLASH2, - STATE(2144), 1, + STATE(2356), 1, sym_regex_pattern, - ACTIONS(2831), 2, + ACTIONS(3046), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1917), 2, + STATE(2099), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98307] = 6, - ACTIONS(1609), 1, - anon_sym_SLASH, - ACTIONS(2887), 1, - sym_identifier, - STATE(450), 1, - sym_func_call, - STATE(469), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2233), 1, - sym_ns_qualified_name, - [98326] = 6, - ACTIONS(1407), 1, - anon_sym_SLASH, - ACTIONS(2889), 1, + [37144] = 4, + ACTIONS(3048), 1, + anon_sym_LBRACK2, + ACTIONS(3102), 1, + anon_sym_SLASH2, + ACTIONS(3104), 2, + sym__regex_char, + sym__regex_char_escaped, + STATE(2120), 2, + sym__regex_bracket_exp, + aux_sym_regex_pattern_repeat1, + [37159] = 5, + ACTIONS(3106), 1, sym_identifier, - STATE(1652), 1, - sym_regex, + ACTIONS(3108), 1, + anon_sym_DOLLAR, STATE(1653), 1, - sym_func_call, - STATE(2212), 1, + sym_field_ref, + STATE(2523), 1, sym_namespace, - STATE(2227), 1, + STATE(1630), 2, + sym_array_ref, sym_ns_qualified_name, - [98345] = 5, - ACTIONS(2891), 1, + [37176] = 5, + ACTIONS(3110), 1, sym_identifier, - ACTIONS(2893), 1, + ACTIONS(3112), 1, anon_sym_DOLLAR, - STATE(579), 1, + STATE(1722), 1, sym_field_ref, - STATE(2228), 1, + STATE(2501), 1, sym_namespace, - STATE(538), 2, + STATE(1659), 2, sym_array_ref, sym_ns_qualified_name, - [98362] = 6, - ACTIONS(370), 1, - anon_sym_SLASH, - ACTIONS(2895), 1, - sym_identifier, - STATE(1514), 1, - sym_regex, - STATE(1524), 1, - sym_func_call, - STATE(2212), 1, - sym_namespace, - STATE(2230), 1, - sym_ns_qualified_name, - [98381] = 5, - ACTIONS(2897), 1, + [37193] = 5, + ACTIONS(3114), 1, sym_identifier, - ACTIONS(2899), 1, + ACTIONS(3116), 1, anon_sym_DOLLAR, - STATE(593), 1, + STATE(627), 1, sym_field_ref, - STATE(2185), 1, + STATE(2467), 1, sym_namespace, - STATE(555), 2, + STATE(602), 2, sym_array_ref, sym_ns_qualified_name, - [98398] = 5, - ACTIONS(1337), 1, - anon_sym_DOLLAR, - ACTIONS(2901), 1, + [37210] = 5, + ACTIONS(3118), 1, sym_identifier, - STATE(338), 1, + ACTIONS(3120), 1, + anon_sym_DOLLAR, + STATE(475), 1, sym_field_ref, - STATE(2231), 1, + STATE(2486), 1, sym_namespace, - STATE(310), 2, + STATE(435), 2, sym_array_ref, sym_ns_qualified_name, - [98415] = 6, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(2903), 1, - sym_identifier, - STATE(594), 1, - sym_regex, - STATE(595), 1, - sym_func_call, - STATE(2182), 1, - sym_ns_qualified_name, - STATE(2212), 1, - sym_namespace, - [98434] = 6, - ACTIONS(1461), 1, - anon_sym_SLASH, - ACTIONS(2905), 1, + [37227] = 5, + ACTIONS(3122), 1, sym_identifier, - STATE(571), 1, - sym_func_call, - STATE(572), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2215), 1, - sym_ns_qualified_name, - [98453] = 5, - ACTIONS(394), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, - sym_identifier, - STATE(205), 1, + STATE(1890), 1, sym_field_ref, - STATE(2256), 1, + STATE(2480), 1, sym_namespace, - STATE(179), 2, + STATE(1867), 2, sym_array_ref, sym_ns_qualified_name, - [98470] = 5, - ACTIONS(286), 1, + [37244] = 5, + ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(2909), 1, + ACTIONS(3126), 1, sym_identifier, - STATE(240), 1, + STATE(1417), 1, sym_field_ref, - STATE(2243), 1, + STATE(2513), 1, sym_namespace, - STATE(192), 2, + STATE(1368), 2, sym_array_ref, sym_ns_qualified_name, - [98487] = 5, - ACTIONS(202), 1, - anon_sym_DOLLAR, - ACTIONS(2909), 1, + [37261] = 5, + ACTIONS(3128), 1, sym_identifier, - STATE(240), 1, + ACTIONS(3130), 1, + anon_sym_DOLLAR, + STATE(610), 1, sym_field_ref, - STATE(2243), 1, + STATE(2489), 1, sym_namespace, - STATE(192), 2, + STATE(556), 2, sym_array_ref, sym_ns_qualified_name, - [98504] = 5, - ACTIONS(2911), 1, + [37278] = 5, + ACTIONS(3132), 1, + sym__regex_char, + ACTIONS(3135), 1, + sym__regex_char_escaped, + ACTIONS(3138), 1, + anon_sym_LBRACK2, + ACTIONS(3141), 1, + anon_sym_RBRACK2, + STATE(2107), 2, + sym__regex_char_class, + aux_sym__regex_bracket_exp_repeat1, + [37295] = 5, + ACTIONS(3143), 1, sym_identifier, - ACTIONS(2913), 1, + ACTIONS(3145), 1, anon_sym_DOLLAR, - STATE(461), 1, + STATE(1616), 1, sym_field_ref, - STATE(2240), 1, + STATE(2524), 1, sym_namespace, - STATE(395), 2, + STATE(1614), 2, sym_array_ref, sym_ns_qualified_name, - [98521] = 5, - ACTIONS(2915), 1, + [37312] = 5, + ACTIONS(3147), 1, sym_identifier, - ACTIONS(2917), 1, + ACTIONS(3149), 1, anon_sym_DOLLAR, - STATE(1456), 1, + STATE(443), 1, sym_field_ref, - STATE(2246), 1, + STATE(2504), 1, sym_namespace, - STATE(1439), 2, + STATE(364), 2, sym_array_ref, sym_ns_qualified_name, - [98538] = 6, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(2919), 1, - sym_identifier, - STATE(224), 1, - sym_func_call, - STATE(238), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2236), 1, - sym_ns_qualified_name, - [98557] = 5, - ACTIONS(2921), 1, + [37329] = 5, + ACTIONS(3106), 1, sym_identifier, - ACTIONS(2923), 1, + ACTIONS(3151), 1, anon_sym_DOLLAR, - STATE(464), 1, + STATE(1653), 1, sym_field_ref, - STATE(2252), 1, + STATE(2523), 1, sym_namespace, - STATE(366), 2, + STATE(1630), 2, sym_array_ref, sym_ns_qualified_name, - [98574] = 6, - ACTIONS(1519), 1, - anon_sym_SLASH, - ACTIONS(2925), 1, - sym_identifier, - STATE(1483), 1, - sym_func_call, - STATE(1487), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2239), 1, - sym_ns_qualified_name, - [98593] = 6, - ACTIONS(1423), 1, - anon_sym_SLASH, - ACTIONS(2927), 1, - sym_identifier, - STATE(328), 1, - sym_regex, - STATE(345), 1, - sym_func_call, - STATE(2212), 1, - sym_namespace, - STATE(2223), 1, - sym_ns_qualified_name, - [98612] = 6, - ACTIONS(194), 1, - anon_sym_SLASH, - ACTIONS(2929), 1, - sym_identifier, - STATE(481), 1, - sym_func_call, - STATE(486), 1, - sym_regex, - STATE(2188), 1, - sym_ns_qualified_name, - STATE(2212), 1, - sym_namespace, - [98631] = 5, - ACTIONS(2931), 1, + [37346] = 5, + ACTIONS(3153), 1, + sym__regex_char, + ACTIONS(3155), 1, + sym__regex_char_escaped, + ACTIONS(3157), 1, + anon_sym_LBRACK2, + ACTIONS(3159), 1, + anon_sym_RBRACK2, + STATE(2107), 2, + sym__regex_char_class, + aux_sym__regex_bracket_exp_repeat1, + [37363] = 5, + ACTIONS(3161), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(3163), 1, anon_sym_DOLLAR, - STATE(377), 1, + STATE(1667), 1, sym_field_ref, - STATE(2255), 1, + STATE(2510), 1, sym_namespace, - STATE(336), 2, + STATE(1641), 2, sym_array_ref, sym_ns_qualified_name, - [98648] = 5, - ACTIONS(378), 1, + [37380] = 5, + ACTIONS(129), 1, anon_sym_DOLLAR, - ACTIONS(2909), 1, + ACTIONS(3165), 1, sym_identifier, - STATE(240), 1, + STATE(283), 1, sym_field_ref, - STATE(2243), 1, + STATE(2507), 1, sym_namespace, - STATE(192), 2, + STATE(221), 2, sym_array_ref, sym_ns_qualified_name, - [98665] = 6, - ACTIONS(1547), 1, - anon_sym_SLASH, - ACTIONS(2919), 1, - sym_identifier, - STATE(224), 1, - sym_func_call, - STATE(238), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2236), 1, - sym_ns_qualified_name, - [98684] = 5, + [37397] = 5, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(2901), 1, - sym_identifier, - STATE(338), 1, - sym_field_ref, - STATE(2231), 1, - sym_namespace, - STATE(310), 2, - sym_array_ref, - sym_ns_qualified_name, - [98701] = 5, - ACTIONS(2935), 1, + ACTIONS(3167), 1, sym_identifier, - ACTIONS(2937), 1, - anon_sym_DOLLAR, - STATE(479), 1, + STATE(520), 1, sym_field_ref, - STATE(2225), 1, + STATE(2492), 1, sym_namespace, - STATE(449), 2, + STATE(489), 2, sym_array_ref, sym_ns_qualified_name, - [98718] = 5, - ACTIONS(2939), 1, - sym_identifier, - ACTIONS(2941), 1, + [37414] = 5, + ACTIONS(1303), 1, anon_sym_DOLLAR, - STATE(1539), 1, - sym_field_ref, - STATE(2237), 1, - sym_namespace, - STATE(1501), 2, - sym_array_ref, - sym_ns_qualified_name, - [98735] = 5, - ACTIONS(2915), 1, + ACTIONS(3169), 1, sym_identifier, - ACTIONS(2943), 1, - anon_sym_DOLLAR, - STATE(1456), 1, + STATE(1558), 1, sym_field_ref, - STATE(2246), 1, + STATE(2498), 1, sym_namespace, - STATE(1439), 2, + STATE(1522), 2, sym_array_ref, sym_ns_qualified_name, - [98752] = 6, - ACTIONS(1489), 1, - anon_sym_SLASH, - ACTIONS(2945), 1, - sym_identifier, - STATE(210), 1, - sym_func_call, - STATE(212), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2248), 1, - sym_ns_qualified_name, - [98771] = 5, - ACTIONS(462), 1, + [37431] = 5, + ACTIONS(331), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(3171), 1, sym_identifier, - STATE(205), 1, + STATE(1386), 1, sym_field_ref, - STATE(2256), 1, + STATE(2525), 1, sym_namespace, - STATE(179), 2, + STATE(1355), 2, sym_array_ref, sym_ns_qualified_name, - [98788] = 5, - ACTIONS(2939), 1, + [37448] = 5, + ACTIONS(3110), 1, sym_identifier, - ACTIONS(2947), 1, + ACTIONS(3173), 1, anon_sym_DOLLAR, - STATE(1539), 1, + STATE(1722), 1, sym_field_ref, - STATE(2237), 1, + STATE(2501), 1, sym_namespace, - STATE(1501), 2, + STATE(1659), 2, sym_array_ref, sym_ns_qualified_name, - [98805] = 5, - ACTIONS(2949), 1, - sym_identifier, - ACTIONS(2951), 1, + [37465] = 5, + ACTIONS(371), 1, anon_sym_DOLLAR, - STATE(1457), 1, + ACTIONS(3175), 1, + sym_identifier, + STATE(211), 1, sym_field_ref, - STATE(2257), 1, + STATE(2522), 1, sym_namespace, - STATE(1427), 2, + STATE(194), 2, sym_array_ref, sym_ns_qualified_name, - [98822] = 6, - ACTIONS(1375), 1, - anon_sym_SLASH, - ACTIONS(2953), 1, - sym_identifier, - STATE(1429), 1, - sym_regex, - STATE(1432), 1, - sym_func_call, - STATE(2212), 1, - sym_namespace, - STATE(2254), 1, - sym_ns_qualified_name, - [98841] = 5, - ACTIONS(2955), 1, + [37482] = 5, + ACTIONS(3161), 1, sym_identifier, - ACTIONS(2957), 1, + ACTIONS(3177), 1, anon_sym_DOLLAR, - STATE(1422), 1, + STATE(1667), 1, sym_field_ref, - STATE(2258), 1, + STATE(2510), 1, sym_namespace, - STATE(1402), 2, + STATE(1641), 2, sym_array_ref, sym_ns_qualified_name, - [98858] = 4, - ACTIONS(2833), 1, - anon_sym_LBRACK2, - ACTIONS(2959), 1, + [37499] = 4, + ACTIONS(3179), 1, anon_sym_SLASH2, - ACTIONS(2961), 2, + ACTIONS(3184), 1, + anon_sym_LBRACK2, + ACTIONS(3181), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1929), 2, + STATE(2120), 2, sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [98873] = 6, - ACTIONS(1447), 1, - anon_sym_SLASH, - ACTIONS(2927), 1, + [37514] = 5, + ACTIONS(3187), 1, sym_identifier, - STATE(328), 1, - sym_regex, - STATE(345), 1, - sym_func_call, - STATE(2212), 1, - sym_namespace, - STATE(2223), 1, - sym_ns_qualified_name, - [98892] = 6, - ACTIONS(388), 1, - anon_sym_SLASH, - ACTIONS(2963), 1, - sym_identifier, - STATE(1447), 1, - sym_func_call, - STATE(1468), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2251), 1, - sym_ns_qualified_name, - [98911] = 5, - ACTIONS(336), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, - sym_identifier, - STATE(205), 1, + STATE(442), 1, sym_field_ref, - STATE(2256), 1, + STATE(2519), 1, sym_namespace, - STATE(179), 2, + STATE(380), 2, sym_array_ref, sym_ns_qualified_name, - [98928] = 6, - ACTIONS(328), 1, - anon_sym_SLASH, - ACTIONS(2965), 1, - sym_identifier, - STATE(423), 1, - sym_regex, - STATE(436), 1, - sym_func_call, - STATE(2212), 1, - sym_namespace, - STATE(2242), 1, - sym_ns_qualified_name, - [98947] = 6, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(2919), 1, - sym_identifier, - STATE(224), 1, - sym_func_call, - STATE(238), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2236), 1, - sym_ns_qualified_name, - [98966] = 5, - ACTIONS(2967), 1, - sym__regex_char, - ACTIONS(2970), 1, - sym__regex_char_escaped, - ACTIONS(2973), 1, - anon_sym_LBRACK2, - ACTIONS(2976), 1, - anon_sym_RBRACK2, - STATE(1923), 2, - sym__regex_char_class, - aux_sym__regex_bracket_exp_repeat1, - [98983] = 5, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2980), 1, + [37531] = 5, + ACTIONS(289), 1, anon_sym_DOLLAR, - STATE(1677), 1, + ACTIONS(3126), 1, + sym_identifier, + STATE(1417), 1, sym_field_ref, - STATE(2221), 1, + STATE(2513), 1, sym_namespace, - STATE(1666), 2, + STATE(1368), 2, sym_array_ref, sym_ns_qualified_name, - [99000] = 6, - ACTIONS(1641), 1, - anon_sym_SLASH, - ACTIONS(2925), 1, - sym_identifier, - STATE(1483), 1, - sym_func_call, - STATE(1487), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2239), 1, - sym_ns_qualified_name, - [99019] = 6, - ACTIONS(1329), 1, - anon_sym_SLASH, - ACTIONS(2982), 1, - sym_identifier, - STATE(1674), 1, - sym_regex, - STATE(1682), 1, - sym_func_call, - STATE(2117), 1, - sym_ns_qualified_name, - STATE(2212), 1, - sym_namespace, - [99038] = 5, - ACTIONS(2984), 1, - sym__regex_char, - ACTIONS(2986), 1, - sym__regex_char_escaped, - ACTIONS(2988), 1, - anon_sym_LBRACK2, - ACTIONS(2990), 1, - anon_sym_RBRACK2, - STATE(1923), 2, - sym__regex_char_class, - aux_sym__regex_bracket_exp_repeat1, - [99055] = 6, - ACTIONS(280), 1, - anon_sym_SLASH, - ACTIONS(2895), 1, - sym_identifier, - STATE(1514), 1, - sym_regex, - STATE(1524), 1, - sym_func_call, - STATE(2212), 1, - sym_namespace, - STATE(2230), 1, - sym_ns_qualified_name, - [99074] = 4, - ACTIONS(2992), 1, - anon_sym_SLASH2, - ACTIONS(2997), 1, - anon_sym_LBRACK2, - ACTIONS(2994), 2, - sym__regex_char, - sym__regex_char_escaped, - STATE(1929), 2, - sym__regex_bracket_exp, - aux_sym_regex_pattern_repeat1, - [99089] = 5, - ACTIONS(2949), 1, + [37548] = 5, + ACTIONS(3143), 1, sym_identifier, - ACTIONS(3000), 1, + ACTIONS(3191), 1, anon_sym_DOLLAR, - STATE(1457), 1, + STATE(1616), 1, sym_field_ref, - STATE(2257), 1, + STATE(2524), 1, sym_namespace, - STATE(1427), 2, + STATE(1614), 2, sym_array_ref, sym_ns_qualified_name, - [99106] = 6, - ACTIONS(1507), 1, - anon_sym_SLASH, - ACTIONS(3002), 1, - sym_identifier, - STATE(383), 1, - sym_regex, - STATE(385), 1, - sym_func_call, - STATE(2212), 1, - sym_namespace, - STATE(2245), 1, - sym_ns_qualified_name, - [99125] = 6, - ACTIONS(1387), 1, - anon_sym_SLASH, - ACTIONS(2945), 1, - sym_identifier, - STATE(210), 1, - sym_func_call, - STATE(212), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2248), 1, - sym_ns_qualified_name, - [99144] = 6, - ACTIONS(1529), 1, - anon_sym_SLASH, - ACTIONS(2953), 1, - sym_identifier, - STATE(1429), 1, - sym_regex, - STATE(1432), 1, - sym_func_call, - STATE(2212), 1, - sym_namespace, - STATE(2254), 1, - sym_ns_qualified_name, - [99163] = 6, - ACTIONS(454), 1, - anon_sym_SLASH, - ACTIONS(2963), 1, + [37565] = 5, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(3171), 1, sym_identifier, - STATE(1447), 1, - sym_func_call, - STATE(1468), 1, - sym_regex, - STATE(2212), 1, + STATE(1386), 1, + sym_field_ref, + STATE(2525), 1, sym_namespace, - STATE(2251), 1, + STATE(1355), 2, + sym_array_ref, sym_ns_qualified_name, - [99182] = 5, - ACTIONS(2955), 1, + [37582] = 5, + ACTIONS(3193), 1, sym_identifier, - ACTIONS(3004), 1, + ACTIONS(3195), 1, anon_sym_DOLLAR, - STATE(1422), 1, + STATE(1857), 1, sym_field_ref, - STATE(2258), 1, + STATE(2495), 1, sym_namespace, - STATE(1402), 2, + STATE(1822), 2, sym_array_ref, sym_ns_qualified_name, - [99199] = 5, - ACTIONS(3006), 1, + [37599] = 5, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3008), 1, + ACTIONS(3199), 1, anon_sym_DOLLAR, - STATE(1649), 1, + STATE(371), 1, sym_field_ref, - STATE(2234), 1, + STATE(2521), 1, sym_namespace, - STATE(1591), 2, + STATE(323), 2, sym_array_ref, sym_ns_qualified_name, - [99216] = 6, - ACTIONS(1567), 1, - anon_sym_SLASH, - ACTIONS(2945), 1, - sym_identifier, - STATE(210), 1, - sym_func_call, - STATE(212), 1, - sym_regex, - STATE(2212), 1, - sym_namespace, - STATE(2248), 1, - sym_ns_qualified_name, - [99235] = 2, - ACTIONS(3010), 1, + [37616] = 2, + ACTIONS(3201), 1, sym__if_else_separator, - ACTIONS(2044), 4, + ACTIONS(1967), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - [99245] = 4, - ACTIONS(37), 1, + [37626] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3012), 1, + ACTIONS(3203), 1, anon_sym_else, - STATE(1351), 1, + STATE(1177), 1, sym_else_clause, - STATE(1947), 2, + STATE(2157), 2, sym_comment, aux_sym_if_statement_repeat1, - [99259] = 2, - ACTIONS(3014), 1, + [37640] = 2, + ACTIONS(3201), 1, sym__if_else_separator, - ACTIONS(2044), 4, + ACTIONS(1967), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - [99269] = 4, - ACTIONS(37), 1, - anon_sym_POUND, - ACTIONS(3016), 1, - anon_sym_else, - STATE(1268), 1, - sym_else_clause, - STATE(1947), 2, - sym_comment, - aux_sym_if_statement_repeat1, - [99283] = 4, - ACTIONS(37), 1, - anon_sym_POUND, - ACTIONS(3016), 1, - anon_sym_else, - STATE(1252), 1, - sym_else_clause, - STATE(1941), 2, - sym_comment, - aux_sym_if_statement_repeat1, - [99297] = 4, - ACTIONS(37), 1, + [37650] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3018), 1, + ACTIONS(3205), 1, anon_sym_LBRACE, - STATE(1226), 1, + STATE(1210), 1, sym_switch_body, - STATE(1973), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99311] = 4, - ACTIONS(37), 1, + [37664] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3020), 1, + ACTIONS(3207), 1, anon_sym_else, - STATE(1345), 1, + STATE(1249), 1, sym_else_clause, - STATE(1959), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99325] = 4, - ACTIONS(37), 1, + [37678] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3209), 1, anon_sym_else, - STATE(1268), 1, + STATE(1177), 1, sym_else_clause, - STATE(1947), 2, + STATE(2159), 2, sym_comment, aux_sym_if_statement_repeat1, - [99339] = 2, - ACTIONS(3024), 1, + [37692] = 2, + ACTIONS(3211), 1, sym__if_else_separator, - ACTIONS(2064), 4, + ACTIONS(1967), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - [99349] = 3, - ACTIONS(3026), 1, + [37702] = 2, + ACTIONS(3213), 1, + sym__if_else_separator, + ACTIONS(1973), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + [37712] = 2, + ACTIONS(3213), 1, + sym__if_else_separator, + ACTIONS(1973), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + [37722] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(2035), 2, - anon_sym_else, + ACTIONS(3205), 1, anon_sym_LBRACE, - STATE(1947), 2, + STATE(1168), 1, + sym_switch_body, + STATE(2130), 2, sym_comment, aux_sym_if_statement_repeat1, - [99361] = 2, - ACTIONS(3029), 1, + [37736] = 2, + ACTIONS(3215), 1, sym__if_else_separator, - ACTIONS(2064), 4, + ACTIONS(1973), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - [99371] = 4, - ACTIONS(37), 1, + [37746] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3031), 1, + ACTIONS(3217), 1, anon_sym_else, - STATE(1268), 1, + STATE(1239), 1, sym_else_clause, - STATE(1947), 2, + STATE(2146), 2, sym_comment, aux_sym_if_statement_repeat1, - [99385] = 4, - ACTIONS(37), 1, + [37760] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3016), 1, + ACTIONS(3207), 1, anon_sym_else, - STATE(1252), 1, + STATE(1224), 1, sym_else_clause, - STATE(1947), 2, + STATE(2131), 2, sym_comment, aux_sym_if_statement_repeat1, - [99399] = 4, - ACTIONS(37), 1, + [37774] = 2, + ACTIONS(3215), 1, + sym__if_else_separator, + ACTIONS(1973), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + [37784] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3033), 1, + ACTIONS(3207), 1, anon_sym_else, - STATE(1351), 1, + STATE(1224), 1, sym_else_clause, - STATE(1947), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99413] = 4, - ACTIONS(37), 1, + [37798] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3031), 1, + ACTIONS(3219), 1, anon_sym_else, - STATE(1252), 1, + STATE(1224), 1, sym_else_clause, - STATE(1949), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99427] = 4, - ACTIONS(37), 1, + [37812] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3031), 1, + ACTIONS(3219), 1, anon_sym_else, - STATE(1252), 1, + STATE(1249), 1, sym_else_clause, - STATE(1947), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99441] = 4, - ACTIONS(37), 1, + [37826] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3035), 1, - anon_sym_LBRACE, - STATE(1321), 1, - sym_switch_body, - STATE(1947), 2, + ACTIONS(3209), 1, + anon_sym_else, + STATE(1214), 1, + sym_else_clause, + STATE(2151), 2, sym_comment, aux_sym_if_statement_repeat1, - [99455] = 2, - ACTIONS(3029), 1, - sym__if_else_separator, - ACTIONS(2064), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - [99465] = 4, - ACTIONS(37), 1, + [37840] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3033), 1, - anon_sym_else, - STATE(1351), 1, - sym_else_clause, - STATE(1964), 2, + ACTIONS(3221), 1, + anon_sym_LBRACE, + STATE(1234), 1, + sym_switch_body, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99479] = 4, - ACTIONS(37), 1, + [37854] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3020), 1, + ACTIONS(3217), 1, anon_sym_else, - STATE(1368), 1, + STATE(1224), 1, sym_else_clause, - STATE(1947), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99493] = 4, - ACTIONS(37), 1, + [37868] = 3, + ACTIONS(3223), 1, anon_sym_POUND, - ACTIONS(3020), 1, + ACTIONS(1962), 2, anon_sym_else, - STATE(1351), 1, - sym_else_clause, - STATE(1957), 2, + anon_sym_LBRACE, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99507] = 4, - ACTIONS(37), 1, + [37880] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3020), 1, + ACTIONS(3217), 1, anon_sym_else, - STATE(1351), 1, + STATE(1224), 1, sym_else_clause, - STATE(1947), 2, + STATE(2162), 2, sym_comment, aux_sym_if_statement_repeat1, - [99521] = 3, - ACTIONS(2988), 1, + [37894] = 3, + ACTIONS(3157), 1, anon_sym_LBRACK2, - ACTIONS(3037), 2, + ACTIONS(3226), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1927), 2, + STATE(2111), 2, sym__regex_char_class, aux_sym__regex_bracket_exp_repeat1, - [99533] = 4, - ACTIONS(37), 1, + [37906] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3012), 1, + ACTIONS(3228), 1, anon_sym_else, - STATE(1368), 1, + STATE(1177), 1, sym_else_clause, - STATE(1947), 2, + STATE(2164), 2, sym_comment, aux_sym_if_statement_repeat1, - [99547] = 2, - ACTIONS(3024), 1, - sym__if_else_separator, - ACTIONS(2064), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - [99557] = 4, - ACTIONS(37), 1, + [37920] = 4, + ACTIONS(39), 1, + anon_sym_POUND, + ACTIONS(3209), 1, + anon_sym_else, + STATE(1183), 1, + sym_else_clause, + STATE(2147), 2, + sym_comment, + aux_sym_if_statement_repeat1, + [37934] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3012), 1, + ACTIONS(3219), 1, anon_sym_else, - STATE(1345), 1, + STATE(1224), 1, sym_else_clause, - STATE(1939), 2, + STATE(2143), 2, sym_comment, aux_sym_if_statement_repeat1, - [99571] = 4, - ACTIONS(37), 1, + [37948] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3033), 1, + ACTIONS(3203), 1, anon_sym_else, - STATE(1368), 1, + STATE(1214), 1, sym_else_clause, - STATE(1947), 2, + STATE(2158), 2, sym_comment, aux_sym_if_statement_repeat1, - [99585] = 2, - ACTIONS(3010), 1, + [37962] = 2, + ACTIONS(3211), 1, sym__if_else_separator, - ACTIONS(2044), 4, + ACTIONS(1967), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - [99595] = 4, - ACTIONS(37), 1, + [37972] = 4, + ACTIONS(39), 1, + anon_sym_POUND, + ACTIONS(3207), 1, + anon_sym_else, + STATE(1239), 1, + sym_else_clause, + STATE(2141), 2, + sym_comment, + aux_sym_if_statement_repeat1, + [37986] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3035), 1, + ACTIONS(3221), 1, anon_sym_LBRACE, - STATE(1333), 1, + STATE(1262), 1, sym_switch_body, - STATE(1954), 2, + STATE(2145), 2, sym_comment, aux_sym_if_statement_repeat1, - [99609] = 4, - ACTIONS(37), 1, + [38000] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3203), 1, anon_sym_else, - STATE(1236), 1, + STATE(1214), 1, sym_else_clause, - STATE(1971), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99623] = 4, - ACTIONS(37), 1, + [38014] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3033), 1, + ACTIONS(3203), 1, anon_sym_else, - STATE(1345), 1, + STATE(1183), 1, sym_else_clause, - STATE(1951), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99637] = 4, - ACTIONS(37), 1, + [38028] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3031), 1, + ACTIONS(3209), 1, anon_sym_else, - STATE(1236), 1, + STATE(1214), 1, sym_else_clause, - STATE(1953), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99651] = 4, - ACTIONS(37), 1, + [38042] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3016), 1, + ACTIONS(3228), 1, anon_sym_else, - STATE(1236), 1, + STATE(1183), 1, sym_else_clause, - STATE(1950), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99665] = 4, - ACTIONS(37), 1, + [38056] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3219), 1, anon_sym_else, - STATE(1252), 1, + STATE(1239), 1, sym_else_clause, - STATE(1947), 2, + STATE(2142), 2, sym_comment, aux_sym_if_statement_repeat1, - [99679] = 2, - ACTIONS(3014), 1, - sym__if_else_separator, - ACTIONS(2044), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - [99689] = 4, - ACTIONS(37), 1, + [38070] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3018), 1, - anon_sym_LBRACE, - STATE(1235), 1, - sym_switch_body, - STATE(1947), 2, + ACTIONS(3217), 1, + anon_sym_else, + STATE(1249), 1, + sym_else_clause, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99703] = 4, - ACTIONS(37), 1, + [38084] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3228), 1, anon_sym_else, - STATE(1252), 1, + STATE(1214), 1, sym_else_clause, - STATE(1945), 2, + STATE(2160), 2, sym_comment, aux_sym_if_statement_repeat1, - [99717] = 4, - ACTIONS(37), 1, + [38098] = 4, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3012), 1, + ACTIONS(3228), 1, anon_sym_else, - STATE(1351), 1, + STATE(1214), 1, sym_else_clause, - STATE(1961), 2, + STATE(2147), 2, sym_comment, aux_sym_if_statement_repeat1, - [99731] = 3, - ACTIONS(3039), 1, + [38112] = 3, + ACTIONS(3230), 1, sym_identifier, - STATE(2185), 1, + STATE(2467), 1, sym_namespace, - STATE(2029), 2, + STATE(2226), 2, sym_array_ref, sym_ns_qualified_name, - [99742] = 3, - ACTIONS(3041), 1, + [38123] = 3, + ACTIONS(3232), 1, anon_sym_DQUOTE, - STATE(1999), 1, + STATE(2190), 1, + aux_sym_string_repeat1, + ACTIONS(3234), 2, + aux_sym_string_token1, + sym_escape_sequence, + [38134] = 3, + ACTIONS(3236), 1, + anon_sym_DQUOTE, + STATE(2190), 1, + aux_sym_string_repeat1, + ACTIONS(3234), 2, + aux_sym_string_token1, + sym_escape_sequence, + [38145] = 3, + ACTIONS(3238), 1, + anon_sym_DQUOTE, + STATE(2169), 1, aux_sym_string_repeat1, - ACTIONS(3043), 2, + ACTIONS(3240), 2, aux_sym_string_token1, sym_escape_sequence, - [99753] = 3, - ACTIONS(3045), 1, + [38156] = 3, + ACTIONS(3242), 1, anon_sym_DQUOTE, - STATE(1990), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3047), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [99764] = 3, - ACTIONS(3049), 1, + [38167] = 3, + ACTIONS(3244), 1, sym_identifier, - STATE(2185), 1, + STATE(2467), 1, sym_namespace, - STATE(2037), 2, + STATE(2258), 2, sym_array_ref, sym_ns_qualified_name, - [99775] = 3, - ACTIONS(3051), 1, + [38178] = 3, + ACTIONS(3246), 1, anon_sym_DQUOTE, - STATE(2002), 1, + STATE(2204), 1, aux_sym_string_repeat1, - ACTIONS(3053), 2, + ACTIONS(3248), 2, aux_sym_string_token1, sym_escape_sequence, - [99786] = 2, - ACTIONS(3055), 1, - anon_sym_while, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - [99795] = 3, - ACTIONS(3057), 1, + [38189] = 3, + ACTIONS(3250), 1, + anon_sym_DQUOTE, + STATE(2167), 1, + aux_sym_string_repeat1, + ACTIONS(3252), 2, + aux_sym_string_token1, + sym_escape_sequence, + [38200] = 3, + ACTIONS(3254), 1, + anon_sym_DQUOTE, + STATE(2187), 1, + aux_sym_string_repeat1, + ACTIONS(3256), 2, + aux_sym_string_token1, + sym_escape_sequence, + [38211] = 3, + ACTIONS(3258), 1, + anon_sym_DQUOTE, + STATE(2185), 1, + aux_sym_string_repeat1, + ACTIONS(3260), 2, + aux_sym_string_token1, + sym_escape_sequence, + [38222] = 3, + ACTIONS(3262), 1, + anon_sym_DQUOTE, + STATE(2186), 1, + aux_sym_string_repeat1, + ACTIONS(3264), 2, + aux_sym_string_token1, + sym_escape_sequence, + [38233] = 3, + ACTIONS(3266), 1, + anon_sym_DQUOTE, + STATE(2190), 1, + aux_sym_string_repeat1, + ACTIONS(3234), 2, + aux_sym_string_token1, + sym_escape_sequence, + [38244] = 3, + ACTIONS(3268), 1, anon_sym_DQUOTE, - STATE(1983), 1, + STATE(2176), 1, aux_sym_string_repeat1, - ACTIONS(3059), 2, + ACTIONS(3270), 2, aux_sym_string_token1, sym_escape_sequence, - [99806] = 3, - ACTIONS(3061), 1, + [38255] = 3, + ACTIONS(3272), 1, anon_sym_DQUOTE, - STATE(1999), 1, + STATE(2181), 1, aux_sym_string_repeat1, - ACTIONS(3043), 2, + ACTIONS(3274), 2, aux_sym_string_token1, sym_escape_sequence, - [99817] = 2, - ACTIONS(3063), 1, + [38266] = 1, + ACTIONS(3276), 4, + anon_sym_SLASH2, sym__regex_char, - ACTIONS(3065), 3, sym__regex_char_escaped, anon_sym_LBRACK2, - anon_sym_RBRACK2, - [99826] = 3, - ACTIONS(3067), 1, + [38273] = 3, + ACTIONS(3278), 1, sym_identifier, - STATE(2185), 1, + STATE(2519), 1, sym_namespace, - STATE(2068), 2, + STATE(1160), 2, sym_array_ref, sym_ns_qualified_name, - [99837] = 3, - ACTIONS(3069), 1, + [38284] = 3, + ACTIONS(3280), 1, anon_sym_DQUOTE, - STATE(1999), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3043), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [99848] = 3, - ACTIONS(3071), 1, + [38295] = 3, + ACTIONS(3282), 1, anon_sym_DQUOTE, - STATE(1986), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3073), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [99859] = 3, - ACTIONS(3075), 1, + [38306] = 3, + ACTIONS(3284), 1, sym_identifier, - STATE(2185), 1, + STATE(2486), 1, sym_namespace, - STATE(2067), 2, + STATE(1172), 2, sym_array_ref, sym_ns_qualified_name, - [99870] = 2, - ACTIONS(3077), 1, - anon_sym_while, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - [99879] = 3, - ACTIONS(3079), 1, + [38317] = 3, + ACTIONS(3286), 1, + anon_sym_DQUOTE, + STATE(2182), 1, + aux_sym_string_repeat1, + ACTIONS(3288), 2, + aux_sym_string_token1, + sym_escape_sequence, + [38328] = 3, + ACTIONS(3290), 1, anon_sym_DQUOTE, - STATE(1999), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3043), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [99890] = 3, - ACTIONS(3081), 1, + [38339] = 3, + ACTIONS(3292), 1, anon_sym_DQUOTE, - STATE(1994), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3083), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [99901] = 3, - ACTIONS(3085), 1, + [38350] = 3, + ACTIONS(3294), 1, anon_sym_DQUOTE, - STATE(1998), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3087), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [99912] = 3, - ACTIONS(3089), 1, + [38361] = 3, + ACTIONS(3296), 1, sym_identifier, - STATE(2185), 1, + STATE(2467), 1, sym_namespace, - STATE(2040), 2, + STATE(2229), 2, sym_array_ref, sym_ns_qualified_name, - [99923] = 3, - ACTIONS(3091), 1, - anon_sym_DQUOTE, - STATE(1999), 1, - aux_sym_string_repeat1, - ACTIONS(3043), 2, - aux_sym_string_token1, - sym_escape_sequence, - [99934] = 3, - ACTIONS(3093), 1, + [38372] = 2, + ACTIONS(3298), 1, + anon_sym_while, + ACTIONS(1958), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + [38381] = 3, + ACTIONS(3300), 1, anon_sym_DQUOTE, - STATE(1997), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3095), 2, + ACTIONS(3302), 2, aux_sym_string_token1, sym_escape_sequence, - [99945] = 1, - ACTIONS(3097), 4, - anon_sym_SLASH2, + [38392] = 2, + ACTIONS(3305), 1, sym__regex_char, + ACTIONS(3307), 3, sym__regex_char_escaped, anon_sym_LBRACK2, - [99952] = 3, - ACTIONS(3099), 1, + anon_sym_RBRACK2, + [38401] = 3, + ACTIONS(3309), 1, anon_sym_DQUOTE, - STATE(1999), 1, + STATE(2200), 1, aux_sym_string_repeat1, - ACTIONS(3043), 2, + ACTIONS(3311), 2, aux_sym_string_token1, sym_escape_sequence, - [99963] = 3, - ACTIONS(3101), 1, + [38412] = 3, + ACTIONS(3313), 1, anon_sym_DQUOTE, - STATE(1999), 1, + STATE(2166), 1, aux_sym_string_repeat1, - ACTIONS(3043), 2, + ACTIONS(3315), 2, aux_sym_string_token1, sym_escape_sequence, - [99974] = 3, - ACTIONS(3103), 1, + [38423] = 2, + ACTIONS(3317), 1, + anon_sym_while, + ACTIONS(1958), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + [38432] = 3, + ACTIONS(3319), 1, anon_sym_DQUOTE, - STATE(1999), 1, + STATE(2198), 1, aux_sym_string_repeat1, - ACTIONS(3105), 2, + ACTIONS(3321), 2, aux_sym_string_token1, sym_escape_sequence, - [99985] = 3, - ACTIONS(3108), 1, + [38443] = 2, + ACTIONS(3323), 1, + anon_sym_while, + ACTIONS(1958), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + [38452] = 3, + ACTIONS(3325), 1, + sym_identifier, + STATE(2467), 1, + sym_namespace, + STATE(2232), 2, + sym_array_ref, + sym_ns_qualified_name, + [38463] = 3, + ACTIONS(3327), 1, anon_sym_DQUOTE, - STATE(2007), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3110), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [99996] = 3, - ACTIONS(3112), 1, + [38474] = 3, + ACTIONS(3329), 1, + sym_identifier, + STATE(2467), 1, + sym_namespace, + STATE(2233), 2, + sym_array_ref, + sym_ns_qualified_name, + [38485] = 3, + ACTIONS(3331), 1, anon_sym_DQUOTE, - STATE(1977), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3114), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [100007] = 3, - ACTIONS(3116), 1, + [38496] = 3, + ACTIONS(3333), 1, anon_sym_DQUOTE, - STATE(1999), 1, + STATE(2202), 1, aux_sym_string_repeat1, - ACTIONS(3043), 2, + ACTIONS(3335), 2, aux_sym_string_token1, sym_escape_sequence, - [100018] = 3, - ACTIONS(3118), 1, + [38507] = 3, + ACTIONS(3337), 1, anon_sym_DQUOTE, - STATE(1999), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3043), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [100029] = 3, - ACTIONS(3120), 1, - sym_identifier, - STATE(2252), 1, - sym_namespace, - STATE(1163), 2, - sym_array_ref, - sym_ns_qualified_name, - [100040] = 2, - ACTIONS(3122), 1, - anon_sym_while, - ACTIONS(2015), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - [100049] = 3, - ACTIONS(3124), 1, + [38518] = 3, + ACTIONS(3339), 1, sym_identifier, - STATE(2185), 1, + STATE(2467), 1, sym_namespace, - STATE(2053), 2, + STATE(2250), 2, sym_array_ref, sym_ns_qualified_name, - [100060] = 3, - ACTIONS(3126), 1, - anon_sym_DQUOTE, - STATE(1999), 1, - aux_sym_string_repeat1, - ACTIONS(3043), 2, - aux_sym_string_token1, - sym_escape_sequence, - [100071] = 3, - ACTIONS(3128), 1, + [38529] = 3, + ACTIONS(3341), 1, anon_sym_DQUOTE, - STATE(2003), 1, + STATE(2190), 1, aux_sym_string_repeat1, - ACTIONS(3130), 2, + ACTIONS(3234), 2, aux_sym_string_token1, sym_escape_sequence, - [100082] = 3, - ACTIONS(3132), 1, - sym_identifier, - STATE(2225), 1, - sym_namespace, - STATE(1266), 2, - sym_array_ref, - sym_ns_qualified_name, - [100093] = 2, - ACTIONS(3134), 1, + [38540] = 2, + ACTIONS(3343), 1, anon_sym_while, - ACTIONS(2015), 3, + ACTIONS(1958), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - [100102] = 3, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1209), 1, - anon_sym_LBRACK, - ACTIONS(3136), 1, + [38549] = 3, + ACTIONS(2541), 1, anon_sym_RPAREN, - [100112] = 3, - ACTIONS(672), 1, + ACTIONS(3345), 1, + anon_sym_COMMA, + STATE(2206), 1, + aux_sym_args_repeat1, + [38559] = 3, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(1209), 1, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(3138), 1, + ACTIONS(3348), 1, anon_sym_RPAREN, - [100122] = 3, - ACTIONS(672), 1, + [38569] = 3, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(1209), 1, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3350), 1, anon_sym_RPAREN, - [100132] = 3, - ACTIONS(672), 1, + [38579] = 3, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(1209), 1, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(3142), 1, + ACTIONS(3352), 1, anon_sym_RPAREN, - [100142] = 3, - ACTIONS(2314), 1, + [38589] = 3, + ACTIONS(3354), 1, + sym_identifier, + ACTIONS(3356), 1, anon_sym_RPAREN, - ACTIONS(3144), 1, - anon_sym_COMMA, - STATE(2015), 1, - aux_sym_args_repeat1, - [100152] = 3, - ACTIONS(3147), 1, + STATE(2413), 1, + sym_param_list, + [38599] = 3, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(3150), 1, + ACTIONS(3360), 1, anon_sym_RPAREN, - STATE(2016), 1, + STATE(2215), 1, aux_sym_param_list_repeat1, - [100162] = 3, - ACTIONS(3152), 1, - anon_sym_COMMA, - ACTIONS(3154), 1, + [38609] = 3, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(1235), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, anon_sym_RPAREN, - STATE(2021), 1, - aux_sym_param_list_repeat1, - [100172] = 3, - ACTIONS(672), 1, + [38619] = 3, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(1209), 1, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(3156), 1, + ACTIONS(3364), 1, anon_sym_RPAREN, - [100182] = 3, - ACTIONS(3158), 1, - sym_identifier, - ACTIONS(3160), 1, + [38629] = 3, + ACTIONS(2505), 1, + anon_sym_COMMA, + ACTIONS(3366), 1, anon_sym_RPAREN, - STATE(2130), 1, - sym_param_list, - [100192] = 3, - ACTIONS(3162), 1, - sym_identifier, - STATE(2170), 1, - sym_ns_qualified_name, - STATE(2185), 1, - sym_namespace, - [100202] = 3, - ACTIONS(3152), 1, + STATE(2206), 1, + aux_sym_args_repeat1, + [38639] = 3, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(3164), 1, + ACTIONS(3368), 1, anon_sym_RPAREN, - STATE(2016), 1, + STATE(2218), 1, aux_sym_param_list_repeat1, - [100212] = 3, - ACTIONS(37), 1, + [38649] = 3, + ACTIONS(39), 1, anon_sym_POUND, - ACTIONS(3166), 1, + ACTIONS(3370), 1, sym_identifier, - STATE(2151), 1, + STATE(2436), 1, sym_comment, - [100222] = 3, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1209), 1, - anon_sym_LBRACK, - ACTIONS(3168), 1, - anon_sym_RPAREN, - [100232] = 3, - ACTIONS(2298), 1, + [38659] = 3, + ACTIONS(3372), 1, + sym_identifier, + STATE(2282), 1, + sym_ns_qualified_name, + STATE(2467), 1, + sym_namespace, + [38669] = 3, + ACTIONS(3374), 1, anon_sym_COMMA, - ACTIONS(3170), 1, + ACTIONS(3377), 1, anon_sym_RPAREN, - STATE(2015), 1, - aux_sym_args_repeat1, - [100242] = 2, - ACTIONS(3172), 1, - anon_sym_getline, - STATE(478), 1, - sym_getline_input, - [100249] = 2, - ACTIONS(3174), 1, - anon_sym_getline, - STATE(1479), 1, - sym_getline_input, - [100256] = 2, - ACTIONS(3176), 1, - anon_sym_getline, - STATE(586), 1, - sym_getline_input, - [100263] = 2, - ACTIONS(852), 1, - anon_sym_COLON, - ACTIONS(3178), 1, - sym_regex_flags, - [100270] = 2, - ACTIONS(1209), 1, + STATE(2218), 1, + aux_sym_param_list_repeat1, + [38679] = 3, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(3156), 1, + ACTIONS(3379), 1, anon_sym_RPAREN, - [100277] = 2, - ACTIONS(3180), 1, + [38689] = 2, + ACTIONS(3381), 1, anon_sym_getline, - STATE(230), 1, + STATE(374), 1, sym_getline_input, - [100284] = 2, - ACTIONS(860), 1, - anon_sym_COLON, - ACTIONS(3182), 1, - sym_regex_flags, - [100291] = 2, - ACTIONS(3184), 1, + [38696] = 2, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(1127), 1, + sym__func_call, + [38703] = 2, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2191), 1, + sym__func_call, + [38710] = 2, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(2197), 1, + sym__func_call, + [38717] = 2, + ACTIONS(3383), 1, anon_sym_getline, - STATE(1543), 1, + STATE(1728), 1, sym_getline_input, - [100298] = 1, - ACTIONS(3186), 2, - anon_sym_COMMA, + [38724] = 2, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(3385), 1, + sym__func_call, + [38731] = 2, + ACTIONS(1235), 1, + anon_sym_LBRACK, + ACTIONS(3350), 1, anon_sym_RPAREN, - [100303] = 2, - ACTIONS(13), 1, - anon_sym_LBRACE, - STATE(1684), 1, - sym_block, - [100310] = 2, - ACTIONS(3188), 1, + [38738] = 2, + ACTIONS(3387), 1, anon_sym_getline, - STATE(592), 1, + STATE(1862), 1, sym_getline_input, - [100317] = 2, - ACTIONS(3190), 1, + [38745] = 2, + ACTIONS(3389), 1, anon_sym_getline, - STATE(419), 1, + STATE(447), 1, sym_getline_input, - [100324] = 2, - ACTIONS(1209), 1, + [38752] = 2, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(3142), 1, + ACTIONS(3379), 1, anon_sym_RPAREN, - [100331] = 2, - ACTIONS(2819), 1, - anon_sym_DQUOTE, - STATE(1670), 1, - sym_string, - [100338] = 1, - ACTIONS(3150), 2, - anon_sym_COMMA, + [38759] = 2, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(763), 1, + sym__func_call, + [38766] = 2, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(777), 1, + sym__func_call, + [38773] = 2, + ACTIONS(1235), 1, + anon_sym_LBRACK, + ACTIONS(3364), 1, anon_sym_RPAREN, - [100343] = 2, - ACTIONS(1209), 1, + [38780] = 2, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(3136), 1, + ACTIONS(3362), 1, anon_sym_RPAREN, - [100350] = 2, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(3192), 1, - anon_sym_LPAREN, - [100357] = 2, - ACTIONS(3194), 1, - anon_sym_getline, - STATE(428), 1, - sym_getline_input, - [100364] = 2, - ACTIONS(3196), 1, + [38787] = 2, + ACTIONS(3391), 1, anon_sym_getline, - STATE(390), 1, + STATE(1688), 1, sym_getline_input, - [100371] = 2, - ACTIONS(13), 1, - anon_sym_LBRACE, - STATE(1691), 1, - sym_block, - [100378] = 2, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(3198), 1, - sym__func_call, - [100385] = 2, - ACTIONS(672), 1, + [38794] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(3200), 1, + ACTIONS(2057), 1, sym__func_call, - [100392] = 2, - ACTIONS(3202), 1, - anon_sym_getline, - STATE(1622), 1, - sym_getline_input, - [100399] = 2, - ACTIONS(3204), 1, - anon_sym_getline, - STATE(223), 1, - sym_getline_input, - [100406] = 2, - ACTIONS(3206), 1, - anon_sym_getline, - STATE(1481), 1, - sym_getline_input, - [100413] = 2, - ACTIONS(3208), 1, - anon_sym_getline, - STATE(1676), 1, - sym_getline_input, - [100420] = 2, - ACTIONS(3210), 1, - anon_sym_getline, - STATE(1445), 1, - sym_getline_input, - [100427] = 2, - ACTIONS(672), 1, + [38801] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(1067), 1, + ACTIONS(1095), 1, sym__func_call, - [100434] = 2, - ACTIONS(1209), 1, - anon_sym_LBRACK, - ACTIONS(3138), 1, - anon_sym_RPAREN, - [100441] = 2, - ACTIONS(672), 1, + [38808] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(940), 1, + ACTIONS(2035), 1, sym__func_call, - [100448] = 2, - ACTIONS(672), 1, + [38815] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(1729), 1, + ACTIONS(3393), 1, sym__func_call, - [100455] = 2, - ACTIONS(672), 1, + [38822] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(3212), 1, + ACTIONS(741), 1, sym__func_call, - [100462] = 2, - ACTIONS(672), 1, + [38829] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(3214), 1, + ACTIONS(721), 1, sym__func_call, - [100469] = 2, - ACTIONS(672), 1, + [38836] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(776), 1, + ACTIONS(3395), 1, sym__func_call, - [100476] = 2, - ACTIONS(3216), 1, + [38843] = 2, + ACTIONS(3397), 1, anon_sym_getline, - STATE(351), 1, + STATE(1378), 1, sym_getline_input, - [100483] = 2, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(692), 1, - sym__func_call, - [100490] = 2, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(1279), 1, - sym__func_call, - [100497] = 2, - ACTIONS(672), 1, - anon_sym_COLON_COLON, - ACTIONS(3218), 1, - sym__func_call, - [100504] = 2, - ACTIONS(672), 1, + [38850] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(732), 1, + ACTIONS(3399), 1, sym__func_call, - [100511] = 2, - ACTIONS(672), 1, + [38857] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(676), 1, + ACTIONS(2021), 1, sym__func_call, - [100518] = 2, - ACTIONS(672), 1, + [38864] = 2, + ACTIONS(3401), 1, + anon_sym_getline, + STATE(223), 1, + sym_getline_input, + [38871] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(3220), 1, + ACTIONS(3403), 1, sym__func_call, - [100525] = 2, - ACTIONS(672), 1, + [38878] = 2, + ACTIONS(13), 1, + anon_sym_LBRACE, + STATE(1296), 1, + sym_block, + [38885] = 2, + ACTIONS(3405), 1, + anon_sym_getline, + STATE(428), 1, + sym_getline_input, + [38892] = 2, + ACTIONS(717), 1, anon_sym_COLON_COLON, - ACTIONS(1245), 1, + ACTIONS(2017), 1, sym__func_call, - [100532] = 2, - ACTIONS(1209), 1, + [38899] = 2, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(3168), 1, + ACTIONS(3348), 1, + anon_sym_RPAREN, + [38906] = 2, + ACTIONS(3407), 1, + anon_sym_getline, + STATE(508), 1, + sym_getline_input, + [38913] = 2, + ACTIONS(3409), 1, + anon_sym_getline, + STATE(265), 1, + sym_getline_input, + [38920] = 1, + ACTIONS(3411), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38925] = 2, + ACTIONS(3413), 1, + anon_sym_getline, + STATE(470), 1, + sym_getline_input, + [38932] = 2, + ACTIONS(3415), 1, + anon_sym_getline, + STATE(1636), 1, + sym_getline_input, + [38939] = 2, + ACTIONS(3417), 1, + anon_sym_getline, + STATE(1674), 1, + sym_getline_input, + [38946] = 1, + ACTIONS(3377), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [100539] = 2, - ACTIONS(1209), 1, + [38951] = 2, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(3140), 1, + ACTIONS(3352), 1, anon_sym_RPAREN, - [100546] = 1, - ACTIONS(3222), 1, + [38958] = 2, + ACTIONS(3419), 1, + anon_sym_getline, + STATE(1448), 1, + sym_getline_input, + [38965] = 2, + ACTIONS(3421), 1, + anon_sym_getline, + STATE(1567), 1, + sym_getline_input, + [38972] = 2, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(3423), 1, + anon_sym_LPAREN, + [38979] = 2, + ACTIONS(3425), 1, + anon_sym_getline, + STATE(1899), 1, + sym_getline_input, + [38986] = 2, + ACTIONS(717), 1, + anon_sym_COLON_COLON, + ACTIONS(3427), 1, + sym__func_call, + [38993] = 2, + ACTIONS(13), 1, + anon_sym_LBRACE, + STATE(1293), 1, + sym_block, + [39000] = 2, + ACTIONS(3429), 1, + anon_sym_getline, + STATE(607), 1, + sym_getline_input, + [39007] = 2, + ACTIONS(793), 1, + anon_sym_COLON, + ACTIONS(3431), 1, + sym_regex_flags, + [39014] = 2, + ACTIONS(3433), 1, + anon_sym_getline, + STATE(625), 1, + sym_getline_input, + [39021] = 2, + ACTIONS(799), 1, + anon_sym_COLON, + ACTIONS(3435), 1, + sym_regex_flags, + [39028] = 2, + ACTIONS(3030), 1, + anon_sym_DQUOTE, + STATE(1294), 1, + sym_string, + [39035] = 1, + ACTIONS(2571), 1, + anon_sym_RBRACK, + [39039] = 1, + ACTIONS(3437), 1, sym__no_space, - [100550] = 1, - ACTIONS(3224), 1, - anon_sym_RPAREN, - [100554] = 1, - ACTIONS(3226), 1, + [39043] = 1, + ACTIONS(2535), 1, + anon_sym_RBRACK, + [39047] = 1, + ACTIONS(3439), 1, + anon_sym_in, + [39051] = 1, + ACTIONS(3441), 1, + anon_sym_SLASH2, + [39055] = 1, + ACTIONS(3443), 1, + anon_sym_LPAREN, + [39059] = 1, + ACTIONS(3445), 1, anon_sym_RPAREN, - [100558] = 1, - ACTIONS(3228), 1, + [39063] = 1, + ACTIONS(3447), 1, anon_sym_LPAREN2, - [100562] = 1, - ACTIONS(3230), 1, - anon_sym_RPAREN, - [100566] = 1, - ACTIONS(3232), 1, - sym_identifier, - [100570] = 1, - ACTIONS(3234), 1, + [39067] = 1, + ACTIONS(3449), 1, sym__no_space, - [100574] = 1, - ACTIONS(2344), 1, - anon_sym_RBRACK, - [100578] = 1, - ACTIONS(3236), 1, + [39071] = 1, + ACTIONS(3451), 1, + anon_sym_LPAREN, + [39075] = 1, + ACTIONS(3453), 1, anon_sym_RPAREN, - [100582] = 1, - ACTIONS(3238), 1, + [39079] = 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - [100586] = 1, - ACTIONS(3240), 1, + [39083] = 1, + ACTIONS(3423), 1, + anon_sym_LPAREN, + [39087] = 1, + ACTIONS(3457), 1, + sym__no_space, + [39091] = 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + [39095] = 1, + ACTIONS(3461), 1, anon_sym_RPAREN, - [100590] = 1, - ACTIONS(3242), 1, + [39099] = 1, + ACTIONS(3463), 1, + anon_sym_LPAREN2, + [39103] = 1, + ACTIONS(3465), 1, + sym__no_space, + [39107] = 1, + ACTIONS(3467), 1, + sym__no_space, + [39111] = 1, + ACTIONS(3469), 1, + anon_sym_in, + [39115] = 1, + ACTIONS(3471), 1, + anon_sym_LPAREN, + [39119] = 1, + ACTIONS(3473), 1, anon_sym_RPAREN, - [100594] = 1, - ACTIONS(3244), 1, + [39123] = 1, + ACTIONS(3475), 1, + anon_sym_LPAREN2, + [39127] = 1, + ACTIONS(3477), 1, sym__no_space, - [100598] = 1, - ACTIONS(3246), 1, + [39131] = 1, + ACTIONS(3479), 1, + anon_sym_while, + [39135] = 1, + ACTIONS(3481), 1, + anon_sym_LPAREN, + [39139] = 1, + ACTIONS(3483), 1, + anon_sym_RPAREN, + [39143] = 1, + ACTIONS(3485), 1, + anon_sym_LPAREN2, + [39147] = 1, + ACTIONS(3487), 1, anon_sym_in, - [100602] = 1, - ACTIONS(3248), 1, + [39151] = 1, + ACTIONS(3489), 1, anon_sym_RPAREN, - [100606] = 1, - ACTIONS(3250), 1, + [39155] = 1, + ACTIONS(3491), 1, + sym__no_space, + [39159] = 1, + ACTIONS(3493), 1, anon_sym_LPAREN2, - [100610] = 1, - ACTIONS(3252), 1, + [39163] = 1, + ACTIONS(3495), 1, + anon_sym_RPAREN, + [39167] = 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + [39171] = 1, + ACTIONS(3499), 1, + anon_sym_RPAREN, + [39175] = 1, + ACTIONS(3501), 1, anon_sym_LPAREN2, - [100614] = 1, - ACTIONS(3254), 1, + [39179] = 1, + ACTIONS(3503), 1, + anon_sym_LPAREN, + [39183] = 1, + ACTIONS(3505), 1, + sym_identifier, + [39187] = 1, + ACTIONS(3507), 1, sym__no_space, - [100618] = 1, - ACTIONS(3256), 1, + [39191] = 1, + ACTIONS(3509), 1, anon_sym_RPAREN, - [100622] = 1, - ACTIONS(3258), 1, - anon_sym_SLASH2, - [100626] = 1, - ACTIONS(3260), 1, + [39195] = 1, + ACTIONS(3511), 1, + anon_sym_LPAREN2, + [39199] = 1, + ACTIONS(3513), 1, + anon_sym_LPAREN, + [39203] = 1, + ACTIONS(3515), 1, anon_sym_RPAREN, - [100630] = 1, - ACTIONS(3262), 1, + [39207] = 1, + ACTIONS(3517), 1, anon_sym_LPAREN2, - [100634] = 1, - ACTIONS(3264), 1, - anon_sym_COLON2, - [100638] = 1, - ACTIONS(3266), 1, - anon_sym_while, - [100642] = 1, - ACTIONS(3268), 1, + [39211] = 1, + ACTIONS(3395), 1, + sym__func_call, + [39215] = 1, + ACTIONS(3519), 1, sym__no_space, - [100646] = 1, - ACTIONS(3270), 1, + [39219] = 1, + ACTIONS(3521), 1, + sym__no_space, + [39223] = 1, + ACTIONS(3523), 1, + anon_sym_LPAREN2, + [39227] = 1, + ACTIONS(3525), 1, anon_sym_RPAREN, - [100650] = 1, - ACTIONS(3272), 1, + [39231] = 1, + ACTIONS(3527), 1, + anon_sym_LPAREN, + [39235] = 1, + ACTIONS(3529), 1, anon_sym_RPAREN, - [100654] = 1, - ACTIONS(3274), 1, + [39239] = 1, + ACTIONS(3531), 1, anon_sym_LPAREN2, - [100658] = 1, - ACTIONS(3276), 1, + [39243] = 1, + ACTIONS(3533), 1, anon_sym_LPAREN, - [100662] = 1, - ACTIONS(3278), 1, + [39247] = 1, + ACTIONS(3535), 1, + anon_sym_RPAREN, + [39251] = 1, + ACTIONS(3537), 1, + sym__no_space, + [39255] = 1, + ACTIONS(3539), 1, + anon_sym_SLASH2, + [39259] = 1, + ACTIONS(3541), 1, + anon_sym_LPAREN, + [39263] = 1, + ACTIONS(3543), 1, + anon_sym_RPAREN, + [39267] = 1, + ACTIONS(3545), 1, anon_sym_LPAREN2, - [100666] = 1, - ACTIONS(3280), 1, + [39271] = 1, + ACTIONS(3547), 1, + anon_sym_in, + [39275] = 1, + ACTIONS(3549), 1, + anon_sym_RPAREN, + [39279] = 1, + ACTIONS(3551), 1, sym__no_space, - [100670] = 1, - ACTIONS(3282), 1, - sym_identifier, - [100674] = 1, - ACTIONS(3284), 1, + [39283] = 1, + ACTIONS(3553), 1, anon_sym_RPAREN, - [100678] = 1, - ACTIONS(3286), 1, + [39287] = 1, + ACTIONS(3555), 1, + anon_sym_LPAREN, + [39291] = 1, + ACTIONS(3557), 1, + anon_sym_RPAREN, + [39295] = 1, + ACTIONS(3559), 1, anon_sym_LPAREN2, - [100682] = 1, - ACTIONS(3288), 1, + [39299] = 1, + ACTIONS(3561), 1, anon_sym_RPAREN, - [100686] = 1, - ACTIONS(3290), 1, - sym_identifier, - [100690] = 1, - ACTIONS(3292), 1, + [39303] = 1, + ACTIONS(3563), 1, + anon_sym_in, + [39307] = 1, + ACTIONS(3565), 1, sym__no_space, - [100694] = 1, - ACTIONS(3294), 1, + [39311] = 1, + ACTIONS(3567), 1, sym_identifier, - [100698] = 1, - ACTIONS(3296), 1, + [39315] = 1, + ACTIONS(3569), 1, + anon_sym_LPAREN, + [39319] = 1, + ACTIONS(3571), 1, anon_sym_RPAREN, - [100702] = 1, - ACTIONS(3298), 1, + [39323] = 1, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + [39327] = 1, + ACTIONS(3575), 1, + anon_sym_in, + [39331] = 1, + ACTIONS(3577), 1, + anon_sym_RPAREN, + [39335] = 1, + ACTIONS(3579), 1, sym__no_space, - [100706] = 1, - ACTIONS(3300), 1, + [39339] = 1, + ACTIONS(2543), 1, + anon_sym_RBRACK, + [39343] = 1, + ACTIONS(3581), 1, + anon_sym_LPAREN, + [39347] = 1, + ACTIONS(3583), 1, + anon_sym_RPAREN, + [39351] = 1, + ACTIONS(3585), 1, + anon_sym_LPAREN2, + [39355] = 1, + ACTIONS(3587), 1, + anon_sym_in, + [39359] = 1, + ACTIONS(3589), 1, + anon_sym_LPAREN, + [39363] = 1, + ACTIONS(3591), 1, + sym__no_space, + [39367] = 1, + ACTIONS(3593), 1, + anon_sym_LPAREN, + [39371] = 1, + ACTIONS(3595), 1, + anon_sym_LPAREN, + [39375] = 1, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + [39379] = 1, + ACTIONS(3599), 1, + anon_sym_SLASH2, + [39383] = 1, + ACTIONS(3601), 1, + sym__no_space, + [39387] = 1, + ACTIONS(3603), 1, + anon_sym_LPAREN, + [39391] = 1, + ACTIONS(3605), 1, + anon_sym_LPAREN2, + [39395] = 1, + ACTIONS(3607), 1, + anon_sym_LPAREN, + [39399] = 1, + ACTIONS(3609), 1, + sym__no_space, + [39403] = 1, + ACTIONS(3611), 1, + sym__no_space, + [39407] = 1, + ACTIONS(3613), 1, sym__no_space, - [100710] = 1, - ACTIONS(3302), 1, + [39411] = 1, + ACTIONS(3615), 1, sym__no_space, - [100714] = 1, - ACTIONS(3304), 1, + [39415] = 1, + ACTIONS(3617), 1, sym__no_space, - [100718] = 1, - ACTIONS(3306), 1, + [39419] = 1, + ACTIONS(3619), 1, sym__no_space, - [100722] = 1, - ACTIONS(3308), 1, + [39423] = 1, + ACTIONS(3621), 1, sym__no_space, - [100726] = 1, - ACTIONS(3310), 1, + [39427] = 1, + ACTIONS(3623), 1, + sym__no_space, + [39431] = 1, + ACTIONS(3625), 1, anon_sym_COLON_COLON, - [100730] = 1, - ACTIONS(3312), 1, + [39435] = 1, + ACTIONS(3627), 1, anon_sym_LPAREN, - [100734] = 1, - ACTIONS(2328), 1, - anon_sym_RBRACK, - [100738] = 1, - ACTIONS(3212), 1, - sym__func_call, - [100742] = 1, - ACTIONS(2326), 1, - anon_sym_RBRACK, - [100746] = 1, - ACTIONS(3314), 1, - anon_sym_in, - [100750] = 1, - ACTIONS(2352), 1, - anon_sym_RBRACK, - [100754] = 1, - ACTIONS(3316), 1, + [39439] = 1, + ACTIONS(3629), 1, anon_sym_LPAREN, - [100758] = 1, - ACTIONS(3318), 1, + [39443] = 1, + ACTIONS(3427), 1, + sym__func_call, + [39447] = 1, + ACTIONS(3631), 1, + aux_sym_comment_token1, + [39451] = 1, + ACTIONS(3633), 1, + anon_sym_COLON_COLON, + [39455] = 1, + ACTIONS(3635), 1, + ts_builtin_sym_end, + [39459] = 1, + ACTIONS(3637), 1, + aux_sym_comment_token1, + [39463] = 1, + ACTIONS(3639), 1, anon_sym_LPAREN, - [100762] = 1, - ACTIONS(3320), 1, - anon_sym_RPAREN, - [100766] = 1, - ACTIONS(3322), 1, - anon_sym_in, - [100770] = 1, - ACTIONS(3324), 1, - anon_sym_LPAREN2, - [100774] = 1, - ACTIONS(3326), 1, - anon_sym_SLASH2, - [100778] = 1, - ACTIONS(3328), 1, + [39467] = 1, + ACTIONS(3641), 1, anon_sym_COLON2, - [100782] = 1, - ACTIONS(3330), 1, + [39471] = 1, + ACTIONS(3643), 1, + anon_sym_RPAREN, + [39475] = 1, + ACTIONS(3645), 1, anon_sym_LPAREN, - [100786] = 1, - ACTIONS(3332), 1, + [39479] = 1, + ACTIONS(3647), 1, anon_sym_SLASH2, - [100790] = 1, - ACTIONS(3334), 1, - anon_sym_RPAREN, - [100794] = 1, - ACTIONS(3336), 1, - sym__no_space, - [100798] = 1, - ACTIONS(3338), 1, + [39483] = 1, + ACTIONS(3649), 1, anon_sym_in, - [100802] = 1, - ACTIONS(3340), 1, + [39487] = 1, + ACTIONS(3651), 1, + anon_sym_LPAREN, + [39491] = 1, + ACTIONS(2567), 1, + anon_sym_RBRACK, + [39495] = 1, + ACTIONS(3653), 1, anon_sym_RPAREN, - [100806] = 1, - ACTIONS(3342), 1, + [39499] = 1, + ACTIONS(3655), 1, + sym_identifier, + [39503] = 1, + ACTIONS(3657), 1, anon_sym_RPAREN, - [100810] = 1, - ACTIONS(3344), 1, - anon_sym_LPAREN2, - [100814] = 1, - ACTIONS(3346), 1, + [39507] = 1, + ACTIONS(3659), 1, + anon_sym_SLASH2, + [39511] = 1, + ACTIONS(3661), 1, + anon_sym_in, + [39515] = 1, + ACTIONS(2545), 1, + anon_sym_RBRACK, + [39519] = 1, + ACTIONS(2561), 1, + anon_sym_RBRACK, + [39523] = 1, + ACTIONS(3663), 1, anon_sym_RPAREN, - [100818] = 1, - ACTIONS(3348), 1, + [39527] = 1, + ACTIONS(3665), 1, + sym_identifier, + [39531] = 1, + ACTIONS(3667), 1, anon_sym_RPAREN, - [100822] = 1, - ACTIONS(3350), 1, - sym__no_space, - [100826] = 1, - ACTIONS(3352), 1, + [39535] = 1, + ACTIONS(3669), 1, anon_sym_RPAREN, - [100830] = 1, - ACTIONS(3354), 1, + [39539] = 1, + ACTIONS(3671), 1, sym_identifier, - [100834] = 1, - ACTIONS(2304), 1, - anon_sym_RBRACK, - [100838] = 1, - ACTIONS(3356), 1, + [39543] = 1, + ACTIONS(3673), 1, + anon_sym_SLASH2, + [39547] = 1, + ACTIONS(3675), 1, anon_sym_in, - [100842] = 1, - ACTIONS(2318), 1, + [39551] = 1, + ACTIONS(2549), 1, anon_sym_RBRACK, - [100846] = 1, - ACTIONS(3358), 1, - anon_sym_SLASH2, - [100850] = 1, - ACTIONS(3360), 1, - anon_sym_SLASH2, - [100854] = 1, - ACTIONS(3362), 1, - sym__no_space, - [100858] = 1, - ACTIONS(3364), 1, - anon_sym_LPAREN2, - [100862] = 1, - ACTIONS(3366), 1, + [39555] = 1, + ACTIONS(3677), 1, + anon_sym_LPAREN, + [39559] = 1, + ACTIONS(3679), 1, anon_sym_RPAREN, - [100866] = 1, - ACTIONS(3368), 1, - anon_sym_in, - [100870] = 1, - ACTIONS(3370), 1, + [39563] = 1, + ACTIONS(3681), 1, anon_sym_while, - [100874] = 1, - ACTIONS(3372), 1, - sym_identifier, - [100878] = 1, - ACTIONS(3374), 1, + [39567] = 1, + ACTIONS(3683), 1, sym_identifier, - [100882] = 1, - ACTIONS(3376), 1, + [39571] = 1, + ACTIONS(3685), 1, anon_sym_RPAREN, - [100886] = 1, - ACTIONS(3378), 1, - anon_sym_in, - [100890] = 1, - ACTIONS(3380), 1, - anon_sym_in, - [100894] = 1, - ACTIONS(3382), 1, - anon_sym_RBRACK2, - [100898] = 1, - ACTIONS(3384), 1, + [39575] = 1, + ACTIONS(3687), 1, + anon_sym_RPAREN, + [39579] = 1, + ACTIONS(3689), 1, + anon_sym_RPAREN, + [39583] = 1, + ACTIONS(3691), 1, anon_sym_SLASH2, - [100902] = 1, - ACTIONS(720), 1, - sym__func_call, - [100906] = 1, - ACTIONS(3386), 1, + [39587] = 1, + ACTIONS(3693), 1, anon_sym_in, - [100910] = 1, - ACTIONS(2308), 1, + [39591] = 1, + ACTIONS(2527), 1, anon_sym_RBRACK, - [100914] = 1, - ACTIONS(3388), 1, + [39595] = 1, + ACTIONS(3695), 1, anon_sym_RPAREN, - [100918] = 1, - ACTIONS(3390), 1, - sym__no_space, - [100922] = 1, - ACTIONS(3392), 1, - anon_sym_SLASH2, - [100926] = 1, - ACTIONS(2312), 1, - anon_sym_RBRACK, - [100930] = 1, - ACTIONS(3394), 1, - anon_sym_COLON, - [100934] = 1, - ACTIONS(3396), 1, - sym_identifier, - [100938] = 1, - ACTIONS(3398), 1, + [39599] = 1, + ACTIONS(3697), 1, anon_sym_RPAREN, - [100942] = 1, - ACTIONS(3400), 1, + [39603] = 1, + ACTIONS(3699), 1, sym_identifier, - [100946] = 1, - ACTIONS(2350), 1, - anon_sym_RBRACK, - [100950] = 1, - ACTIONS(3192), 1, + [39607] = 1, + ACTIONS(3701), 1, + anon_sym_RPAREN, + [39611] = 1, + ACTIONS(3703), 1, + anon_sym_RPAREN, + [39615] = 1, + ACTIONS(3705), 1, + anon_sym_SLASH2, + [39619] = 1, + ACTIONS(3707), 1, anon_sym_LPAREN, - [100954] = 1, - ACTIONS(3402), 1, + [39623] = 1, + ACTIONS(3709), 1, + anon_sym_in, + [39627] = 1, + ACTIONS(3711), 1, + anon_sym_RPAREN, + [39631] = 1, + ACTIONS(3713), 1, + sym_identifier, + [39635] = 1, + ACTIONS(3715), 1, + anon_sym_COLON2, + [39639] = 1, + ACTIONS(3717), 1, anon_sym_RPAREN, - [100958] = 1, - ACTIONS(3404), 1, + [39643] = 1, + ACTIONS(3719), 1, + anon_sym_SLASH2, + [39647] = 1, + ACTIONS(3721), 1, anon_sym_in, - [100962] = 1, - ACTIONS(3406), 1, + [39651] = 1, + ACTIONS(2537), 1, + anon_sym_RBRACK, + [39655] = 1, + ACTIONS(3723), 1, anon_sym_SLASH2, - [100966] = 1, - ACTIONS(800), 1, + [39659] = 1, + ACTIONS(3725), 1, + sym_identifier, + [39663] = 1, + ACTIONS(3727), 1, + anon_sym_RPAREN, + [39667] = 1, + ACTIONS(3729), 1, + anon_sym_RPAREN, + [39671] = 1, + ACTIONS(849), 1, anon_sym_COLON, - [100970] = 1, - ACTIONS(3408), 1, - anon_sym_SLASH2, - [100974] = 1, - ACTIONS(2316), 1, + [39675] = 1, + ACTIONS(3731), 1, + anon_sym_in, + [39679] = 1, + ACTIONS(2513), 1, anon_sym_RBRACK, - [100978] = 1, - ACTIONS(3410), 1, + [39683] = 1, + ACTIONS(3733), 1, + anon_sym_RPAREN, + [39687] = 1, + ACTIONS(3735), 1, sym_identifier, - [100982] = 1, - ACTIONS(3412), 1, - anon_sym_LPAREN2, - [100986] = 1, - ACTIONS(3414), 1, + [39691] = 1, + ACTIONS(3737), 1, + anon_sym_RPAREN, + [39695] = 1, + ACTIONS(3739), 1, anon_sym_SLASH2, - [100990] = 1, - ACTIONS(2322), 1, + [39699] = 1, + ACTIONS(3741), 1, + sym_identifier, + [39703] = 1, + ACTIONS(3743), 1, + anon_sym_in, + [39707] = 1, + ACTIONS(2563), 1, anon_sym_RBRACK, - [100994] = 1, - ACTIONS(3416), 1, - anon_sym_LPAREN2, - [100998] = 1, - ACTIONS(3198), 1, - sym__func_call, - [101002] = 1, - ACTIONS(3418), 1, + [39711] = 1, + ACTIONS(3745), 1, + anon_sym_RPAREN, + [39715] = 1, + ACTIONS(3747), 1, sym_identifier, - [101006] = 1, - ACTIONS(3420), 1, - anon_sym_COLON, - [101010] = 1, - ACTIONS(3422), 1, - anon_sym_COLON_COLON, - [101014] = 1, - ACTIONS(3424), 1, - anon_sym_LPAREN, - [101018] = 1, - ACTIONS(3426), 1, + [39719] = 1, + ACTIONS(3749), 1, anon_sym_RPAREN, - [101022] = 1, - ACTIONS(3200), 1, - sym__func_call, - [101026] = 1, - ACTIONS(3428), 1, - anon_sym_SLASH2, - [101030] = 1, - ACTIONS(3430), 1, + [39723] = 1, + ACTIONS(3751), 1, + anon_sym_RBRACK2, + [39727] = 1, + ACTIONS(3753), 1, + anon_sym_COLON, + [39731] = 1, + ACTIONS(3755), 1, anon_sym_SLASH2, - [101034] = 1, - ACTIONS(2324), 1, + [39735] = 1, + ACTIONS(3757), 1, + anon_sym_in, + [39739] = 1, + ACTIONS(2557), 1, anon_sym_RBRACK, - [101038] = 1, - ACTIONS(3432), 1, + [39743] = 1, + ACTIONS(3759), 1, + anon_sym_RPAREN, + [39747] = 1, + ACTIONS(3761), 1, sym_identifier, - [101042] = 1, - ACTIONS(3434), 1, + [39751] = 1, + ACTIONS(3763), 1, anon_sym_RPAREN, - [101046] = 1, - ACTIONS(3436), 1, - aux_sym_comment_token1, - [101050] = 1, - ACTIONS(3438), 1, - anon_sym_SLASH2, - [101054] = 1, - ACTIONS(3440), 1, + [39755] = 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + [39759] = 1, + ACTIONS(3767), 1, + anon_sym_LPAREN, + [39763] = 1, + ACTIONS(3769), 1, anon_sym_SLASH2, - [101058] = 1, - ACTIONS(2330), 1, + [39767] = 1, + ACTIONS(3403), 1, + sym__func_call, + [39771] = 1, + ACTIONS(3771), 1, + sym__no_space, + [39775] = 1, + ACTIONS(3773), 1, + anon_sym_COLON, + [39779] = 1, + ACTIONS(2523), 1, anon_sym_RBRACK, - [101062] = 1, - ACTIONS(3442), 1, + [39783] = 1, + ACTIONS(3775), 1, + anon_sym_RPAREN, + [39787] = 1, + ACTIONS(3777), 1, + anon_sym_LPAREN2, + [39791] = 1, + ACTIONS(3779), 1, + anon_sym_RPAREN, + [39795] = 1, + ACTIONS(3781), 1, anon_sym_LPAREN, - [101066] = 1, - ACTIONS(3444), 1, + [39799] = 1, + ACTIONS(3783), 1, sym_identifier, - [101070] = 1, - ACTIONS(3446), 1, - anon_sym_RPAREN, - [101074] = 1, - ACTIONS(3448), 1, - anon_sym_in, - [101078] = 1, - ACTIONS(3450), 1, + [39803] = 1, + ACTIONS(3785), 1, + sym_identifier, + [39807] = 1, + ACTIONS(3787), 1, anon_sym_SLASH2, - [101082] = 1, - ACTIONS(3452), 1, - anon_sym_LPAREN, - [101086] = 1, - ACTIONS(3454), 1, - anon_sym_LPAREN, - [101090] = 1, - ACTIONS(3456), 1, - anon_sym_LPAREN, - [101094] = 1, - ACTIONS(3458), 1, - anon_sym_RPAREN, - [101098] = 1, - ACTIONS(2338), 1, - anon_sym_RBRACK, - [101102] = 1, - ACTIONS(3460), 1, + [39811] = 1, + ACTIONS(3789), 1, sym_identifier, - [101106] = 1, - ACTIONS(3462), 1, - anon_sym_COLON_COLON, - [101110] = 1, - ACTIONS(2340), 1, - anon_sym_RBRACK, - [101114] = 1, - ACTIONS(3464), 1, + [39815] = 1, + ACTIONS(3791), 1, + anon_sym_SLASH2, + [39819] = 1, + ACTIONS(3793), 1, anon_sym_RPAREN, - [101118] = 1, - ACTIONS(3466), 1, + [39823] = 1, + ACTIONS(3795), 1, anon_sym_COLON_COLON, - [101122] = 1, - ACTIONS(3468), 1, + [39827] = 1, + ACTIONS(3797), 1, anon_sym_LPAREN, - [101126] = 1, - ACTIONS(3470), 1, + [39831] = 1, + ACTIONS(3799), 1, sym_identifier, - [101130] = 1, - ACTIONS(1067), 1, + [39835] = 1, + ACTIONS(1095), 1, sym__func_call, - [101134] = 1, - ACTIONS(3472), 1, - anon_sym_RPAREN, - [101138] = 1, - ACTIONS(3474), 1, - ts_builtin_sym_end, - [101142] = 1, - ACTIONS(3476), 1, - anon_sym_RPAREN, - [101146] = 1, - ACTIONS(3478), 1, - anon_sym_RPAREN, - [101150] = 1, - ACTIONS(3480), 1, + [39839] = 1, + ACTIONS(3801), 1, anon_sym_SLASH2, - [101154] = 1, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - [101158] = 1, - ACTIONS(3484), 1, + [39843] = 1, + ACTIONS(3803), 1, + sym_identifier, + [39847] = 1, + ACTIONS(3805), 1, + anon_sym_SLASH2, + [39851] = 1, + ACTIONS(3807), 1, sym_identifier, - [101162] = 1, - ACTIONS(940), 1, + [39855] = 1, + ACTIONS(3809), 1, + anon_sym_SLASH2, + [39859] = 1, + ACTIONS(3811), 1, + anon_sym_COLON_COLON, + [39863] = 1, + ACTIONS(3813), 1, + anon_sym_SLASH2, + [39867] = 1, + ACTIONS(1127), 1, sym__func_call, - [101166] = 1, - ACTIONS(3486), 1, - aux_sym_comment_token1, - [101170] = 1, - ACTIONS(3488), 1, + [39871] = 1, + ACTIONS(3815), 1, + sym_identifier, + [39875] = 1, + ACTIONS(3817), 1, anon_sym_COLON_COLON, - [101174] = 1, - ACTIONS(3490), 1, + [39879] = 1, + ACTIONS(3819), 1, anon_sym_SLASH2, - [101178] = 1, - ACTIONS(1729), 1, + [39883] = 1, + ACTIONS(2191), 1, sym__func_call, - [101182] = 1, - ACTIONS(3492), 1, + [39887] = 1, + ACTIONS(3821), 1, anon_sym_COLON_COLON, - [101186] = 1, - ACTIONS(3494), 1, + [39891] = 1, + ACTIONS(2531), 1, + anon_sym_RBRACK, + [39895] = 1, + ACTIONS(2197), 1, + sym__func_call, + [39899] = 1, + ACTIONS(3823), 1, + anon_sym_COLON_COLON, + [39903] = 1, + ACTIONS(3825), 1, + anon_sym_RPAREN, + [39907] = 1, + ACTIONS(3385), 1, + sym__func_call, + [39911] = 1, + ACTIONS(3827), 1, + anon_sym_COLON_COLON, + [39915] = 1, + ACTIONS(3829), 1, sym_identifier, - [101190] = 1, - ACTIONS(3214), 1, + [39919] = 1, + ACTIONS(763), 1, sym__func_call, - [101194] = 1, - ACTIONS(3496), 1, + [39923] = 1, + ACTIONS(3831), 1, anon_sym_COLON_COLON, - [101198] = 1, - ACTIONS(3498), 1, + [39927] = 1, + ACTIONS(3833), 1, anon_sym_SLASH2, - [101202] = 1, - ACTIONS(776), 1, + [39931] = 1, + ACTIONS(777), 1, sym__func_call, - [101206] = 1, - ACTIONS(3500), 1, + [39935] = 1, + ACTIONS(3835), 1, anon_sym_COLON_COLON, - [101210] = 1, - ACTIONS(3502), 1, + [39939] = 1, + ACTIONS(3837), 1, sym_identifier, - [101214] = 1, - ACTIONS(692), 1, + [39943] = 1, + ACTIONS(2057), 1, sym__func_call, - [101218] = 1, - ACTIONS(3504), 1, + [39947] = 1, + ACTIONS(3839), 1, anon_sym_COLON_COLON, - [101222] = 1, - ACTIONS(3506), 1, - anon_sym_SLASH2, - [101226] = 1, - ACTIONS(1279), 1, + [39951] = 1, + ACTIONS(3841), 1, + anon_sym_RPAREN, + [39955] = 1, + ACTIONS(2035), 1, sym__func_call, - [101230] = 1, - ACTIONS(3508), 1, + [39959] = 1, + ACTIONS(3843), 1, anon_sym_COLON_COLON, - [101234] = 1, - ACTIONS(3510), 1, + [39963] = 1, + ACTIONS(3845), 1, + anon_sym_RPAREN, + [39967] = 1, + ACTIONS(3393), 1, + sym__func_call, + [39971] = 1, + ACTIONS(3847), 1, + anon_sym_COLON_COLON, + [39975] = 1, + ACTIONS(3849), 1, sym_identifier, - [101238] = 1, - ACTIONS(3218), 1, + [39979] = 1, + ACTIONS(741), 1, sym__func_call, - [101242] = 1, - ACTIONS(3512), 1, + [39983] = 1, + ACTIONS(3851), 1, anon_sym_COLON_COLON, - [101246] = 1, - ACTIONS(3514), 1, - anon_sym_SLASH2, - [101250] = 1, - ACTIONS(732), 1, + [39987] = 1, + ACTIONS(3853), 1, + anon_sym_RPAREN, + [39991] = 1, + ACTIONS(721), 1, sym__func_call, - [101254] = 1, - ACTIONS(3516), 1, + [39995] = 1, + ACTIONS(3855), 1, anon_sym_COLON_COLON, - [101258] = 1, - ACTIONS(3518), 1, - sym__no_space, - [101262] = 1, - ACTIONS(676), 1, + [39999] = 1, + ACTIONS(2539), 1, + anon_sym_RBRACK, + [40003] = 1, + ACTIONS(3399), 1, sym__func_call, - [101266] = 1, - ACTIONS(3520), 1, + [40007] = 1, + ACTIONS(3857), 1, anon_sym_COLON_COLON, - [101270] = 1, - ACTIONS(3522), 1, + [40011] = 1, + ACTIONS(3859), 1, anon_sym_SLASH2, - [101274] = 1, - ACTIONS(3220), 1, + [40015] = 1, + ACTIONS(2021), 1, sym__func_call, - [101278] = 1, - ACTIONS(3524), 1, + [40019] = 1, + ACTIONS(3861), 1, anon_sym_COLON_COLON, - [101282] = 1, - ACTIONS(3526), 1, - anon_sym_LPAREN2, - [101286] = 1, - ACTIONS(1245), 1, + [40023] = 1, + ACTIONS(3863), 1, + anon_sym_SLASH2, + [40027] = 1, + ACTIONS(2017), 1, sym__func_call, - [101290] = 1, - ACTIONS(3528), 1, + [40031] = 1, + ACTIONS(3865), 1, + anon_sym_COLON_COLON, + [40035] = 1, + ACTIONS(3867), 1, anon_sym_COLON_COLON, - [101294] = 1, - ACTIONS(3530), 1, + [40039] = 1, + ACTIONS(3869), 1, anon_sym_COLON_COLON, - [101298] = 1, - ACTIONS(3532), 1, + [40043] = 1, + ACTIONS(3871), 1, anon_sym_COLON_COLON, - [101302] = 1, - ACTIONS(3534), 1, + [40047] = 1, + ACTIONS(3873), 1, anon_sym_COLON_COLON, - [101306] = 1, - ACTIONS(3536), 1, + [40051] = 1, + ACTIONS(3875), 1, + anon_sym_COLON_COLON, + [40055] = 1, + ACTIONS(3877), 1, + anon_sym_COLON_COLON, + [40059] = 1, + ACTIONS(3879), 1, anon_sym_LPAREN, - [101310] = 1, - ACTIONS(3538), 1, + [40063] = 1, + ACTIONS(3881), 1, anon_sym_LPAREN, - [101314] = 1, - ACTIONS(3540), 1, + [40067] = 1, + ACTIONS(3883), 1, anon_sym_LPAREN, - [101318] = 1, - ACTIONS(3542), 1, + [40071] = 1, + ACTIONS(3885), 1, anon_sym_LPAREN, - [101322] = 1, - ACTIONS(3544), 1, + [40075] = 1, + ACTIONS(3887), 1, anon_sym_RPAREN, - [101326] = 1, - ACTIONS(3546), 1, + [40079] = 1, + ACTIONS(3889), 1, anon_sym_while, - [101330] = 1, - ACTIONS(3548), 1, - anon_sym_SLASH2, - [101334] = 1, - ACTIONS(3550), 1, - anon_sym_SLASH2, - [101338] = 1, - ACTIONS(3552), 1, - anon_sym_SLASH2, - [101342] = 1, - ACTIONS(3554), 1, + [40083] = 1, + ACTIONS(3891), 1, + sym_identifier, + [40087] = 1, + ACTIONS(3893), 1, + anon_sym_RPAREN, + [40091] = 1, + ACTIONS(2519), 1, + anon_sym_RBRACK, + [40095] = 1, + ACTIONS(3895), 1, anon_sym_while, - [101346] = 1, - ACTIONS(3556), 1, + [40099] = 1, + ACTIONS(3897), 1, + sym_identifier, + [40103] = 1, + ACTIONS(3899), 1, anon_sym_SLASH2, - [101350] = 1, - ACTIONS(3558), 1, - anon_sym_in, - [101354] = 1, - ACTIONS(3560), 1, - anon_sym_RPAREN, - [101358] = 1, - ACTIONS(3562), 1, + [40107] = 1, + ACTIONS(771), 1, + sym__func_call, + [40111] = 1, + ACTIONS(3901), 1, anon_sym_LPAREN, - [101362] = 1, - ACTIONS(3564), 1, + [40115] = 1, + ACTIONS(3903), 1, anon_sym_LPAREN, - [101366] = 1, - ACTIONS(3566), 1, + [40119] = 1, + ACTIONS(3905), 1, anon_sym_LPAREN, - [101370] = 1, - ACTIONS(3568), 1, - anon_sym_LPAREN2, - [101374] = 1, - ACTIONS(3570), 1, - sym__no_space, - [101378] = 1, - ACTIONS(3572), 1, - sym_identifier, - [101382] = 1, - ACTIONS(3574), 1, - anon_sym_in, - [101386] = 1, - ACTIONS(3576), 1, + [40123] = 1, + ACTIONS(3907), 1, + anon_sym_RPAREN, + [40127] = 1, + ACTIONS(3909), 1, + anon_sym_SLASH2, + [40131] = 1, + ACTIONS(2555), 1, + anon_sym_RBRACK, + [40135] = 1, + ACTIONS(3911), 1, + anon_sym_RPAREN, + [40139] = 1, + ACTIONS(3913), 1, anon_sym_LPAREN, - [101390] = 1, - ACTIONS(3578), 1, + [40143] = 1, + ACTIONS(3915), 1, anon_sym_LPAREN, - [101394] = 1, - ACTIONS(3580), 1, + [40147] = 1, + ACTIONS(3917), 1, anon_sym_LPAREN, - [101398] = 1, - ACTIONS(3582), 1, - anon_sym_in, - [101402] = 1, - ACTIONS(3584), 1, + [40151] = 1, + ACTIONS(3919), 1, + sym_identifier, + [40155] = 1, + ACTIONS(3921), 1, anon_sym_LPAREN, - [101406] = 1, - ACTIONS(3586), 1, - anon_sym_in, - [101410] = 1, - ACTIONS(3588), 1, - anon_sym_in, - [101414] = 1, - ACTIONS(3590), 1, + [40159] = 1, + ACTIONS(3923), 1, + anon_sym_RPAREN, + [40163] = 1, + ACTIONS(2565), 1, + anon_sym_RBRACK, + [40167] = 1, + ACTIONS(3925), 1, anon_sym_LPAREN, - [101418] = 1, - ACTIONS(3592), 1, + [40171] = 1, + ACTIONS(3927), 1, anon_sym_LPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(224)] = 0, - [SMALL_STATE(225)] = 69, - [SMALL_STATE(226)] = 138, - [SMALL_STATE(227)] = 215, - [SMALL_STATE(228)] = 284, - [SMALL_STATE(229)] = 353, - [SMALL_STATE(230)] = 422, - [SMALL_STATE(231)] = 491, - [SMALL_STATE(232)] = 564, - [SMALL_STATE(233)] = 633, - [SMALL_STATE(234)] = 710, - [SMALL_STATE(235)] = 779, - [SMALL_STATE(236)] = 848, - [SMALL_STATE(237)] = 917, - [SMALL_STATE(238)] = 986, - [SMALL_STATE(239)] = 1055, - [SMALL_STATE(240)] = 1132, - [SMALL_STATE(241)] = 1201, - [SMALL_STATE(242)] = 1272, - [SMALL_STATE(243)] = 1341, - [SMALL_STATE(244)] = 1418, - [SMALL_STATE(245)] = 1493, - [SMALL_STATE(246)] = 1562, - [SMALL_STATE(247)] = 1633, - [SMALL_STATE(248)] = 1708, - [SMALL_STATE(249)] = 1779, - [SMALL_STATE(250)] = 1848, - [SMALL_STATE(251)] = 1917, - [SMALL_STATE(252)] = 1986, - [SMALL_STATE(253)] = 2057, - [SMALL_STATE(254)] = 2128, - [SMALL_STATE(255)] = 2203, - [SMALL_STATE(256)] = 2277, - [SMALL_STATE(257)] = 2355, - [SMALL_STATE(258)] = 2441, - [SMALL_STATE(259)] = 2513, - [SMALL_STATE(260)] = 2591, - [SMALL_STATE(261)] = 2661, - [SMALL_STATE(262)] = 2747, - [SMALL_STATE(263)] = 2833, - [SMALL_STATE(264)] = 2903, - [SMALL_STATE(265)] = 2989, - [SMALL_STATE(266)] = 3061, - [SMALL_STATE(267)] = 3143, - [SMALL_STATE(268)] = 3215, - [SMALL_STATE(269)] = 3295, - [SMALL_STATE(270)] = 3369, - [SMALL_STATE(271)] = 3445, - [SMALL_STATE(272)] = 3517, - [SMALL_STATE(273)] = 3587, - [SMALL_STATE(274)] = 3661, - [SMALL_STATE(275)] = 3735, - [SMALL_STATE(276)] = 3809, - [SMALL_STATE(277)] = 3897, - [SMALL_STATE(278)] = 3971, - [SMALL_STATE(279)] = 4058, - [SMALL_STATE(280)] = 4143, - [SMALL_STATE(281)] = 4216, - [SMALL_STATE(282)] = 4289, - [SMALL_STATE(283)] = 4374, - [SMALL_STATE(284)] = 4443, - [SMALL_STATE(285)] = 4514, - [SMALL_STATE(286)] = 4585, - [SMALL_STATE(287)] = 4660, - [SMALL_STATE(288)] = 4739, - [SMALL_STATE(289)] = 4816, - [SMALL_STATE(290)] = 4887, - [SMALL_STATE(291)] = 4972, - [SMALL_STATE(292)] = 5053, - [SMALL_STATE(293)] = 5124, - [SMALL_STATE(294)] = 5209, - [SMALL_STATE(295)] = 5286, - [SMALL_STATE(296)] = 5361, - [SMALL_STATE(297)] = 5432, - [SMALL_STATE(298)] = 5505, - [SMALL_STATE(299)] = 5603, - [SMALL_STATE(300)] = 5667, - [SMALL_STATE(301)] = 5765, - [SMALL_STATE(302)] = 5883, - [SMALL_STATE(303)] = 6001, - [SMALL_STATE(304)] = 6071, - [SMALL_STATE(305)] = 6145, - [SMALL_STATE(306)] = 6213, - [SMALL_STATE(307)] = 6285, - [SMALL_STATE(308)] = 6353, - [SMALL_STATE(309)] = 6423, - [SMALL_STATE(310)] = 6490, - [SMALL_STATE(311)] = 6555, - [SMALL_STATE(312)] = 6618, - [SMALL_STATE(313)] = 6687, - [SMALL_STATE(314)] = 6754, - [SMALL_STATE(315)] = 6819, - [SMALL_STATE(316)] = 6888, - [SMALL_STATE(317)] = 6951, - [SMALL_STATE(318)] = 7020, - [SMALL_STATE(319)] = 7083, - [SMALL_STATE(320)] = 7156, - [SMALL_STATE(321)] = 7225, - [SMALL_STATE(322)] = 7298, - [SMALL_STATE(323)] = 7361, - [SMALL_STATE(324)] = 7428, - [SMALL_STATE(325)] = 7523, - [SMALL_STATE(326)] = 7618, - [SMALL_STATE(327)] = 7680, - [SMALL_STATE(328)] = 7742, - [SMALL_STATE(329)] = 7804, - [SMALL_STATE(330)] = 7866, - [SMALL_STATE(331)] = 7928, - [SMALL_STATE(332)] = 7994, - [SMALL_STATE(333)] = 8060, - [SMALL_STATE(334)] = 8122, - [SMALL_STATE(335)] = 8184, - [SMALL_STATE(336)] = 8246, - [SMALL_STATE(337)] = 8310, - [SMALL_STATE(338)] = 8376, - [SMALL_STATE(339)] = 8438, - [SMALL_STATE(340)] = 8502, - [SMALL_STATE(341)] = 8562, - [SMALL_STATE(342)] = 8624, - [SMALL_STATE(343)] = 8686, - [SMALL_STATE(344)] = 8748, - [SMALL_STATE(345)] = 8812, - [SMALL_STATE(346)] = 8874, - [SMALL_STATE(347)] = 8936, - [SMALL_STATE(348)] = 9002, - [SMALL_STATE(349)] = 9068, - [SMALL_STATE(350)] = 9136, - [SMALL_STATE(351)] = 9198, - [SMALL_STATE(352)] = 9260, - [SMALL_STATE(353)] = 9326, - [SMALL_STATE(354)] = 9386, - [SMALL_STATE(355)] = 9450, - [SMALL_STATE(356)] = 9514, - [SMALL_STATE(357)] = 9576, - [SMALL_STATE(358)] = 9638, - [SMALL_STATE(359)] = 9704, - [SMALL_STATE(360)] = 9766, - [SMALL_STATE(361)] = 9834, - [SMALL_STATE(362)] = 9896, - [SMALL_STATE(363)] = 9962, - [SMALL_STATE(364)] = 10032, - [SMALL_STATE(365)] = 10093, - [SMALL_STATE(366)] = 10164, - [SMALL_STATE(367)] = 10227, - [SMALL_STATE(368)] = 10290, - [SMALL_STATE(369)] = 10351, - [SMALL_STATE(370)] = 10418, - [SMALL_STATE(371)] = 10489, - [SMALL_STATE(372)] = 10550, - [SMALL_STATE(373)] = 10611, - [SMALL_STATE(374)] = 10686, - [SMALL_STATE(375)] = 10749, - [SMALL_STATE(376)] = 10810, - [SMALL_STATE(377)] = 10889, - [SMALL_STATE(378)] = 10950, - [SMALL_STATE(379)] = 11015, - [SMALL_STATE(380)] = 11078, - [SMALL_STATE(381)] = 11141, - [SMALL_STATE(382)] = 11220, - [SMALL_STATE(383)] = 11283, - [SMALL_STATE(384)] = 11344, - [SMALL_STATE(385)] = 11423, - [SMALL_STATE(386)] = 11484, - [SMALL_STATE(387)] = 11545, - [SMALL_STATE(388)] = 11606, - [SMALL_STATE(389)] = 11667, - [SMALL_STATE(390)] = 11748, - [SMALL_STATE(391)] = 11809, - [SMALL_STATE(392)] = 11874, - [SMALL_STATE(393)] = 11935, - [SMALL_STATE(394)] = 11996, - [SMALL_STATE(395)] = 12075, - [SMALL_STATE(396)] = 12138, - [SMALL_STATE(397)] = 12205, - [SMALL_STATE(398)] = 12266, - [SMALL_STATE(399)] = 12331, - [SMALL_STATE(400)] = 12392, - [SMALL_STATE(401)] = 12467, - [SMALL_STATE(402)] = 12528, - [SMALL_STATE(403)] = 12601, - [SMALL_STATE(404)] = 12670, - [SMALL_STATE(405)] = 12735, - [SMALL_STATE(406)] = 12798, - [SMALL_STATE(407)] = 12873, - [SMALL_STATE(408)] = 12934, - [SMALL_STATE(409)] = 12997, - [SMALL_STATE(410)] = 13058, - [SMALL_STATE(411)] = 13121, - [SMALL_STATE(412)] = 13184, - [SMALL_STATE(413)] = 13247, - [SMALL_STATE(414)] = 13318, - [SMALL_STATE(415)] = 13381, - [SMALL_STATE(416)] = 13442, - [SMALL_STATE(417)] = 13515, - [SMALL_STATE(418)] = 13575, - [SMALL_STATE(419)] = 13637, - [SMALL_STATE(420)] = 13697, - [SMALL_STATE(421)] = 13777, - [SMALL_STATE(422)] = 13837, - [SMALL_STATE(423)] = 13897, - [SMALL_STATE(424)] = 13957, - [SMALL_STATE(425)] = 14037, - [SMALL_STATE(426)] = 14117, - [SMALL_STATE(427)] = 14177, - [SMALL_STATE(428)] = 14237, - [SMALL_STATE(429)] = 14297, - [SMALL_STATE(430)] = 14357, - [SMALL_STATE(431)] = 14435, - [SMALL_STATE(432)] = 14495, - [SMALL_STATE(433)] = 14561, - [SMALL_STATE(434)] = 14629, - [SMALL_STATE(435)] = 14689, - [SMALL_STATE(436)] = 14749, - [SMALL_STATE(437)] = 14809, - [SMALL_STATE(438)] = 14887, - [SMALL_STATE(439)] = 14947, - [SMALL_STATE(440)] = 15007, - [SMALL_STATE(441)] = 15067, - [SMALL_STATE(442)] = 15129, - [SMALL_STATE(443)] = 15189, - [SMALL_STATE(444)] = 15259, - [SMALL_STATE(445)] = 15331, - [SMALL_STATE(446)] = 15391, - [SMALL_STATE(447)] = 15451, - [SMALL_STATE(448)] = 15531, - [SMALL_STATE(449)] = 15603, - [SMALL_STATE(450)] = 15663, - [SMALL_STATE(451)] = 15723, - [SMALL_STATE(452)] = 15783, - [SMALL_STATE(453)] = 15843, - [SMALL_STATE(454)] = 15917, - [SMALL_STATE(455)] = 15989, - [SMALL_STATE(456)] = 16067, - [SMALL_STATE(457)] = 16127, - [SMALL_STATE(458)] = 16187, - [SMALL_STATE(459)] = 16251, - [SMALL_STATE(460)] = 16317, - [SMALL_STATE(461)] = 16383, - [SMALL_STATE(462)] = 16443, - [SMALL_STATE(463)] = 16513, - [SMALL_STATE(464)] = 16591, - [SMALL_STATE(465)] = 16651, - [SMALL_STATE(466)] = 16721, - [SMALL_STATE(467)] = 16781, - [SMALL_STATE(468)] = 16841, - [SMALL_STATE(469)] = 16903, - [SMALL_STATE(470)] = 16963, - [SMALL_STATE(471)] = 17023, - [SMALL_STATE(472)] = 17083, - [SMALL_STATE(473)] = 17143, - [SMALL_STATE(474)] = 17203, - [SMALL_STATE(475)] = 17263, - [SMALL_STATE(476)] = 17320, - [SMALL_STATE(477)] = 17377, - [SMALL_STATE(478)] = 17454, - [SMALL_STATE(479)] = 17511, - [SMALL_STATE(480)] = 17568, - [SMALL_STATE(481)] = 17645, - [SMALL_STATE(482)] = 17702, - [SMALL_STATE(483)] = 17771, - [SMALL_STATE(484)] = 17840, - [SMALL_STATE(485)] = 17901, - [SMALL_STATE(486)] = 17958, - [SMALL_STATE(487)] = 18015, - [SMALL_STATE(488)] = 18072, - [SMALL_STATE(489)] = 18139, - [SMALL_STATE(490)] = 18196, - [SMALL_STATE(491)] = 18273, - [SMALL_STATE(492)] = 18372, - [SMALL_STATE(493)] = 18429, - [SMALL_STATE(494)] = 18490, - [SMALL_STATE(495)] = 18553, - [SMALL_STATE(496)] = 18610, - [SMALL_STATE(497)] = 18667, - [SMALL_STATE(498)] = 18737, - [SMALL_STATE(499)] = 18815, - [SMALL_STATE(500)] = 18891, - [SMALL_STATE(501)] = 18975, - [SMALL_STATE(502)] = 19047, - [SMALL_STATE(503)] = 19113, - [SMALL_STATE(504)] = 19185, - [SMALL_STATE(505)] = 19249, - [SMALL_STATE(506)] = 19327, - [SMALL_STATE(507)] = 19405, - [SMALL_STATE(508)] = 19485, - [SMALL_STATE(509)] = 19563, - [SMALL_STATE(510)] = 19641, - [SMALL_STATE(511)] = 19721, - [SMALL_STATE(512)] = 19817, - [SMALL_STATE(513)] = 19897, - [SMALL_STATE(514)] = 19963, - [SMALL_STATE(515)] = 20037, - [SMALL_STATE(516)] = 20117, - [SMALL_STATE(517)] = 20181, - [SMALL_STATE(518)] = 20243, - [SMALL_STATE(519)] = 20309, - [SMALL_STATE(520)] = 20375, - [SMALL_STATE(521)] = 20450, - [SMALL_STATE(522)] = 20525, - [SMALL_STATE(523)] = 20600, - [SMALL_STATE(524)] = 20675, - [SMALL_STATE(525)] = 20750, - [SMALL_STATE(526)] = 20846, - [SMALL_STATE(527)] = 20939, - [SMALL_STATE(528)] = 20999, - [SMALL_STATE(529)] = 21063, - [SMALL_STATE(530)] = 21120, - [SMALL_STATE(531)] = 21179, - [SMALL_STATE(532)] = 21242, - [SMALL_STATE(533)] = 21299, - [SMALL_STATE(534)] = 21358, - [SMALL_STATE(535)] = 21412, - [SMALL_STATE(536)] = 21464, - [SMALL_STATE(537)] = 21520, - [SMALL_STATE(538)] = 21574, - [SMALL_STATE(539)] = 21628, - [SMALL_STATE(540)] = 21680, - [SMALL_STATE(541)] = 21734, - [SMALL_STATE(542)] = 21790, - [SMALL_STATE(543)] = 21842, - [SMALL_STATE(544)] = 21894, - [SMALL_STATE(545)] = 21950, - [SMALL_STATE(546)] = 22008, - [SMALL_STATE(547)] = 22065, - [SMALL_STATE(548)] = 22116, - [SMALL_STATE(549)] = 22167, - [SMALL_STATE(550)] = 22218, - [SMALL_STATE(551)] = 22271, - [SMALL_STATE(552)] = 22326, - [SMALL_STATE(553)] = 22379, - [SMALL_STATE(554)] = 22438, - [SMALL_STATE(555)] = 22489, - [SMALL_STATE(556)] = 22542, - [SMALL_STATE(557)] = 22619, - [SMALL_STATE(558)] = 22670, - [SMALL_STATE(559)] = 22721, - [SMALL_STATE(560)] = 22772, - [SMALL_STATE(561)] = 22823, - [SMALL_STATE(562)] = 22874, - [SMALL_STATE(563)] = 22939, - [SMALL_STATE(564)] = 23012, - [SMALL_STATE(565)] = 23063, - [SMALL_STATE(566)] = 23132, - [SMALL_STATE(567)] = 23183, - [SMALL_STATE(568)] = 23236, - [SMALL_STATE(569)] = 23309, - [SMALL_STATE(570)] = 23382, - [SMALL_STATE(571)] = 23433, - [SMALL_STATE(572)] = 23484, - [SMALL_STATE(573)] = 23535, - [SMALL_STATE(574)] = 23602, - [SMALL_STATE(575)] = 23653, - [SMALL_STATE(576)] = 23706, - [SMALL_STATE(577)] = 23761, - [SMALL_STATE(578)] = 23846, - [SMALL_STATE(579)] = 23919, - [SMALL_STATE(580)] = 23970, - [SMALL_STATE(581)] = 24035, - [SMALL_STATE(582)] = 24120, - [SMALL_STATE(583)] = 24179, - [SMALL_STATE(584)] = 24230, - [SMALL_STATE(585)] = 24281, - [SMALL_STATE(586)] = 24334, - [SMALL_STATE(587)] = 24385, - [SMALL_STATE(588)] = 24448, - [SMALL_STATE(589)] = 24499, - [SMALL_STATE(590)] = 24549, - [SMALL_STATE(591)] = 24631, - [SMALL_STATE(592)] = 24693, - [SMALL_STATE(593)] = 24743, - [SMALL_STATE(594)] = 24793, - [SMALL_STATE(595)] = 24843, - [SMALL_STATE(596)] = 24893, - [SMALL_STATE(597)] = 24971, - [SMALL_STATE(598)] = 25047, - [SMALL_STATE(599)] = 25097, - [SMALL_STATE(600)] = 25147, - [SMALL_STATE(601)] = 25207, - [SMALL_STATE(602)] = 25257, - [SMALL_STATE(603)] = 25307, - [SMALL_STATE(604)] = 25389, - [SMALL_STATE(605)] = 25439, - [SMALL_STATE(606)] = 25500, - [SMALL_STATE(607)] = 25559, - [SMALL_STATE(608)] = 25618, - [SMALL_STATE(609)] = 25693, - [SMALL_STATE(610)] = 25754, - [SMALL_STATE(611)] = 25813, - [SMALL_STATE(612)] = 25869, - [SMALL_STATE(613)] = 25927, - [SMALL_STATE(614)] = 25983, - [SMALL_STATE(615)] = 26041, - [SMALL_STATE(616)] = 26123, - [SMALL_STATE(617)] = 26177, - [SMALL_STATE(618)] = 26259, - [SMALL_STATE(619)] = 26317, - [SMALL_STATE(620)] = 26375, - [SMALL_STATE(621)] = 26428, - [SMALL_STATE(622)] = 26477, - [SMALL_STATE(623)] = 26532, - [SMALL_STATE(624)] = 26583, - [SMALL_STATE(625)] = 26632, - [SMALL_STATE(626)] = 26687, - [SMALL_STATE(627)] = 26740, - [SMALL_STATE(628)] = 26819, - [SMALL_STATE(629)] = 26898, - [SMALL_STATE(630)] = 26953, - [SMALL_STATE(631)] = 27008, - [SMALL_STATE(632)] = 27065, - [SMALL_STATE(633)] = 27118, - [SMALL_STATE(634)] = 27182, - [SMALL_STATE(635)] = 27240, - [SMALL_STATE(636)] = 27288, - [SMALL_STATE(637)] = 27372, - [SMALL_STATE(638)] = 27456, - [SMALL_STATE(639)] = 27540, - [SMALL_STATE(640)] = 27596, - [SMALL_STATE(641)] = 27660, - [SMALL_STATE(642)] = 27724, - [SMALL_STATE(643)] = 27808, - [SMALL_STATE(644)] = 27892, - [SMALL_STATE(645)] = 27944, - [SMALL_STATE(646)] = 27998, - [SMALL_STATE(647)] = 28048, - [SMALL_STATE(648)] = 28132, - [SMALL_STATE(649)] = 28184, - [SMALL_STATE(650)] = 28240, - [SMALL_STATE(651)] = 28288, - [SMALL_STATE(652)] = 28340, - [SMALL_STATE(653)] = 28390, - [SMALL_STATE(654)] = 28454, - [SMALL_STATE(655)] = 28538, - [SMALL_STATE(656)] = 28604, - [SMALL_STATE(657)] = 28652, - [SMALL_STATE(658)] = 28702, - [SMALL_STATE(659)] = 28786, - [SMALL_STATE(660)] = 28870, - [SMALL_STATE(661)] = 28954, - [SMALL_STATE(662)] = 29000, - [SMALL_STATE(663)] = 29046, - [SMALL_STATE(664)] = 29102, - [SMALL_STATE(665)] = 29162, - [SMALL_STATE(666)] = 29214, - [SMALL_STATE(667)] = 29266, - [SMALL_STATE(668)] = 29324, - [SMALL_STATE(669)] = 29376, - [SMALL_STATE(670)] = 29432, - [SMALL_STATE(671)] = 29478, - [SMALL_STATE(672)] = 29524, - [SMALL_STATE(673)] = 29607, - [SMALL_STATE(674)] = 29690, - [SMALL_STATE(675)] = 29773, - [SMALL_STATE(676)] = 29856, - [SMALL_STATE(677)] = 29937, - [SMALL_STATE(678)] = 30018, - [SMALL_STATE(679)] = 30101, - [SMALL_STATE(680)] = 30182, - [SMALL_STATE(681)] = 30263, - [SMALL_STATE(682)] = 30318, - [SMALL_STATE(683)] = 30401, - [SMALL_STATE(684)] = 30482, - [SMALL_STATE(685)] = 30537, - [SMALL_STATE(686)] = 30590, - [SMALL_STATE(687)] = 30671, - [SMALL_STATE(688)] = 30754, - [SMALL_STATE(689)] = 30837, - [SMALL_STATE(690)] = 30892, - [SMALL_STATE(691)] = 30975, - [SMALL_STATE(692)] = 31058, - [SMALL_STATE(693)] = 31139, - [SMALL_STATE(694)] = 31222, - [SMALL_STATE(695)] = 31271, - [SMALL_STATE(696)] = 31354, - [SMALL_STATE(697)] = 31435, - [SMALL_STATE(698)] = 31518, - [SMALL_STATE(699)] = 31601, - [SMALL_STATE(700)] = 31666, - [SMALL_STATE(701)] = 31747, - [SMALL_STATE(702)] = 31830, - [SMALL_STATE(703)] = 31913, - [SMALL_STATE(704)] = 31962, - [SMALL_STATE(705)] = 32045, - [SMALL_STATE(706)] = 32126, - [SMALL_STATE(707)] = 32169, - [SMALL_STATE(708)] = 32212, - [SMALL_STATE(709)] = 32295, - [SMALL_STATE(710)] = 32378, - [SMALL_STATE(711)] = 32461, - [SMALL_STATE(712)] = 32544, - [SMALL_STATE(713)] = 32595, - [SMALL_STATE(714)] = 32676, - [SMALL_STATE(715)] = 32757, - [SMALL_STATE(716)] = 32840, - [SMALL_STATE(717)] = 32921, - [SMALL_STATE(718)] = 33004, - [SMALL_STATE(719)] = 33087, - [SMALL_STATE(720)] = 33170, - [SMALL_STATE(721)] = 33253, - [SMALL_STATE(722)] = 33336, - [SMALL_STATE(723)] = 33419, - [SMALL_STATE(724)] = 33500, - [SMALL_STATE(725)] = 33581, - [SMALL_STATE(726)] = 33662, - [SMALL_STATE(727)] = 33745, - [SMALL_STATE(728)] = 33826, - [SMALL_STATE(729)] = 33907, - [SMALL_STATE(730)] = 33988, - [SMALL_STATE(731)] = 34071, - [SMALL_STATE(732)] = 34152, - [SMALL_STATE(733)] = 34235, - [SMALL_STATE(734)] = 34318, - [SMALL_STATE(735)] = 34399, - [SMALL_STATE(736)] = 34482, - [SMALL_STATE(737)] = 34565, - [SMALL_STATE(738)] = 34648, - [SMALL_STATE(739)] = 34731, - [SMALL_STATE(740)] = 34814, - [SMALL_STATE(741)] = 34897, - [SMALL_STATE(742)] = 34980, - [SMALL_STATE(743)] = 35063, - [SMALL_STATE(744)] = 35144, - [SMALL_STATE(745)] = 35227, - [SMALL_STATE(746)] = 35310, - [SMALL_STATE(747)] = 35391, - [SMALL_STATE(748)] = 35474, - [SMALL_STATE(749)] = 35557, - [SMALL_STATE(750)] = 35640, - [SMALL_STATE(751)] = 35721, - [SMALL_STATE(752)] = 35804, - [SMALL_STATE(753)] = 35887, - [SMALL_STATE(754)] = 35970, - [SMALL_STATE(755)] = 36053, - [SMALL_STATE(756)] = 36136, - [SMALL_STATE(757)] = 36199, - [SMALL_STATE(758)] = 36282, - [SMALL_STATE(759)] = 36365, - [SMALL_STATE(760)] = 36428, - [SMALL_STATE(761)] = 36491, - [SMALL_STATE(762)] = 36572, - [SMALL_STATE(763)] = 36635, - [SMALL_STATE(764)] = 36718, - [SMALL_STATE(765)] = 36801, - [SMALL_STATE(766)] = 36884, - [SMALL_STATE(767)] = 36939, - [SMALL_STATE(768)] = 37022, - [SMALL_STATE(769)] = 37103, - [SMALL_STATE(770)] = 37162, - [SMALL_STATE(771)] = 37245, - [SMALL_STATE(772)] = 37326, - [SMALL_STATE(773)] = 37409, - [SMALL_STATE(774)] = 37492, - [SMALL_STATE(775)] = 37575, - [SMALL_STATE(776)] = 37632, - [SMALL_STATE(777)] = 37715, - [SMALL_STATE(778)] = 37770, - [SMALL_STATE(779)] = 37813, - [SMALL_STATE(780)] = 37866, - [SMALL_STATE(781)] = 37947, - [SMALL_STATE(782)] = 37990, - [SMALL_STATE(783)] = 38039, - [SMALL_STATE(784)] = 38120, - [SMALL_STATE(785)] = 38167, - [SMALL_STATE(786)] = 38218, - [SMALL_STATE(787)] = 38299, - [SMALL_STATE(788)] = 38350, - [SMALL_STATE(789)] = 38433, - [SMALL_STATE(790)] = 38488, - [SMALL_STATE(791)] = 38569, - [SMALL_STATE(792)] = 38650, - [SMALL_STATE(793)] = 38730, - [SMALL_STATE(794)] = 38810, - [SMALL_STATE(795)] = 38890, - [SMALL_STATE(796)] = 38970, - [SMALL_STATE(797)] = 39020, - [SMALL_STATE(798)] = 39100, - [SMALL_STATE(799)] = 39146, - [SMALL_STATE(800)] = 39226, - [SMALL_STATE(801)] = 39306, - [SMALL_STATE(802)] = 39354, - [SMALL_STATE(803)] = 39400, - [SMALL_STATE(804)] = 39480, - [SMALL_STATE(805)] = 39560, - [SMALL_STATE(806)] = 39640, - [SMALL_STATE(807)] = 39720, - [SMALL_STATE(808)] = 39800, - [SMALL_STATE(809)] = 39880, - [SMALL_STATE(810)] = 39960, - [SMALL_STATE(811)] = 40040, - [SMALL_STATE(812)] = 40120, - [SMALL_STATE(813)] = 40200, - [SMALL_STATE(814)] = 40280, - [SMALL_STATE(815)] = 40360, - [SMALL_STATE(816)] = 40418, - [SMALL_STATE(817)] = 40498, - [SMALL_STATE(818)] = 40578, - [SMALL_STATE(819)] = 40658, - [SMALL_STATE(820)] = 40738, - [SMALL_STATE(821)] = 40818, - [SMALL_STATE(822)] = 40898, - [SMALL_STATE(823)] = 40978, - [SMALL_STATE(824)] = 41058, - [SMALL_STATE(825)] = 41138, - [SMALL_STATE(826)] = 41218, - [SMALL_STATE(827)] = 41298, - [SMALL_STATE(828)] = 41378, - [SMALL_STATE(829)] = 41458, - [SMALL_STATE(830)] = 41538, - [SMALL_STATE(831)] = 41618, - [SMALL_STATE(832)] = 41666, - [SMALL_STATE(833)] = 41746, - [SMALL_STATE(834)] = 41826, - [SMALL_STATE(835)] = 41906, - [SMALL_STATE(836)] = 41956, - [SMALL_STATE(837)] = 42036, - [SMALL_STATE(838)] = 42084, - [SMALL_STATE(839)] = 42140, - [SMALL_STATE(840)] = 42220, - [SMALL_STATE(841)] = 42272, - [SMALL_STATE(842)] = 42332, - [SMALL_STATE(843)] = 42412, - [SMALL_STATE(844)] = 42492, - [SMALL_STATE(845)] = 42572, - [SMALL_STATE(846)] = 42652, - [SMALL_STATE(847)] = 42732, - [SMALL_STATE(848)] = 42812, - [SMALL_STATE(849)] = 42892, - [SMALL_STATE(850)] = 42944, - [SMALL_STATE(851)] = 43024, - [SMALL_STATE(852)] = 43076, - [SMALL_STATE(853)] = 43156, - [SMALL_STATE(854)] = 43236, - [SMALL_STATE(855)] = 43316, - [SMALL_STATE(856)] = 43391, - [SMALL_STATE(857)] = 43466, - [SMALL_STATE(858)] = 43541, - [SMALL_STATE(859)] = 43616, - [SMALL_STATE(860)] = 43691, - [SMALL_STATE(861)] = 43768, - [SMALL_STATE(862)] = 43843, - [SMALL_STATE(863)] = 43918, - [SMALL_STATE(864)] = 43993, - [SMALL_STATE(865)] = 44068, - [SMALL_STATE(866)] = 44143, - [SMALL_STATE(867)] = 44218, - [SMALL_STATE(868)] = 44293, - [SMALL_STATE(869)] = 44368, - [SMALL_STATE(870)] = 44443, - [SMALL_STATE(871)] = 44518, - [SMALL_STATE(872)] = 44595, - [SMALL_STATE(873)] = 44670, - [SMALL_STATE(874)] = 44747, - [SMALL_STATE(875)] = 44822, - [SMALL_STATE(876)] = 44897, - [SMALL_STATE(877)] = 44972, - [SMALL_STATE(878)] = 45047, - [SMALL_STATE(879)] = 45122, - [SMALL_STATE(880)] = 45197, - [SMALL_STATE(881)] = 45272, - [SMALL_STATE(882)] = 45347, - [SMALL_STATE(883)] = 45424, - [SMALL_STATE(884)] = 45499, - [SMALL_STATE(885)] = 45574, - [SMALL_STATE(886)] = 45649, - [SMALL_STATE(887)] = 45724, - [SMALL_STATE(888)] = 45799, - [SMALL_STATE(889)] = 45874, - [SMALL_STATE(890)] = 45949, - [SMALL_STATE(891)] = 46024, - [SMALL_STATE(892)] = 46099, - [SMALL_STATE(893)] = 46174, - [SMALL_STATE(894)] = 46249, - [SMALL_STATE(895)] = 46324, - [SMALL_STATE(896)] = 46399, - [SMALL_STATE(897)] = 46474, - [SMALL_STATE(898)] = 46549, - [SMALL_STATE(899)] = 46624, - [SMALL_STATE(900)] = 46699, - [SMALL_STATE(901)] = 46774, - [SMALL_STATE(902)] = 46849, - [SMALL_STATE(903)] = 46924, - [SMALL_STATE(904)] = 46999, - [SMALL_STATE(905)] = 47074, - [SMALL_STATE(906)] = 47149, - [SMALL_STATE(907)] = 47224, - [SMALL_STATE(908)] = 47299, - [SMALL_STATE(909)] = 47374, - [SMALL_STATE(910)] = 47449, - [SMALL_STATE(911)] = 47524, - [SMALL_STATE(912)] = 47599, - [SMALL_STATE(913)] = 47674, - [SMALL_STATE(914)] = 47749, - [SMALL_STATE(915)] = 47824, - [SMALL_STATE(916)] = 47899, - [SMALL_STATE(917)] = 47974, - [SMALL_STATE(918)] = 48049, - [SMALL_STATE(919)] = 48124, - [SMALL_STATE(920)] = 48199, - [SMALL_STATE(921)] = 48274, - [SMALL_STATE(922)] = 48351, - [SMALL_STATE(923)] = 48426, - [SMALL_STATE(924)] = 48501, - [SMALL_STATE(925)] = 48576, - [SMALL_STATE(926)] = 48651, - [SMALL_STATE(927)] = 48726, - [SMALL_STATE(928)] = 48801, - [SMALL_STATE(929)] = 48876, - [SMALL_STATE(930)] = 48951, - [SMALL_STATE(931)] = 49026, - [SMALL_STATE(932)] = 49075, - [SMALL_STATE(933)] = 49150, - [SMALL_STATE(934)] = 49227, - [SMALL_STATE(935)] = 49304, - [SMALL_STATE(936)] = 49381, - [SMALL_STATE(937)] = 49426, - [SMALL_STATE(938)] = 49503, - [SMALL_STATE(939)] = 49580, - [SMALL_STATE(940)] = 49655, - [SMALL_STATE(941)] = 49732, - [SMALL_STATE(942)] = 49807, - [SMALL_STATE(943)] = 49884, - [SMALL_STATE(944)] = 49959, - [SMALL_STATE(945)] = 50034, - [SMALL_STATE(946)] = 50109, - [SMALL_STATE(947)] = 50186, - [SMALL_STATE(948)] = 50261, - [SMALL_STATE(949)] = 50308, - [SMALL_STATE(950)] = 50383, - [SMALL_STATE(951)] = 50458, - [SMALL_STATE(952)] = 50535, - [SMALL_STATE(953)] = 50612, - [SMALL_STATE(954)] = 50689, - [SMALL_STATE(955)] = 50764, - [SMALL_STATE(956)] = 50839, - [SMALL_STATE(957)] = 50916, - [SMALL_STATE(958)] = 50991, - [SMALL_STATE(959)] = 51066, - [SMALL_STATE(960)] = 51141, - [SMALL_STATE(961)] = 51216, - [SMALL_STATE(962)] = 51291, - [SMALL_STATE(963)] = 51366, - [SMALL_STATE(964)] = 51441, - [SMALL_STATE(965)] = 51516, - [SMALL_STATE(966)] = 51569, - [SMALL_STATE(967)] = 51646, - [SMALL_STATE(968)] = 51721, - [SMALL_STATE(969)] = 51770, - [SMALL_STATE(970)] = 51845, - [SMALL_STATE(971)] = 51920, - [SMALL_STATE(972)] = 51995, - [SMALL_STATE(973)] = 52070, - [SMALL_STATE(974)] = 52145, - [SMALL_STATE(975)] = 52220, - [SMALL_STATE(976)] = 52295, - [SMALL_STATE(977)] = 52370, - [SMALL_STATE(978)] = 52447, - [SMALL_STATE(979)] = 52492, - [SMALL_STATE(980)] = 52567, - [SMALL_STATE(981)] = 52614, - [SMALL_STATE(982)] = 52689, - [SMALL_STATE(983)] = 52764, - [SMALL_STATE(984)] = 52839, - [SMALL_STATE(985)] = 52916, - [SMALL_STATE(986)] = 52991, - [SMALL_STATE(987)] = 53066, - [SMALL_STATE(988)] = 53141, - [SMALL_STATE(989)] = 53216, - [SMALL_STATE(990)] = 53291, - [SMALL_STATE(991)] = 53368, - [SMALL_STATE(992)] = 53419, - [SMALL_STATE(993)] = 53494, - [SMALL_STATE(994)] = 53549, - [SMALL_STATE(995)] = 53626, - [SMALL_STATE(996)] = 53683, - [SMALL_STATE(997)] = 53758, - [SMALL_STATE(998)] = 53833, - [SMALL_STATE(999)] = 53908, - [SMALL_STATE(1000)] = 53983, - [SMALL_STATE(1001)] = 54058, - [SMALL_STATE(1002)] = 54111, - [SMALL_STATE(1003)] = 54172, - [SMALL_STATE(1004)] = 54247, - [SMALL_STATE(1005)] = 54322, - [SMALL_STATE(1006)] = 54397, - [SMALL_STATE(1007)] = 54458, - [SMALL_STATE(1008)] = 54519, - [SMALL_STATE(1009)] = 54594, - [SMALL_STATE(1010)] = 54669, - [SMALL_STATE(1011)] = 54744, - [SMALL_STATE(1012)] = 54819, - [SMALL_STATE(1013)] = 54894, - [SMALL_STATE(1014)] = 54971, - [SMALL_STATE(1015)] = 55046, - [SMALL_STATE(1016)] = 55121, - [SMALL_STATE(1017)] = 55196, - [SMALL_STATE(1018)] = 55271, - [SMALL_STATE(1019)] = 55348, - [SMALL_STATE(1020)] = 55423, - [SMALL_STATE(1021)] = 55498, - [SMALL_STATE(1022)] = 55573, - [SMALL_STATE(1023)] = 55648, - [SMALL_STATE(1024)] = 55723, - [SMALL_STATE(1025)] = 55798, - [SMALL_STATE(1026)] = 55873, - [SMALL_STATE(1027)] = 55948, - [SMALL_STATE(1028)] = 56023, - [SMALL_STATE(1029)] = 56098, - [SMALL_STATE(1030)] = 56173, - [SMALL_STATE(1031)] = 56250, - [SMALL_STATE(1032)] = 56325, - [SMALL_STATE(1033)] = 56400, - [SMALL_STATE(1034)] = 56475, - [SMALL_STATE(1035)] = 56550, - [SMALL_STATE(1036)] = 56625, - [SMALL_STATE(1037)] = 56686, - [SMALL_STATE(1038)] = 56761, - [SMALL_STATE(1039)] = 56836, - [SMALL_STATE(1040)] = 56911, - [SMALL_STATE(1041)] = 56986, - [SMALL_STATE(1042)] = 57061, - [SMALL_STATE(1043)] = 57138, - [SMALL_STATE(1044)] = 57213, - [SMALL_STATE(1045)] = 57288, - [SMALL_STATE(1046)] = 57363, - [SMALL_STATE(1047)] = 57440, - [SMALL_STATE(1048)] = 57515, - [SMALL_STATE(1049)] = 57590, - [SMALL_STATE(1050)] = 57665, - [SMALL_STATE(1051)] = 57742, - [SMALL_STATE(1052)] = 57817, - [SMALL_STATE(1053)] = 57892, - [SMALL_STATE(1054)] = 57967, - [SMALL_STATE(1055)] = 58044, - [SMALL_STATE(1056)] = 58119, - [SMALL_STATE(1057)] = 58194, - [SMALL_STATE(1058)] = 58269, - [SMALL_STATE(1059)] = 58344, - [SMALL_STATE(1060)] = 58419, - [SMALL_STATE(1061)] = 58494, - [SMALL_STATE(1062)] = 58571, - [SMALL_STATE(1063)] = 58648, - [SMALL_STATE(1064)] = 58703, - [SMALL_STATE(1065)] = 58780, - [SMALL_STATE(1066)] = 58857, - [SMALL_STATE(1067)] = 58934, - [SMALL_STATE(1068)] = 59009, - [SMALL_STATE(1069)] = 59084, - [SMALL_STATE(1070)] = 59159, - [SMALL_STATE(1071)] = 59234, - [SMALL_STATE(1072)] = 59309, - [SMALL_STATE(1073)] = 59384, - [SMALL_STATE(1074)] = 59459, - [SMALL_STATE(1075)] = 59508, - [SMALL_STATE(1076)] = 59585, - [SMALL_STATE(1077)] = 59662, - [SMALL_STATE(1078)] = 59739, - [SMALL_STATE(1079)] = 59814, - [SMALL_STATE(1080)] = 59863, - [SMALL_STATE(1081)] = 59908, - [SMALL_STATE(1082)] = 59985, - [SMALL_STATE(1083)] = 60030, - [SMALL_STATE(1084)] = 60107, - [SMALL_STATE(1085)] = 60184, - [SMALL_STATE(1086)] = 60261, - [SMALL_STATE(1087)] = 60338, - [SMALL_STATE(1088)] = 60415, - [SMALL_STATE(1089)] = 60492, - [SMALL_STATE(1090)] = 60569, - [SMALL_STATE(1091)] = 60644, - [SMALL_STATE(1092)] = 60721, - [SMALL_STATE(1093)] = 60796, - [SMALL_STATE(1094)] = 60873, - [SMALL_STATE(1095)] = 60918, - [SMALL_STATE(1096)] = 60993, - [SMALL_STATE(1097)] = 61070, - [SMALL_STATE(1098)] = 61147, - [SMALL_STATE(1099)] = 61222, - [SMALL_STATE(1100)] = 61299, - [SMALL_STATE(1101)] = 61376, - [SMALL_STATE(1102)] = 61453, - [SMALL_STATE(1103)] = 61530, - [SMALL_STATE(1104)] = 61607, - [SMALL_STATE(1105)] = 61684, - [SMALL_STATE(1106)] = 61761, - [SMALL_STATE(1107)] = 61836, - [SMALL_STATE(1108)] = 61913, - [SMALL_STATE(1109)] = 61990, - [SMALL_STATE(1110)] = 62067, - [SMALL_STATE(1111)] = 62142, - [SMALL_STATE(1112)] = 62195, - [SMALL_STATE(1113)] = 62272, - [SMALL_STATE(1114)] = 62349, - [SMALL_STATE(1115)] = 62426, - [SMALL_STATE(1116)] = 62501, - [SMALL_STATE(1117)] = 62576, - [SMALL_STATE(1118)] = 62653, - [SMALL_STATE(1119)] = 62728, - [SMALL_STATE(1120)] = 62803, - [SMALL_STATE(1121)] = 62880, - [SMALL_STATE(1122)] = 62929, - [SMALL_STATE(1123)] = 63004, - [SMALL_STATE(1124)] = 63079, - [SMALL_STATE(1125)] = 63154, - [SMALL_STATE(1126)] = 63229, - [SMALL_STATE(1127)] = 63304, - [SMALL_STATE(1128)] = 63379, - [SMALL_STATE(1129)] = 63454, - [SMALL_STATE(1130)] = 63529, - [SMALL_STATE(1131)] = 63604, - [SMALL_STATE(1132)] = 63653, - [SMALL_STATE(1133)] = 63708, - [SMALL_STATE(1134)] = 63785, - [SMALL_STATE(1135)] = 63862, - [SMALL_STATE(1136)] = 63937, - [SMALL_STATE(1137)] = 64012, - [SMALL_STATE(1138)] = 64087, - [SMALL_STATE(1139)] = 64162, - [SMALL_STATE(1140)] = 64237, - [SMALL_STATE(1141)] = 64312, - [SMALL_STATE(1142)] = 64387, - [SMALL_STATE(1143)] = 64462, - [SMALL_STATE(1144)] = 64537, - [SMALL_STATE(1145)] = 64612, - [SMALL_STATE(1146)] = 64675, - [SMALL_STATE(1147)] = 64752, - [SMALL_STATE(1148)] = 64829, - [SMALL_STATE(1149)] = 64906, - [SMALL_STATE(1150)] = 64983, - [SMALL_STATE(1151)] = 65060, - [SMALL_STATE(1152)] = 65135, - [SMALL_STATE(1153)] = 65210, - [SMALL_STATE(1154)] = 65285, - [SMALL_STATE(1155)] = 65360, - [SMALL_STATE(1156)] = 65435, - [SMALL_STATE(1157)] = 65510, - [SMALL_STATE(1158)] = 65587, - [SMALL_STATE(1159)] = 65664, - [SMALL_STATE(1160)] = 65741, - [SMALL_STATE(1161)] = 65816, - [SMALL_STATE(1162)] = 65891, - [SMALL_STATE(1163)] = 65966, - [SMALL_STATE(1164)] = 66011, - [SMALL_STATE(1165)] = 66086, - [SMALL_STATE(1166)] = 66161, - [SMALL_STATE(1167)] = 66236, - [SMALL_STATE(1168)] = 66311, - [SMALL_STATE(1169)] = 66386, - [SMALL_STATE(1170)] = 66461, - [SMALL_STATE(1171)] = 66536, - [SMALL_STATE(1172)] = 66611, - [SMALL_STATE(1173)] = 66688, - [SMALL_STATE(1174)] = 66765, - [SMALL_STATE(1175)] = 66840, - [SMALL_STATE(1176)] = 66917, - [SMALL_STATE(1177)] = 66992, - [SMALL_STATE(1178)] = 67067, - [SMALL_STATE(1179)] = 67144, - [SMALL_STATE(1180)] = 67221, - [SMALL_STATE(1181)] = 67296, - [SMALL_STATE(1182)] = 67373, - [SMALL_STATE(1183)] = 67448, - [SMALL_STATE(1184)] = 67523, - [SMALL_STATE(1185)] = 67600, - [SMALL_STATE(1186)] = 67675, - [SMALL_STATE(1187)] = 67750, - [SMALL_STATE(1188)] = 67825, - [SMALL_STATE(1189)] = 67902, - [SMALL_STATE(1190)] = 67977, - [SMALL_STATE(1191)] = 68054, - [SMALL_STATE(1192)] = 68131, - [SMALL_STATE(1193)] = 68206, - [SMALL_STATE(1194)] = 68281, - [SMALL_STATE(1195)] = 68356, - [SMALL_STATE(1196)] = 68431, - [SMALL_STATE(1197)] = 68506, - [SMALL_STATE(1198)] = 68581, - [SMALL_STATE(1199)] = 68656, - [SMALL_STATE(1200)] = 68731, - [SMALL_STATE(1201)] = 68806, - [SMALL_STATE(1202)] = 68881, - [SMALL_STATE(1203)] = 68958, - [SMALL_STATE(1204)] = 69035, - [SMALL_STATE(1205)] = 69110, - [SMALL_STATE(1206)] = 69185, - [SMALL_STATE(1207)] = 69260, - [SMALL_STATE(1208)] = 69335, - [SMALL_STATE(1209)] = 69412, - [SMALL_STATE(1210)] = 69487, - [SMALL_STATE(1211)] = 69562, - [SMALL_STATE(1212)] = 69639, - [SMALL_STATE(1213)] = 69714, - [SMALL_STATE(1214)] = 69789, - [SMALL_STATE(1215)] = 69864, - [SMALL_STATE(1216)] = 69939, - [SMALL_STATE(1217)] = 70014, - [SMALL_STATE(1218)] = 70089, - [SMALL_STATE(1219)] = 70136, - [SMALL_STATE(1220)] = 70184, - [SMALL_STATE(1221)] = 70226, - [SMALL_STATE(1222)] = 70268, - [SMALL_STATE(1223)] = 70320, - [SMALL_STATE(1224)] = 70372, - [SMALL_STATE(1225)] = 70414, - [SMALL_STATE(1226)] = 70458, - [SMALL_STATE(1227)] = 70500, - [SMALL_STATE(1228)] = 70562, - [SMALL_STATE(1229)] = 70604, - [SMALL_STATE(1230)] = 70648, - [SMALL_STATE(1231)] = 70690, - [SMALL_STATE(1232)] = 70732, - [SMALL_STATE(1233)] = 70776, - [SMALL_STATE(1234)] = 70818, - [SMALL_STATE(1235)] = 70864, - [SMALL_STATE(1236)] = 70906, - [SMALL_STATE(1237)] = 70948, - [SMALL_STATE(1238)] = 70990, - [SMALL_STATE(1239)] = 71032, - [SMALL_STATE(1240)] = 71076, - [SMALL_STATE(1241)] = 71118, - [SMALL_STATE(1242)] = 71168, - [SMALL_STATE(1243)] = 71212, - [SMALL_STATE(1244)] = 71254, - [SMALL_STATE(1245)] = 71298, - [SMALL_STATE(1246)] = 71340, - [SMALL_STATE(1247)] = 71384, - [SMALL_STATE(1248)] = 71426, - [SMALL_STATE(1249)] = 71470, - [SMALL_STATE(1250)] = 71512, - [SMALL_STATE(1251)] = 71554, - [SMALL_STATE(1252)] = 71596, - [SMALL_STATE(1253)] = 71638, - [SMALL_STATE(1254)] = 71680, - [SMALL_STATE(1255)] = 71724, - [SMALL_STATE(1256)] = 71766, - [SMALL_STATE(1257)] = 71810, - [SMALL_STATE(1258)] = 71852, - [SMALL_STATE(1259)] = 71896, - [SMALL_STATE(1260)] = 71938, - [SMALL_STATE(1261)] = 71982, - [SMALL_STATE(1262)] = 72024, - [SMALL_STATE(1263)] = 72068, - [SMALL_STATE(1264)] = 72110, - [SMALL_STATE(1265)] = 72154, - [SMALL_STATE(1266)] = 72196, - [SMALL_STATE(1267)] = 72238, - [SMALL_STATE(1268)] = 72282, - [SMALL_STATE(1269)] = 72324, - [SMALL_STATE(1270)] = 72370, - [SMALL_STATE(1271)] = 72412, - [SMALL_STATE(1272)] = 72456, - [SMALL_STATE(1273)] = 72498, - [SMALL_STATE(1274)] = 72546, - [SMALL_STATE(1275)] = 72590, - [SMALL_STATE(1276)] = 72632, - [SMALL_STATE(1277)] = 72676, - [SMALL_STATE(1278)] = 72718, - [SMALL_STATE(1279)] = 72762, - [SMALL_STATE(1280)] = 72804, - [SMALL_STATE(1281)] = 72848, - [SMALL_STATE(1282)] = 72890, - [SMALL_STATE(1283)] = 72932, - [SMALL_STATE(1284)] = 72992, - [SMALL_STATE(1285)] = 73052, - [SMALL_STATE(1286)] = 73112, - [SMALL_STATE(1287)] = 73172, - [SMALL_STATE(1288)] = 73224, - [SMALL_STATE(1289)] = 73280, - [SMALL_STATE(1290)] = 73334, - [SMALL_STATE(1291)] = 73384, - [SMALL_STATE(1292)] = 73430, - [SMALL_STATE(1293)] = 73474, - [SMALL_STATE(1294)] = 73520, - [SMALL_STATE(1295)] = 73568, - [SMALL_STATE(1296)] = 73620, - [SMALL_STATE(1297)] = 73664, - [SMALL_STATE(1298)] = 73708, - [SMALL_STATE(1299)] = 73763, - [SMALL_STATE(1300)] = 73802, - [SMALL_STATE(1301)] = 73843, - [SMALL_STATE(1302)] = 73888, - [SMALL_STATE(1303)] = 73935, - [SMALL_STATE(1304)] = 73988, - [SMALL_STATE(1305)] = 74027, - [SMALL_STATE(1306)] = 74066, - [SMALL_STATE(1307)] = 74115, - [SMALL_STATE(1308)] = 74172, - [SMALL_STATE(1309)] = 74231, - [SMALL_STATE(1310)] = 74294, - [SMALL_STATE(1311)] = 74357, - [SMALL_STATE(1312)] = 74420, - [SMALL_STATE(1313)] = 74459, - [SMALL_STATE(1314)] = 74522, - [SMALL_STATE(1315)] = 74571, - [SMALL_STATE(1316)] = 74638, - [SMALL_STATE(1317)] = 74677, - [SMALL_STATE(1318)] = 74718, - [SMALL_STATE(1319)] = 74757, - [SMALL_STATE(1320)] = 74812, - [SMALL_STATE(1321)] = 74851, - [SMALL_STATE(1322)] = 74890, - [SMALL_STATE(1323)] = 74931, - [SMALL_STATE(1324)] = 74970, - [SMALL_STATE(1325)] = 75009, - [SMALL_STATE(1326)] = 75050, - [SMALL_STATE(1327)] = 75089, - [SMALL_STATE(1328)] = 75136, - [SMALL_STATE(1329)] = 75177, - [SMALL_STATE(1330)] = 75216, - [SMALL_STATE(1331)] = 75257, - [SMALL_STATE(1332)] = 75296, - [SMALL_STATE(1333)] = 75335, - [SMALL_STATE(1334)] = 75374, - [SMALL_STATE(1335)] = 75413, - [SMALL_STATE(1336)] = 75460, - [SMALL_STATE(1337)] = 75501, - [SMALL_STATE(1338)] = 75540, - [SMALL_STATE(1339)] = 75589, - [SMALL_STATE(1340)] = 75628, - [SMALL_STATE(1341)] = 75669, - [SMALL_STATE(1342)] = 75710, - [SMALL_STATE(1343)] = 75757, - [SMALL_STATE(1344)] = 75796, - [SMALL_STATE(1345)] = 75835, - [SMALL_STATE(1346)] = 75874, - [SMALL_STATE(1347)] = 75915, - [SMALL_STATE(1348)] = 75954, - [SMALL_STATE(1349)] = 76005, - [SMALL_STATE(1350)] = 76050, - [SMALL_STATE(1351)] = 76089, - [SMALL_STATE(1352)] = 76128, - [SMALL_STATE(1353)] = 76167, - [SMALL_STATE(1354)] = 76208, - [SMALL_STATE(1355)] = 76249, - [SMALL_STATE(1356)] = 76288, - [SMALL_STATE(1357)] = 76327, - [SMALL_STATE(1358)] = 76368, - [SMALL_STATE(1359)] = 76407, - [SMALL_STATE(1360)] = 76448, - [SMALL_STATE(1361)] = 76487, - [SMALL_STATE(1362)] = 76528, - [SMALL_STATE(1363)] = 76567, - [SMALL_STATE(1364)] = 76608, - [SMALL_STATE(1365)] = 76647, - [SMALL_STATE(1366)] = 76686, - [SMALL_STATE(1367)] = 76727, - [SMALL_STATE(1368)] = 76766, - [SMALL_STATE(1369)] = 76805, - [SMALL_STATE(1370)] = 76846, - [SMALL_STATE(1371)] = 76887, - [SMALL_STATE(1372)] = 76926, - [SMALL_STATE(1373)] = 76975, - [SMALL_STATE(1374)] = 77016, - [SMALL_STATE(1375)] = 77072, - [SMALL_STATE(1376)] = 77128, - [SMALL_STATE(1377)] = 77168, - [SMALL_STATE(1378)] = 77218, - [SMALL_STATE(1379)] = 77262, - [SMALL_STATE(1380)] = 77302, - [SMALL_STATE(1381)] = 77358, - [SMALL_STATE(1382)] = 77398, - [SMALL_STATE(1383)] = 77454, - [SMALL_STATE(1384)] = 77498, - [SMALL_STATE(1385)] = 77548, - [SMALL_STATE(1386)] = 77588, - [SMALL_STATE(1387)] = 77628, - [SMALL_STATE(1388)] = 77684, - [SMALL_STATE(1389)] = 77740, - [SMALL_STATE(1390)] = 77780, - [SMALL_STATE(1391)] = 77824, - [SMALL_STATE(1392)] = 77864, - [SMALL_STATE(1393)] = 77904, - [SMALL_STATE(1394)] = 77949, - [SMALL_STATE(1395)] = 78002, - [SMALL_STATE(1396)] = 78055, - [SMALL_STATE(1397)] = 78098, - [SMALL_STATE(1398)] = 78141, - [SMALL_STATE(1399)] = 78184, - [SMALL_STATE(1400)] = 78237, - [SMALL_STATE(1401)] = 78276, - [SMALL_STATE(1402)] = 78329, - [SMALL_STATE(1403)] = 78370, - [SMALL_STATE(1404)] = 78423, - [SMALL_STATE(1405)] = 78470, - [SMALL_STATE(1406)] = 78523, - [SMALL_STATE(1407)] = 78564, - [SMALL_STATE(1408)] = 78603, - [SMALL_STATE(1409)] = 78642, - [SMALL_STATE(1410)] = 78685, - [SMALL_STATE(1411)] = 78724, - [SMALL_STATE(1412)] = 78764, - [SMALL_STATE(1413)] = 78802, - [SMALL_STATE(1414)] = 78840, - [SMALL_STATE(1415)] = 78878, - [SMALL_STATE(1416)] = 78916, - [SMALL_STATE(1417)] = 78954, - [SMALL_STATE(1418)] = 79002, - [SMALL_STATE(1419)] = 79042, - [SMALL_STATE(1420)] = 79080, - [SMALL_STATE(1421)] = 79118, - [SMALL_STATE(1422)] = 79156, - [SMALL_STATE(1423)] = 79194, - [SMALL_STATE(1424)] = 79234, - [SMALL_STATE(1425)] = 79272, - [SMALL_STATE(1426)] = 79312, - [SMALL_STATE(1427)] = 79354, - [SMALL_STATE(1428)] = 79394, - [SMALL_STATE(1429)] = 79434, - [SMALL_STATE(1430)] = 79472, - [SMALL_STATE(1431)] = 79512, - [SMALL_STATE(1432)] = 79552, - [SMALL_STATE(1433)] = 79590, - [SMALL_STATE(1434)] = 79628, - [SMALL_STATE(1435)] = 79666, - [SMALL_STATE(1436)] = 79704, - [SMALL_STATE(1437)] = 79742, - [SMALL_STATE(1438)] = 79780, - [SMALL_STATE(1439)] = 79818, - [SMALL_STATE(1440)] = 79858, - [SMALL_STATE(1441)] = 79896, - [SMALL_STATE(1442)] = 79934, - [SMALL_STATE(1443)] = 79978, - [SMALL_STATE(1444)] = 80022, - [SMALL_STATE(1445)] = 80060, - [SMALL_STATE(1446)] = 80098, - [SMALL_STATE(1447)] = 80135, - [SMALL_STATE(1448)] = 80172, - [SMALL_STATE(1449)] = 80229, - [SMALL_STATE(1450)] = 80284, - [SMALL_STATE(1451)] = 80339, - [SMALL_STATE(1452)] = 80394, - [SMALL_STATE(1453)] = 80449, - [SMALL_STATE(1454)] = 80496, - [SMALL_STATE(1455)] = 80543, - [SMALL_STATE(1456)] = 80578, - [SMALL_STATE(1457)] = 80615, - [SMALL_STATE(1458)] = 80652, - [SMALL_STATE(1459)] = 80689, - [SMALL_STATE(1460)] = 80740, - [SMALL_STATE(1461)] = 80789, - [SMALL_STATE(1462)] = 80834, - [SMALL_STATE(1463)] = 80875, - [SMALL_STATE(1464)] = 80914, - [SMALL_STATE(1465)] = 80957, - [SMALL_STATE(1466)] = 81004, - [SMALL_STATE(1467)] = 81041, - [SMALL_STATE(1468)] = 81078, - [SMALL_STATE(1469)] = 81115, - [SMALL_STATE(1470)] = 81152, - [SMALL_STATE(1471)] = 81189, - [SMALL_STATE(1472)] = 81226, - [SMALL_STATE(1473)] = 81263, - [SMALL_STATE(1474)] = 81300, - [SMALL_STATE(1475)] = 81335, - [SMALL_STATE(1476)] = 81372, - [SMALL_STATE(1477)] = 81409, - [SMALL_STATE(1478)] = 81446, - [SMALL_STATE(1479)] = 81483, - [SMALL_STATE(1480)] = 81520, - [SMALL_STATE(1481)] = 81557, - [SMALL_STATE(1482)] = 81594, - [SMALL_STATE(1483)] = 81641, - [SMALL_STATE(1484)] = 81678, - [SMALL_STATE(1485)] = 81715, - [SMALL_STATE(1486)] = 81754, - [SMALL_STATE(1487)] = 81791, - [SMALL_STATE(1488)] = 81828, - [SMALL_STATE(1489)] = 81869, - [SMALL_STATE(1490)] = 81906, - [SMALL_STATE(1491)] = 81943, - [SMALL_STATE(1492)] = 81982, - [SMALL_STATE(1493)] = 82021, - [SMALL_STATE(1494)] = 82060, - [SMALL_STATE(1495)] = 82097, - [SMALL_STATE(1496)] = 82136, - [SMALL_STATE(1497)] = 82173, - [SMALL_STATE(1498)] = 82212, - [SMALL_STATE(1499)] = 82249, - [SMALL_STATE(1500)] = 82286, - [SMALL_STATE(1501)] = 82327, - [SMALL_STATE(1502)] = 82364, - [SMALL_STATE(1503)] = 82401, - [SMALL_STATE(1504)] = 82444, - [SMALL_STATE(1505)] = 82485, - [SMALL_STATE(1506)] = 82529, - [SMALL_STATE(1507)] = 82585, - [SMALL_STATE(1508)] = 82621, - [SMALL_STATE(1509)] = 82667, - [SMALL_STATE(1510)] = 82721, - [SMALL_STATE(1511)] = 82757, - [SMALL_STATE(1512)] = 82811, - [SMALL_STATE(1513)] = 82865, - [SMALL_STATE(1514)] = 82907, - [SMALL_STATE(1515)] = 82941, - [SMALL_STATE(1516)] = 82995, - [SMALL_STATE(1517)] = 83029, - [SMALL_STATE(1518)] = 83065, - [SMALL_STATE(1519)] = 83101, - [SMALL_STATE(1520)] = 83151, - [SMALL_STATE(1521)] = 83207, - [SMALL_STATE(1522)] = 83255, - [SMALL_STATE(1523)] = 83299, - [SMALL_STATE(1524)] = 83339, - [SMALL_STATE(1525)] = 83373, - [SMALL_STATE(1526)] = 83411, - [SMALL_STATE(1527)] = 83453, - [SMALL_STATE(1528)] = 83499, - [SMALL_STATE(1529)] = 83555, - [SMALL_STATE(1530)] = 83611, - [SMALL_STATE(1531)] = 83649, - [SMALL_STATE(1532)] = 83691, - [SMALL_STATE(1533)] = 83733, - [SMALL_STATE(1534)] = 83779, - [SMALL_STATE(1535)] = 83813, - [SMALL_STATE(1536)] = 83847, - [SMALL_STATE(1537)] = 83881, - [SMALL_STATE(1538)] = 83915, - [SMALL_STATE(1539)] = 83951, - [SMALL_STATE(1540)] = 83985, - [SMALL_STATE(1541)] = 84019, - [SMALL_STATE(1542)] = 84053, - [SMALL_STATE(1543)] = 84087, - [SMALL_STATE(1544)] = 84121, - [SMALL_STATE(1545)] = 84160, - [SMALL_STATE(1546)] = 84205, - [SMALL_STATE(1547)] = 84246, - [SMALL_STATE(1548)] = 84299, - [SMALL_STATE(1549)] = 84340, - [SMALL_STATE(1550)] = 84393, - [SMALL_STATE(1551)] = 84430, - [SMALL_STATE(1552)] = 84483, - [SMALL_STATE(1553)] = 84518, - [SMALL_STATE(1554)] = 84559, - [SMALL_STATE(1555)] = 84596, - [SMALL_STATE(1556)] = 84632, - [SMALL_STATE(1557)] = 84684, - [SMALL_STATE(1558)] = 84738, - [SMALL_STATE(1559)] = 84792, - [SMALL_STATE(1560)] = 84828, - [SMALL_STATE(1561)] = 84882, - [SMALL_STATE(1562)] = 84920, - [SMALL_STATE(1563)] = 84974, - [SMALL_STATE(1564)] = 85010, - [SMALL_STATE(1565)] = 85064, - [SMALL_STATE(1566)] = 85102, - [SMALL_STATE(1567)] = 85156, - [SMALL_STATE(1568)] = 85196, - [SMALL_STATE(1569)] = 85232, - [SMALL_STATE(1570)] = 85268, - [SMALL_STATE(1571)] = 85306, - [SMALL_STATE(1572)] = 85350, - [SMALL_STATE(1573)] = 85390, - [SMALL_STATE(1574)] = 85426, - [SMALL_STATE(1575)] = 85464, - [SMALL_STATE(1576)] = 85512, - [SMALL_STATE(1577)] = 85554, - [SMALL_STATE(1578)] = 85594, - [SMALL_STATE(1579)] = 85640, - [SMALL_STATE(1580)] = 85678, - [SMALL_STATE(1581)] = 85716, - [SMALL_STATE(1582)] = 85760, - [SMALL_STATE(1583)] = 85812, - [SMALL_STATE(1584)] = 85864, - [SMALL_STATE(1585)] = 85916, - [SMALL_STATE(1586)] = 85955, - [SMALL_STATE(1587)] = 86008, - [SMALL_STATE(1588)] = 86045, - [SMALL_STATE(1589)] = 86078, - [SMALL_STATE(1590)] = 86113, - [SMALL_STATE(1591)] = 86146, - [SMALL_STATE(1592)] = 86181, - [SMALL_STATE(1593)] = 86234, - [SMALL_STATE(1594)] = 86269, - [SMALL_STATE(1595)] = 86306, - [SMALL_STATE(1596)] = 86341, - [SMALL_STATE(1597)] = 86392, - [SMALL_STATE(1598)] = 86443, - [SMALL_STATE(1599)] = 86494, - [SMALL_STATE(1600)] = 86545, - [SMALL_STATE(1601)] = 86588, - [SMALL_STATE(1602)] = 86627, - [SMALL_STATE(1603)] = 86674, - [SMALL_STATE(1604)] = 86719, - [SMALL_STATE(1605)] = 86760, - [SMALL_STATE(1606)] = 86797, - [SMALL_STATE(1607)] = 86834, - [SMALL_STATE(1608)] = 86869, - [SMALL_STATE(1609)] = 86908, - [SMALL_STATE(1610)] = 86951, - [SMALL_STATE(1611)] = 87002, - [SMALL_STATE(1612)] = 87055, - [SMALL_STATE(1613)] = 87108, - [SMALL_STATE(1614)] = 87159, - [SMALL_STATE(1615)] = 87194, - [SMALL_STATE(1616)] = 87245, - [SMALL_STATE(1617)] = 87278, - [SMALL_STATE(1618)] = 87311, - [SMALL_STATE(1619)] = 87344, - [SMALL_STATE(1620)] = 87395, - [SMALL_STATE(1621)] = 87446, - [SMALL_STATE(1622)] = 87484, - [SMALL_STATE(1623)] = 87516, - [SMALL_STATE(1624)] = 87548, - [SMALL_STATE(1625)] = 87580, - [SMALL_STATE(1626)] = 87634, - [SMALL_STATE(1627)] = 87666, - [SMALL_STATE(1628)] = 87716, - [SMALL_STATE(1629)] = 87770, - [SMALL_STATE(1630)] = 87802, - [SMALL_STATE(1631)] = 87856, - [SMALL_STATE(1632)] = 87888, - [SMALL_STATE(1633)] = 87924, - [SMALL_STATE(1634)] = 87978, - [SMALL_STATE(1635)] = 88010, - [SMALL_STATE(1636)] = 88056, - [SMALL_STATE(1637)] = 88090, - [SMALL_STATE(1638)] = 88122, - [SMALL_STATE(1639)] = 88158, - [SMALL_STATE(1640)] = 88192, - [SMALL_STATE(1641)] = 88224, - [SMALL_STATE(1642)] = 88256, - [SMALL_STATE(1643)] = 88306, - [SMALL_STATE(1644)] = 88354, - [SMALL_STATE(1645)] = 88398, - [SMALL_STATE(1646)] = 88448, - [SMALL_STATE(1647)] = 88480, - [SMALL_STATE(1648)] = 88512, - [SMALL_STATE(1649)] = 88544, - [SMALL_STATE(1650)] = 88576, - [SMALL_STATE(1651)] = 88616, - [SMALL_STATE(1652)] = 88662, - [SMALL_STATE(1653)] = 88694, - [SMALL_STATE(1654)] = 88726, - [SMALL_STATE(1655)] = 88758, - [SMALL_STATE(1656)] = 88790, - [SMALL_STATE(1657)] = 88822, - [SMALL_STATE(1658)] = 88854, - [SMALL_STATE(1659)] = 88904, - [SMALL_STATE(1660)] = 88938, - [SMALL_STATE(1661)] = 88994, - [SMALL_STATE(1662)] = 89026, - [SMALL_STATE(1663)] = 89060, - [SMALL_STATE(1664)] = 89092, - [SMALL_STATE(1665)] = 89124, - [SMALL_STATE(1666)] = 89156, - [SMALL_STATE(1667)] = 89190, - [SMALL_STATE(1668)] = 89224, - [SMALL_STATE(1669)] = 89258, - [SMALL_STATE(1670)] = 89298, - [SMALL_STATE(1671)] = 89329, - [SMALL_STATE(1672)] = 89360, - [SMALL_STATE(1673)] = 89391, - [SMALL_STATE(1674)] = 89422, - [SMALL_STATE(1675)] = 89453, - [SMALL_STATE(1676)] = 89484, - [SMALL_STATE(1677)] = 89515, - [SMALL_STATE(1678)] = 89546, - [SMALL_STATE(1679)] = 89577, - [SMALL_STATE(1680)] = 89608, - [SMALL_STATE(1681)] = 89639, - [SMALL_STATE(1682)] = 89670, - [SMALL_STATE(1683)] = 89701, - [SMALL_STATE(1684)] = 89756, - [SMALL_STATE(1685)] = 89787, - [SMALL_STATE(1686)] = 89818, - [SMALL_STATE(1687)] = 89869, - [SMALL_STATE(1688)] = 89920, - [SMALL_STATE(1689)] = 89971, - [SMALL_STATE(1690)] = 90002, - [SMALL_STATE(1691)] = 90053, - [SMALL_STATE(1692)] = 90084, - [SMALL_STATE(1693)] = 90135, - [SMALL_STATE(1694)] = 90166, - [SMALL_STATE(1695)] = 90214, - [SMALL_STATE(1696)] = 90262, - [SMALL_STATE(1697)] = 90310, - [SMALL_STATE(1698)] = 90358, - [SMALL_STATE(1699)] = 90406, - [SMALL_STATE(1700)] = 90463, - [SMALL_STATE(1701)] = 90518, - [SMALL_STATE(1702)] = 90572, - [SMALL_STATE(1703)] = 90626, - [SMALL_STATE(1704)] = 90680, - [SMALL_STATE(1705)] = 90734, - [SMALL_STATE(1706)] = 90788, - [SMALL_STATE(1707)] = 90840, - [SMALL_STATE(1708)] = 90894, - [SMALL_STATE(1709)] = 90948, - [SMALL_STATE(1710)] = 91002, - [SMALL_STATE(1711)] = 91056, - [SMALL_STATE(1712)] = 91110, - [SMALL_STATE(1713)] = 91164, - [SMALL_STATE(1714)] = 91218, - [SMALL_STATE(1715)] = 91272, - [SMALL_STATE(1716)] = 91326, - [SMALL_STATE(1717)] = 91380, - [SMALL_STATE(1718)] = 91434, - [SMALL_STATE(1719)] = 91488, - [SMALL_STATE(1720)] = 91542, - [SMALL_STATE(1721)] = 91596, - [SMALL_STATE(1722)] = 91650, - [SMALL_STATE(1723)] = 91704, - [SMALL_STATE(1724)] = 91758, - [SMALL_STATE(1725)] = 91812, - [SMALL_STATE(1726)] = 91866, - [SMALL_STATE(1727)] = 91920, - [SMALL_STATE(1728)] = 91974, - [SMALL_STATE(1729)] = 92025, - [SMALL_STATE(1730)] = 92076, - [SMALL_STATE(1731)] = 92127, - [SMALL_STATE(1732)] = 92178, - [SMALL_STATE(1733)] = 92229, - [SMALL_STATE(1734)] = 92280, - [SMALL_STATE(1735)] = 92331, - [SMALL_STATE(1736)] = 92382, - [SMALL_STATE(1737)] = 92433, - [SMALL_STATE(1738)] = 92484, - [SMALL_STATE(1739)] = 92535, - [SMALL_STATE(1740)] = 92586, - [SMALL_STATE(1741)] = 92637, - [SMALL_STATE(1742)] = 92688, - [SMALL_STATE(1743)] = 92739, - [SMALL_STATE(1744)] = 92790, - [SMALL_STATE(1745)] = 92841, - [SMALL_STATE(1746)] = 92892, - [SMALL_STATE(1747)] = 92943, - [SMALL_STATE(1748)] = 92994, - [SMALL_STATE(1749)] = 93045, - [SMALL_STATE(1750)] = 93096, - [SMALL_STATE(1751)] = 93147, - [SMALL_STATE(1752)] = 93198, - [SMALL_STATE(1753)] = 93249, - [SMALL_STATE(1754)] = 93300, - [SMALL_STATE(1755)] = 93351, - [SMALL_STATE(1756)] = 93402, - [SMALL_STATE(1757)] = 93453, - [SMALL_STATE(1758)] = 93504, - [SMALL_STATE(1759)] = 93555, - [SMALL_STATE(1760)] = 93606, - [SMALL_STATE(1761)] = 93657, - [SMALL_STATE(1762)] = 93708, - [SMALL_STATE(1763)] = 93759, - [SMALL_STATE(1764)] = 93810, - [SMALL_STATE(1765)] = 93861, - [SMALL_STATE(1766)] = 93912, - [SMALL_STATE(1767)] = 93963, - [SMALL_STATE(1768)] = 94014, - [SMALL_STATE(1769)] = 94065, - [SMALL_STATE(1770)] = 94116, - [SMALL_STATE(1771)] = 94167, - [SMALL_STATE(1772)] = 94218, - [SMALL_STATE(1773)] = 94269, - [SMALL_STATE(1774)] = 94320, - [SMALL_STATE(1775)] = 94371, - [SMALL_STATE(1776)] = 94422, - [SMALL_STATE(1777)] = 94473, - [SMALL_STATE(1778)] = 94524, - [SMALL_STATE(1779)] = 94575, - [SMALL_STATE(1780)] = 94626, - [SMALL_STATE(1781)] = 94677, - [SMALL_STATE(1782)] = 94728, - [SMALL_STATE(1783)] = 94779, - [SMALL_STATE(1784)] = 94830, - [SMALL_STATE(1785)] = 94881, - [SMALL_STATE(1786)] = 94932, - [SMALL_STATE(1787)] = 94983, - [SMALL_STATE(1788)] = 95034, - [SMALL_STATE(1789)] = 95085, - [SMALL_STATE(1790)] = 95136, - [SMALL_STATE(1791)] = 95187, - [SMALL_STATE(1792)] = 95238, - [SMALL_STATE(1793)] = 95289, - [SMALL_STATE(1794)] = 95340, - [SMALL_STATE(1795)] = 95391, - [SMALL_STATE(1796)] = 95442, - [SMALL_STATE(1797)] = 95493, - [SMALL_STATE(1798)] = 95544, - [SMALL_STATE(1799)] = 95595, - [SMALL_STATE(1800)] = 95646, - [SMALL_STATE(1801)] = 95697, - [SMALL_STATE(1802)] = 95748, - [SMALL_STATE(1803)] = 95799, - [SMALL_STATE(1804)] = 95850, - [SMALL_STATE(1805)] = 95901, - [SMALL_STATE(1806)] = 95952, - [SMALL_STATE(1807)] = 96003, - [SMALL_STATE(1808)] = 96054, - [SMALL_STATE(1809)] = 96105, - [SMALL_STATE(1810)] = 96156, - [SMALL_STATE(1811)] = 96207, - [SMALL_STATE(1812)] = 96258, - [SMALL_STATE(1813)] = 96309, - [SMALL_STATE(1814)] = 96360, - [SMALL_STATE(1815)] = 96411, - [SMALL_STATE(1816)] = 96462, - [SMALL_STATE(1817)] = 96513, - [SMALL_STATE(1818)] = 96564, - [SMALL_STATE(1819)] = 96615, - [SMALL_STATE(1820)] = 96666, - [SMALL_STATE(1821)] = 96717, - [SMALL_STATE(1822)] = 96765, - [SMALL_STATE(1823)] = 96813, - [SMALL_STATE(1824)] = 96861, - [SMALL_STATE(1825)] = 96909, - [SMALL_STATE(1826)] = 96957, - [SMALL_STATE(1827)] = 97005, - [SMALL_STATE(1828)] = 97053, - [SMALL_STATE(1829)] = 97101, - [SMALL_STATE(1830)] = 97149, - [SMALL_STATE(1831)] = 97197, - [SMALL_STATE(1832)] = 97245, - [SMALL_STATE(1833)] = 97293, - [SMALL_STATE(1834)] = 97341, - [SMALL_STATE(1835)] = 97389, - [SMALL_STATE(1836)] = 97437, - [SMALL_STATE(1837)] = 97485, - [SMALL_STATE(1838)] = 97504, - [SMALL_STATE(1839)] = 97525, - [SMALL_STATE(1840)] = 97540, - [SMALL_STATE(1841)] = 97558, - [SMALL_STATE(1842)] = 97576, - [SMALL_STATE(1843)] = 97591, - [SMALL_STATE(1844)] = 97610, - [SMALL_STATE(1845)] = 97623, - [SMALL_STATE(1846)] = 97636, - [SMALL_STATE(1847)] = 97649, - [SMALL_STATE(1848)] = 97668, - [SMALL_STATE(1849)] = 97681, - [SMALL_STATE(1850)] = 97700, - [SMALL_STATE(1851)] = 97719, - [SMALL_STATE(1852)] = 97732, - [SMALL_STATE(1853)] = 97745, - [SMALL_STATE(1854)] = 97764, - [SMALL_STATE(1855)] = 97783, - [SMALL_STATE(1856)] = 97796, - [SMALL_STATE(1857)] = 97809, - [SMALL_STATE(1858)] = 97827, - [SMALL_STATE(1859)] = 97845, - [SMALL_STATE(1860)] = 97863, - [SMALL_STATE(1861)] = 97881, - [SMALL_STATE(1862)] = 97893, - [SMALL_STATE(1863)] = 97911, - [SMALL_STATE(1864)] = 97929, - [SMALL_STATE(1865)] = 97947, - [SMALL_STATE(1866)] = 97959, - [SMALL_STATE(1867)] = 97977, - [SMALL_STATE(1868)] = 97995, - [SMALL_STATE(1869)] = 98013, - [SMALL_STATE(1870)] = 98031, - [SMALL_STATE(1871)] = 98049, - [SMALL_STATE(1872)] = 98067, - [SMALL_STATE(1873)] = 98085, - [SMALL_STATE(1874)] = 98103, - [SMALL_STATE(1875)] = 98121, - [SMALL_STATE(1876)] = 98139, - [SMALL_STATE(1877)] = 98157, - [SMALL_STATE(1878)] = 98175, - [SMALL_STATE(1879)] = 98193, - [SMALL_STATE(1880)] = 98205, - [SMALL_STATE(1881)] = 98223, - [SMALL_STATE(1882)] = 98241, - [SMALL_STATE(1883)] = 98259, - [SMALL_STATE(1884)] = 98271, - [SMALL_STATE(1885)] = 98289, - [SMALL_STATE(1886)] = 98307, - [SMALL_STATE(1887)] = 98326, - [SMALL_STATE(1888)] = 98345, - [SMALL_STATE(1889)] = 98362, - [SMALL_STATE(1890)] = 98381, - [SMALL_STATE(1891)] = 98398, - [SMALL_STATE(1892)] = 98415, - [SMALL_STATE(1893)] = 98434, - [SMALL_STATE(1894)] = 98453, - [SMALL_STATE(1895)] = 98470, - [SMALL_STATE(1896)] = 98487, - [SMALL_STATE(1897)] = 98504, - [SMALL_STATE(1898)] = 98521, - [SMALL_STATE(1899)] = 98538, - [SMALL_STATE(1900)] = 98557, - [SMALL_STATE(1901)] = 98574, - [SMALL_STATE(1902)] = 98593, - [SMALL_STATE(1903)] = 98612, - [SMALL_STATE(1904)] = 98631, - [SMALL_STATE(1905)] = 98648, - [SMALL_STATE(1906)] = 98665, - [SMALL_STATE(1907)] = 98684, - [SMALL_STATE(1908)] = 98701, - [SMALL_STATE(1909)] = 98718, - [SMALL_STATE(1910)] = 98735, - [SMALL_STATE(1911)] = 98752, - [SMALL_STATE(1912)] = 98771, - [SMALL_STATE(1913)] = 98788, - [SMALL_STATE(1914)] = 98805, - [SMALL_STATE(1915)] = 98822, - [SMALL_STATE(1916)] = 98841, - [SMALL_STATE(1917)] = 98858, - [SMALL_STATE(1918)] = 98873, - [SMALL_STATE(1919)] = 98892, - [SMALL_STATE(1920)] = 98911, - [SMALL_STATE(1921)] = 98928, - [SMALL_STATE(1922)] = 98947, - [SMALL_STATE(1923)] = 98966, - [SMALL_STATE(1924)] = 98983, - [SMALL_STATE(1925)] = 99000, - [SMALL_STATE(1926)] = 99019, - [SMALL_STATE(1927)] = 99038, - [SMALL_STATE(1928)] = 99055, - [SMALL_STATE(1929)] = 99074, - [SMALL_STATE(1930)] = 99089, - [SMALL_STATE(1931)] = 99106, - [SMALL_STATE(1932)] = 99125, - [SMALL_STATE(1933)] = 99144, - [SMALL_STATE(1934)] = 99163, - [SMALL_STATE(1935)] = 99182, - [SMALL_STATE(1936)] = 99199, - [SMALL_STATE(1937)] = 99216, - [SMALL_STATE(1938)] = 99235, - [SMALL_STATE(1939)] = 99245, - [SMALL_STATE(1940)] = 99259, - [SMALL_STATE(1941)] = 99269, - [SMALL_STATE(1942)] = 99283, - [SMALL_STATE(1943)] = 99297, - [SMALL_STATE(1944)] = 99311, - [SMALL_STATE(1945)] = 99325, - [SMALL_STATE(1946)] = 99339, - [SMALL_STATE(1947)] = 99349, - [SMALL_STATE(1948)] = 99361, - [SMALL_STATE(1949)] = 99371, - [SMALL_STATE(1950)] = 99385, - [SMALL_STATE(1951)] = 99399, - [SMALL_STATE(1952)] = 99413, - [SMALL_STATE(1953)] = 99427, - [SMALL_STATE(1954)] = 99441, - [SMALL_STATE(1955)] = 99455, - [SMALL_STATE(1956)] = 99465, - [SMALL_STATE(1957)] = 99479, - [SMALL_STATE(1958)] = 99493, - [SMALL_STATE(1959)] = 99507, - [SMALL_STATE(1960)] = 99521, - [SMALL_STATE(1961)] = 99533, - [SMALL_STATE(1962)] = 99547, - [SMALL_STATE(1963)] = 99557, - [SMALL_STATE(1964)] = 99571, - [SMALL_STATE(1965)] = 99585, - [SMALL_STATE(1966)] = 99595, - [SMALL_STATE(1967)] = 99609, - [SMALL_STATE(1968)] = 99623, - [SMALL_STATE(1969)] = 99637, - [SMALL_STATE(1970)] = 99651, - [SMALL_STATE(1971)] = 99665, - [SMALL_STATE(1972)] = 99679, - [SMALL_STATE(1973)] = 99689, - [SMALL_STATE(1974)] = 99703, - [SMALL_STATE(1975)] = 99717, - [SMALL_STATE(1976)] = 99731, - [SMALL_STATE(1977)] = 99742, - [SMALL_STATE(1978)] = 99753, - [SMALL_STATE(1979)] = 99764, - [SMALL_STATE(1980)] = 99775, - [SMALL_STATE(1981)] = 99786, - [SMALL_STATE(1982)] = 99795, - [SMALL_STATE(1983)] = 99806, - [SMALL_STATE(1984)] = 99817, - [SMALL_STATE(1985)] = 99826, - [SMALL_STATE(1986)] = 99837, - [SMALL_STATE(1987)] = 99848, - [SMALL_STATE(1988)] = 99859, - [SMALL_STATE(1989)] = 99870, - [SMALL_STATE(1990)] = 99879, - [SMALL_STATE(1991)] = 99890, - [SMALL_STATE(1992)] = 99901, - [SMALL_STATE(1993)] = 99912, - [SMALL_STATE(1994)] = 99923, - [SMALL_STATE(1995)] = 99934, - [SMALL_STATE(1996)] = 99945, - [SMALL_STATE(1997)] = 99952, - [SMALL_STATE(1998)] = 99963, - [SMALL_STATE(1999)] = 99974, - [SMALL_STATE(2000)] = 99985, - [SMALL_STATE(2001)] = 99996, - [SMALL_STATE(2002)] = 100007, - [SMALL_STATE(2003)] = 100018, - [SMALL_STATE(2004)] = 100029, - [SMALL_STATE(2005)] = 100040, - [SMALL_STATE(2006)] = 100049, - [SMALL_STATE(2007)] = 100060, - [SMALL_STATE(2008)] = 100071, - [SMALL_STATE(2009)] = 100082, - [SMALL_STATE(2010)] = 100093, - [SMALL_STATE(2011)] = 100102, - [SMALL_STATE(2012)] = 100112, - [SMALL_STATE(2013)] = 100122, - [SMALL_STATE(2014)] = 100132, - [SMALL_STATE(2015)] = 100142, - [SMALL_STATE(2016)] = 100152, - [SMALL_STATE(2017)] = 100162, - [SMALL_STATE(2018)] = 100172, - [SMALL_STATE(2019)] = 100182, - [SMALL_STATE(2020)] = 100192, - [SMALL_STATE(2021)] = 100202, - [SMALL_STATE(2022)] = 100212, - [SMALL_STATE(2023)] = 100222, - [SMALL_STATE(2024)] = 100232, - [SMALL_STATE(2025)] = 100242, - [SMALL_STATE(2026)] = 100249, - [SMALL_STATE(2027)] = 100256, - [SMALL_STATE(2028)] = 100263, - [SMALL_STATE(2029)] = 100270, - [SMALL_STATE(2030)] = 100277, - [SMALL_STATE(2031)] = 100284, - [SMALL_STATE(2032)] = 100291, - [SMALL_STATE(2033)] = 100298, - [SMALL_STATE(2034)] = 100303, - [SMALL_STATE(2035)] = 100310, - [SMALL_STATE(2036)] = 100317, - [SMALL_STATE(2037)] = 100324, - [SMALL_STATE(2038)] = 100331, - [SMALL_STATE(2039)] = 100338, - [SMALL_STATE(2040)] = 100343, - [SMALL_STATE(2041)] = 100350, - [SMALL_STATE(2042)] = 100357, - [SMALL_STATE(2043)] = 100364, - [SMALL_STATE(2044)] = 100371, - [SMALL_STATE(2045)] = 100378, - [SMALL_STATE(2046)] = 100385, - [SMALL_STATE(2047)] = 100392, - [SMALL_STATE(2048)] = 100399, - [SMALL_STATE(2049)] = 100406, - [SMALL_STATE(2050)] = 100413, - [SMALL_STATE(2051)] = 100420, - [SMALL_STATE(2052)] = 100427, - [SMALL_STATE(2053)] = 100434, - [SMALL_STATE(2054)] = 100441, - [SMALL_STATE(2055)] = 100448, - [SMALL_STATE(2056)] = 100455, - [SMALL_STATE(2057)] = 100462, - [SMALL_STATE(2058)] = 100469, - [SMALL_STATE(2059)] = 100476, - [SMALL_STATE(2060)] = 100483, - [SMALL_STATE(2061)] = 100490, - [SMALL_STATE(2062)] = 100497, - [SMALL_STATE(2063)] = 100504, - [SMALL_STATE(2064)] = 100511, - [SMALL_STATE(2065)] = 100518, - [SMALL_STATE(2066)] = 100525, - [SMALL_STATE(2067)] = 100532, - [SMALL_STATE(2068)] = 100539, - [SMALL_STATE(2069)] = 100546, - [SMALL_STATE(2070)] = 100550, - [SMALL_STATE(2071)] = 100554, - [SMALL_STATE(2072)] = 100558, - [SMALL_STATE(2073)] = 100562, - [SMALL_STATE(2074)] = 100566, - [SMALL_STATE(2075)] = 100570, - [SMALL_STATE(2076)] = 100574, - [SMALL_STATE(2077)] = 100578, - [SMALL_STATE(2078)] = 100582, - [SMALL_STATE(2079)] = 100586, - [SMALL_STATE(2080)] = 100590, - [SMALL_STATE(2081)] = 100594, - [SMALL_STATE(2082)] = 100598, - [SMALL_STATE(2083)] = 100602, - [SMALL_STATE(2084)] = 100606, - [SMALL_STATE(2085)] = 100610, - [SMALL_STATE(2086)] = 100614, - [SMALL_STATE(2087)] = 100618, - [SMALL_STATE(2088)] = 100622, - [SMALL_STATE(2089)] = 100626, - [SMALL_STATE(2090)] = 100630, - [SMALL_STATE(2091)] = 100634, - [SMALL_STATE(2092)] = 100638, - [SMALL_STATE(2093)] = 100642, - [SMALL_STATE(2094)] = 100646, - [SMALL_STATE(2095)] = 100650, - [SMALL_STATE(2096)] = 100654, - [SMALL_STATE(2097)] = 100658, - [SMALL_STATE(2098)] = 100662, - [SMALL_STATE(2099)] = 100666, - [SMALL_STATE(2100)] = 100670, - [SMALL_STATE(2101)] = 100674, - [SMALL_STATE(2102)] = 100678, - [SMALL_STATE(2103)] = 100682, - [SMALL_STATE(2104)] = 100686, - [SMALL_STATE(2105)] = 100690, - [SMALL_STATE(2106)] = 100694, - [SMALL_STATE(2107)] = 100698, - [SMALL_STATE(2108)] = 100702, - [SMALL_STATE(2109)] = 100706, - [SMALL_STATE(2110)] = 100710, - [SMALL_STATE(2111)] = 100714, - [SMALL_STATE(2112)] = 100718, - [SMALL_STATE(2113)] = 100722, - [SMALL_STATE(2114)] = 100726, - [SMALL_STATE(2115)] = 100730, - [SMALL_STATE(2116)] = 100734, - [SMALL_STATE(2117)] = 100738, - [SMALL_STATE(2118)] = 100742, - [SMALL_STATE(2119)] = 100746, - [SMALL_STATE(2120)] = 100750, - [SMALL_STATE(2121)] = 100754, - [SMALL_STATE(2122)] = 100758, - [SMALL_STATE(2123)] = 100762, - [SMALL_STATE(2124)] = 100766, - [SMALL_STATE(2125)] = 100770, - [SMALL_STATE(2126)] = 100774, - [SMALL_STATE(2127)] = 100778, - [SMALL_STATE(2128)] = 100782, - [SMALL_STATE(2129)] = 100786, - [SMALL_STATE(2130)] = 100790, - [SMALL_STATE(2131)] = 100794, - [SMALL_STATE(2132)] = 100798, - [SMALL_STATE(2133)] = 100802, - [SMALL_STATE(2134)] = 100806, - [SMALL_STATE(2135)] = 100810, - [SMALL_STATE(2136)] = 100814, - [SMALL_STATE(2137)] = 100818, - [SMALL_STATE(2138)] = 100822, - [SMALL_STATE(2139)] = 100826, - [SMALL_STATE(2140)] = 100830, - [SMALL_STATE(2141)] = 100834, - [SMALL_STATE(2142)] = 100838, - [SMALL_STATE(2143)] = 100842, - [SMALL_STATE(2144)] = 100846, - [SMALL_STATE(2145)] = 100850, - [SMALL_STATE(2146)] = 100854, - [SMALL_STATE(2147)] = 100858, - [SMALL_STATE(2148)] = 100862, - [SMALL_STATE(2149)] = 100866, - [SMALL_STATE(2150)] = 100870, - [SMALL_STATE(2151)] = 100874, - [SMALL_STATE(2152)] = 100878, - [SMALL_STATE(2153)] = 100882, - [SMALL_STATE(2154)] = 100886, - [SMALL_STATE(2155)] = 100890, - [SMALL_STATE(2156)] = 100894, - [SMALL_STATE(2157)] = 100898, - [SMALL_STATE(2158)] = 100902, - [SMALL_STATE(2159)] = 100906, - [SMALL_STATE(2160)] = 100910, - [SMALL_STATE(2161)] = 100914, - [SMALL_STATE(2162)] = 100918, - [SMALL_STATE(2163)] = 100922, - [SMALL_STATE(2164)] = 100926, - [SMALL_STATE(2165)] = 100930, - [SMALL_STATE(2166)] = 100934, - [SMALL_STATE(2167)] = 100938, - [SMALL_STATE(2168)] = 100942, - [SMALL_STATE(2169)] = 100946, - [SMALL_STATE(2170)] = 100950, - [SMALL_STATE(2171)] = 100954, - [SMALL_STATE(2172)] = 100958, - [SMALL_STATE(2173)] = 100962, - [SMALL_STATE(2174)] = 100966, - [SMALL_STATE(2175)] = 100970, - [SMALL_STATE(2176)] = 100974, - [SMALL_STATE(2177)] = 100978, - [SMALL_STATE(2178)] = 100982, - [SMALL_STATE(2179)] = 100986, - [SMALL_STATE(2180)] = 100990, - [SMALL_STATE(2181)] = 100994, - [SMALL_STATE(2182)] = 100998, - [SMALL_STATE(2183)] = 101002, - [SMALL_STATE(2184)] = 101006, - [SMALL_STATE(2185)] = 101010, - [SMALL_STATE(2186)] = 101014, - [SMALL_STATE(2187)] = 101018, - [SMALL_STATE(2188)] = 101022, - [SMALL_STATE(2189)] = 101026, - [SMALL_STATE(2190)] = 101030, - [SMALL_STATE(2191)] = 101034, - [SMALL_STATE(2192)] = 101038, - [SMALL_STATE(2193)] = 101042, - [SMALL_STATE(2194)] = 101046, - [SMALL_STATE(2195)] = 101050, - [SMALL_STATE(2196)] = 101054, - [SMALL_STATE(2197)] = 101058, - [SMALL_STATE(2198)] = 101062, - [SMALL_STATE(2199)] = 101066, - [SMALL_STATE(2200)] = 101070, - [SMALL_STATE(2201)] = 101074, - [SMALL_STATE(2202)] = 101078, - [SMALL_STATE(2203)] = 101082, - [SMALL_STATE(2204)] = 101086, - [SMALL_STATE(2205)] = 101090, - [SMALL_STATE(2206)] = 101094, - [SMALL_STATE(2207)] = 101098, - [SMALL_STATE(2208)] = 101102, - [SMALL_STATE(2209)] = 101106, - [SMALL_STATE(2210)] = 101110, - [SMALL_STATE(2211)] = 101114, - [SMALL_STATE(2212)] = 101118, - [SMALL_STATE(2213)] = 101122, - [SMALL_STATE(2214)] = 101126, - [SMALL_STATE(2215)] = 101130, - [SMALL_STATE(2216)] = 101134, - [SMALL_STATE(2217)] = 101138, - [SMALL_STATE(2218)] = 101142, - [SMALL_STATE(2219)] = 101146, - [SMALL_STATE(2220)] = 101150, - [SMALL_STATE(2221)] = 101154, - [SMALL_STATE(2222)] = 101158, - [SMALL_STATE(2223)] = 101162, - [SMALL_STATE(2224)] = 101166, - [SMALL_STATE(2225)] = 101170, - [SMALL_STATE(2226)] = 101174, - [SMALL_STATE(2227)] = 101178, - [SMALL_STATE(2228)] = 101182, - [SMALL_STATE(2229)] = 101186, - [SMALL_STATE(2230)] = 101190, - [SMALL_STATE(2231)] = 101194, - [SMALL_STATE(2232)] = 101198, - [SMALL_STATE(2233)] = 101202, - [SMALL_STATE(2234)] = 101206, - [SMALL_STATE(2235)] = 101210, - [SMALL_STATE(2236)] = 101214, - [SMALL_STATE(2237)] = 101218, - [SMALL_STATE(2238)] = 101222, - [SMALL_STATE(2239)] = 101226, - [SMALL_STATE(2240)] = 101230, - [SMALL_STATE(2241)] = 101234, - [SMALL_STATE(2242)] = 101238, - [SMALL_STATE(2243)] = 101242, - [SMALL_STATE(2244)] = 101246, - [SMALL_STATE(2245)] = 101250, - [SMALL_STATE(2246)] = 101254, - [SMALL_STATE(2247)] = 101258, - [SMALL_STATE(2248)] = 101262, - [SMALL_STATE(2249)] = 101266, - [SMALL_STATE(2250)] = 101270, - [SMALL_STATE(2251)] = 101274, - [SMALL_STATE(2252)] = 101278, - [SMALL_STATE(2253)] = 101282, - [SMALL_STATE(2254)] = 101286, - [SMALL_STATE(2255)] = 101290, - [SMALL_STATE(2256)] = 101294, - [SMALL_STATE(2257)] = 101298, - [SMALL_STATE(2258)] = 101302, - [SMALL_STATE(2259)] = 101306, - [SMALL_STATE(2260)] = 101310, - [SMALL_STATE(2261)] = 101314, - [SMALL_STATE(2262)] = 101318, - [SMALL_STATE(2263)] = 101322, - [SMALL_STATE(2264)] = 101326, - [SMALL_STATE(2265)] = 101330, - [SMALL_STATE(2266)] = 101334, - [SMALL_STATE(2267)] = 101338, - [SMALL_STATE(2268)] = 101342, - [SMALL_STATE(2269)] = 101346, - [SMALL_STATE(2270)] = 101350, - [SMALL_STATE(2271)] = 101354, - [SMALL_STATE(2272)] = 101358, - [SMALL_STATE(2273)] = 101362, - [SMALL_STATE(2274)] = 101366, - [SMALL_STATE(2275)] = 101370, - [SMALL_STATE(2276)] = 101374, - [SMALL_STATE(2277)] = 101378, - [SMALL_STATE(2278)] = 101382, - [SMALL_STATE(2279)] = 101386, - [SMALL_STATE(2280)] = 101390, - [SMALL_STATE(2281)] = 101394, - [SMALL_STATE(2282)] = 101398, - [SMALL_STATE(2283)] = 101402, - [SMALL_STATE(2284)] = 101406, - [SMALL_STATE(2285)] = 101410, - [SMALL_STATE(2286)] = 101414, - [SMALL_STATE(2287)] = 101418, + [SMALL_STATE(1287)] = 0, + [SMALL_STATE(1288)] = 69, + [SMALL_STATE(1289)] = 138, + [SMALL_STATE(1290)] = 211, + [SMALL_STATE(1291)] = 280, + [SMALL_STATE(1292)] = 349, + [SMALL_STATE(1293)] = 417, + [SMALL_STATE(1294)] = 485, + [SMALL_STATE(1295)] = 553, + [SMALL_STATE(1296)] = 621, + [SMALL_STATE(1297)] = 689, + [SMALL_STATE(1298)] = 757, + [SMALL_STATE(1299)] = 813, + [SMALL_STATE(1300)] = 870, + [SMALL_STATE(1301)] = 930, + [SMALL_STATE(1302)] = 988, + [SMALL_STATE(1303)] = 1050, + [SMALL_STATE(1304)] = 1106, + [SMALL_STATE(1305)] = 1164, + [SMALL_STATE(1306)] = 1225, + [SMALL_STATE(1307)] = 1286, + [SMALL_STATE(1308)] = 1343, + [SMALL_STATE(1309)] = 1404, + [SMALL_STATE(1310)] = 1465, + [SMALL_STATE(1311)] = 1526, + [SMALL_STATE(1312)] = 1587, + [SMALL_STATE(1313)] = 1644, + [SMALL_STATE(1314)] = 1693, + [SMALL_STATE(1315)] = 1754, + [SMALL_STATE(1316)] = 1815, + [SMALL_STATE(1317)] = 1876, + [SMALL_STATE(1318)] = 1937, + [SMALL_STATE(1319)] = 1996, + [SMALL_STATE(1320)] = 2057, + [SMALL_STATE(1321)] = 2116, + [SMALL_STATE(1322)] = 2177, + [SMALL_STATE(1323)] = 2238, + [SMALL_STATE(1324)] = 2299, + [SMALL_STATE(1325)] = 2360, + [SMALL_STATE(1326)] = 2419, + [SMALL_STATE(1327)] = 2480, + [SMALL_STATE(1328)] = 2541, + [SMALL_STATE(1329)] = 2602, + [SMALL_STATE(1330)] = 2663, + [SMALL_STATE(1331)] = 2724, + [SMALL_STATE(1332)] = 2785, + [SMALL_STATE(1333)] = 2840, + [SMALL_STATE(1334)] = 2901, + [SMALL_STATE(1335)] = 2954, + [SMALL_STATE(1336)] = 3015, + [SMALL_STATE(1337)] = 3076, + [SMALL_STATE(1338)] = 3131, + [SMALL_STATE(1339)] = 3184, + [SMALL_STATE(1340)] = 3245, + [SMALL_STATE(1341)] = 3306, + [SMALL_STATE(1342)] = 3358, + [SMALL_STATE(1343)] = 3416, + [SMALL_STATE(1344)] = 3464, + [SMALL_STATE(1345)] = 3518, + [SMALL_STATE(1346)] = 3572, + [SMALL_STATE(1347)] = 3628, + [SMALL_STATE(1348)] = 3686, + [SMALL_STATE(1349)] = 3744, + [SMALL_STATE(1350)] = 3800, + [SMALL_STATE(1351)] = 3854, + [SMALL_STATE(1352)] = 3906, + [SMALL_STATE(1353)] = 3954, + [SMALL_STATE(1354)] = 4006, + [SMALL_STATE(1355)] = 4054, + [SMALL_STATE(1356)] = 4104, + [SMALL_STATE(1357)] = 4162, + [SMALL_STATE(1358)] = 4214, + [SMALL_STATE(1359)] = 4264, + [SMALL_STATE(1360)] = 4317, + [SMALL_STATE(1361)] = 4364, + [SMALL_STATE(1362)] = 4411, + [SMALL_STATE(1363)] = 4462, + [SMALL_STATE(1364)] = 4513, + [SMALL_STATE(1365)] = 4568, + [SMALL_STATE(1366)] = 4615, + [SMALL_STATE(1367)] = 4664, + [SMALL_STATE(1368)] = 4711, + [SMALL_STATE(1369)] = 4760, + [SMALL_STATE(1370)] = 4809, + [SMALL_STATE(1371)] = 4862, + [SMALL_STATE(1372)] = 4911, + [SMALL_STATE(1373)] = 4958, + [SMALL_STATE(1374)] = 5007, + [SMALL_STATE(1375)] = 5056, + [SMALL_STATE(1376)] = 5111, + [SMALL_STATE(1377)] = 5158, + [SMALL_STATE(1378)] = 5205, + [SMALL_STATE(1379)] = 5252, + [SMALL_STATE(1380)] = 5299, + [SMALL_STATE(1381)] = 5346, + [SMALL_STATE(1382)] = 5393, + [SMALL_STATE(1383)] = 5448, + [SMALL_STATE(1384)] = 5495, + [SMALL_STATE(1385)] = 5542, + [SMALL_STATE(1386)] = 5597, + [SMALL_STATE(1387)] = 5644, + [SMALL_STATE(1388)] = 5691, + [SMALL_STATE(1389)] = 5740, + [SMALL_STATE(1390)] = 5797, + [SMALL_STATE(1391)] = 5844, + [SMALL_STATE(1392)] = 5891, + [SMALL_STATE(1393)] = 5938, + [SMALL_STATE(1394)] = 5985, + [SMALL_STATE(1395)] = 6038, + [SMALL_STATE(1396)] = 6089, + [SMALL_STATE(1397)] = 6136, + [SMALL_STATE(1398)] = 6183, + [SMALL_STATE(1399)] = 6230, + [SMALL_STATE(1400)] = 6277, + [SMALL_STATE(1401)] = 6323, + [SMALL_STATE(1402)] = 6371, + [SMALL_STATE(1403)] = 6419, + [SMALL_STATE(1404)] = 6475, + [SMALL_STATE(1405)] = 6521, + [SMALL_STATE(1406)] = 6573, + [SMALL_STATE(1407)] = 6637, + [SMALL_STATE(1408)] = 6683, + [SMALL_STATE(1409)] = 6749, + [SMALL_STATE(1410)] = 6805, + [SMALL_STATE(1411)] = 6851, + [SMALL_STATE(1412)] = 6899, + [SMALL_STATE(1413)] = 6947, + [SMALL_STATE(1414)] = 6993, + [SMALL_STATE(1415)] = 7039, + [SMALL_STATE(1416)] = 7095, + [SMALL_STATE(1417)] = 7147, + [SMALL_STATE(1418)] = 7193, + [SMALL_STATE(1419)] = 7239, + [SMALL_STATE(1420)] = 7291, + [SMALL_STATE(1421)] = 7355, + [SMALL_STATE(1422)] = 7401, + [SMALL_STATE(1423)] = 7465, + [SMALL_STATE(1424)] = 7511, + [SMALL_STATE(1425)] = 7557, + [SMALL_STATE(1426)] = 7603, + [SMALL_STATE(1427)] = 7667, + [SMALL_STATE(1428)] = 7719, + [SMALL_STATE(1429)] = 7765, + [SMALL_STATE(1430)] = 7811, + [SMALL_STATE(1431)] = 7861, + [SMALL_STATE(1432)] = 7907, + [SMALL_STATE(1433)] = 7953, + [SMALL_STATE(1434)] = 7999, + [SMALL_STATE(1435)] = 8047, + [SMALL_STATE(1436)] = 8095, + [SMALL_STATE(1437)] = 8141, + [SMALL_STATE(1438)] = 8197, + [SMALL_STATE(1439)] = 8255, + [SMALL_STATE(1440)] = 8307, + [SMALL_STATE(1441)] = 8353, + [SMALL_STATE(1442)] = 8405, + [SMALL_STATE(1443)] = 8465, + [SMALL_STATE(1444)] = 8523, + [SMALL_STATE(1445)] = 8569, + [SMALL_STATE(1446)] = 8619, + [SMALL_STATE(1447)] = 8669, + [SMALL_STATE(1448)] = 8723, + [SMALL_STATE(1449)] = 8769, + [SMALL_STATE(1450)] = 8826, + [SMALL_STATE(1451)] = 8879, + [SMALL_STATE(1452)] = 8942, + [SMALL_STATE(1453)] = 8991, + [SMALL_STATE(1454)] = 9046, + [SMALL_STATE(1455)] = 9109, + [SMALL_STATE(1456)] = 9164, + [SMALL_STATE(1457)] = 9223, + [SMALL_STATE(1458)] = 9288, + [SMALL_STATE(1459)] = 9339, + [SMALL_STATE(1460)] = 9394, + [SMALL_STATE(1461)] = 9445, + [SMALL_STATE(1462)] = 9498, + [SMALL_STATE(1463)] = 9553, + [SMALL_STATE(1464)] = 9616, + [SMALL_STATE(1465)] = 9665, + [SMALL_STATE(1466)] = 9720, + [SMALL_STATE(1467)] = 9775, + [SMALL_STATE(1468)] = 9838, + [SMALL_STATE(1469)] = 9887, + [SMALL_STATE(1470)] = 9938, + [SMALL_STATE(1471)] = 9985, + [SMALL_STATE(1472)] = 10036, + [SMALL_STATE(1473)] = 10084, + [SMALL_STATE(1474)] = 10144, + [SMALL_STATE(1475)] = 10196, + [SMALL_STATE(1476)] = 10248, + [SMALL_STATE(1477)] = 10298, + [SMALL_STATE(1478)] = 10350, + [SMALL_STATE(1479)] = 10404, + [SMALL_STATE(1480)] = 10454, + [SMALL_STATE(1481)] = 10506, + [SMALL_STATE(1482)] = 10552, + [SMALL_STATE(1483)] = 10608, + [SMALL_STATE(1484)] = 10654, + [SMALL_STATE(1485)] = 10712, + [SMALL_STATE(1486)] = 10773, + [SMALL_STATE(1487)] = 10836, + [SMALL_STATE(1488)] = 10897, + [SMALL_STATE(1489)] = 10946, + [SMALL_STATE(1490)] = 11001, + [SMALL_STATE(1491)] = 11048, + [SMALL_STATE(1492)] = 11099, + [SMALL_STATE(1493)] = 11152, + [SMALL_STATE(1494)] = 11205, + [SMALL_STATE(1495)] = 11254, + [SMALL_STATE(1496)] = 11301, + [SMALL_STATE(1497)] = 11350, + [SMALL_STATE(1498)] = 11405, + [SMALL_STATE(1499)] = 11450, + [SMALL_STATE(1500)] = 11505, + [SMALL_STATE(1501)] = 11562, + [SMALL_STATE(1502)] = 11611, + [SMALL_STATE(1503)] = 11658, + [SMALL_STATE(1504)] = 11705, + [SMALL_STATE(1505)] = 11766, + [SMALL_STATE(1506)] = 11815, + [SMALL_STATE(1507)] = 11866, + [SMALL_STATE(1508)] = 11911, + [SMALL_STATE(1509)] = 11960, + [SMALL_STATE(1510)] = 12003, + [SMALL_STATE(1511)] = 12056, + [SMALL_STATE(1512)] = 12105, + [SMALL_STATE(1513)] = 12166, + [SMALL_STATE(1514)] = 12213, + [SMALL_STATE(1515)] = 12258, + [SMALL_STATE(1516)] = 12306, + [SMALL_STATE(1517)] = 12352, + [SMALL_STATE(1518)] = 12398, + [SMALL_STATE(1519)] = 12442, + [SMALL_STATE(1520)] = 12494, + [SMALL_STATE(1521)] = 12540, + [SMALL_STATE(1522)] = 12584, + [SMALL_STATE(1523)] = 12628, + [SMALL_STATE(1524)] = 12672, + [SMALL_STATE(1525)] = 12722, + [SMALL_STATE(1526)] = 12764, + [SMALL_STATE(1527)] = 12810, + [SMALL_STATE(1528)] = 12852, + [SMALL_STATE(1529)] = 12900, + [SMALL_STATE(1530)] = 12952, + [SMALL_STATE(1531)] = 13000, + [SMALL_STATE(1532)] = 13044, + [SMALL_STATE(1533)] = 13090, + [SMALL_STATE(1534)] = 13140, + [SMALL_STATE(1535)] = 13194, + [SMALL_STATE(1536)] = 13250, + [SMALL_STATE(1537)] = 13302, + [SMALL_STATE(1538)] = 13350, + [SMALL_STATE(1539)] = 13410, + [SMALL_STATE(1540)] = 13470, + [SMALL_STATE(1541)] = 13530, + [SMALL_STATE(1542)] = 13590, + [SMALL_STATE(1543)] = 13642, + [SMALL_STATE(1544)] = 13704, + [SMALL_STATE(1545)] = 13767, + [SMALL_STATE(1546)] = 13818, + [SMALL_STATE(1547)] = 13881, + [SMALL_STATE(1548)] = 13924, + [SMALL_STATE(1549)] = 13969, + [SMALL_STATE(1550)] = 14018, + [SMALL_STATE(1551)] = 14065, + [SMALL_STATE(1552)] = 14106, + [SMALL_STATE(1553)] = 14169, + [SMALL_STATE(1554)] = 14210, + [SMALL_STATE(1555)] = 14251, + [SMALL_STATE(1556)] = 14296, + [SMALL_STATE(1557)] = 14355, + [SMALL_STATE(1558)] = 14412, + [SMALL_STATE(1559)] = 14453, + [SMALL_STATE(1560)] = 14506, + [SMALL_STATE(1561)] = 14547, + [SMALL_STATE(1562)] = 14588, + [SMALL_STATE(1563)] = 14629, + [SMALL_STATE(1564)] = 14670, + [SMALL_STATE(1565)] = 14711, + [SMALL_STATE(1566)] = 14758, + [SMALL_STATE(1567)] = 14825, + [SMALL_STATE(1568)] = 14866, + [SMALL_STATE(1569)] = 14907, + [SMALL_STATE(1570)] = 14956, + [SMALL_STATE(1571)] = 15003, + [SMALL_STATE(1572)] = 15058, + [SMALL_STATE(1573)] = 15099, + [SMALL_STATE(1574)] = 15140, + [SMALL_STATE(1575)] = 15181, + [SMALL_STATE(1576)] = 15244, + [SMALL_STATE(1577)] = 15293, + [SMALL_STATE(1578)] = 15338, + [SMALL_STATE(1579)] = 15385, + [SMALL_STATE(1580)] = 15426, + [SMALL_STATE(1581)] = 15467, + [SMALL_STATE(1582)] = 15508, + [SMALL_STATE(1583)] = 15549, + [SMALL_STATE(1584)] = 15590, + [SMALL_STATE(1585)] = 15631, + [SMALL_STATE(1586)] = 15686, + [SMALL_STATE(1587)] = 15727, + [SMALL_STATE(1588)] = 15776, + [SMALL_STATE(1589)] = 15832, + [SMALL_STATE(1590)] = 15888, + [SMALL_STATE(1591)] = 15944, + [SMALL_STATE(1592)] = 15994, + [SMALL_STATE(1593)] = 16038, + [SMALL_STATE(1594)] = 16094, + [SMALL_STATE(1595)] = 16138, + [SMALL_STATE(1596)] = 16182, + [SMALL_STATE(1597)] = 16238, + [SMALL_STATE(1598)] = 16294, + [SMALL_STATE(1599)] = 16344, + [SMALL_STATE(1600)] = 16397, + [SMALL_STATE(1601)] = 16450, + [SMALL_STATE(1602)] = 16489, + [SMALL_STATE(1603)] = 16528, + [SMALL_STATE(1604)] = 16569, + [SMALL_STATE(1605)] = 16622, + [SMALL_STATE(1606)] = 16665, + [SMALL_STATE(1607)] = 16718, + [SMALL_STATE(1608)] = 16771, + [SMALL_STATE(1609)] = 16814, + [SMALL_STATE(1610)] = 16857, + [SMALL_STATE(1611)] = 16904, + [SMALL_STATE(1612)] = 16949, + [SMALL_STATE(1613)] = 17002, + [SMALL_STATE(1614)] = 17045, + [SMALL_STATE(1615)] = 17086, + [SMALL_STATE(1616)] = 17128, + [SMALL_STATE(1617)] = 17166, + [SMALL_STATE(1618)] = 17206, + [SMALL_STATE(1619)] = 17244, + [SMALL_STATE(1620)] = 17282, + [SMALL_STATE(1621)] = 17320, + [SMALL_STATE(1622)] = 17358, + [SMALL_STATE(1623)] = 17398, + [SMALL_STATE(1624)] = 17436, + [SMALL_STATE(1625)] = 17474, + [SMALL_STATE(1626)] = 17514, + [SMALL_STATE(1627)] = 17554, + [SMALL_STATE(1628)] = 17592, + [SMALL_STATE(1629)] = 17630, + [SMALL_STATE(1630)] = 17668, + [SMALL_STATE(1631)] = 17708, + [SMALL_STATE(1632)] = 17746, + [SMALL_STATE(1633)] = 17784, + [SMALL_STATE(1634)] = 17822, + [SMALL_STATE(1635)] = 17860, + [SMALL_STATE(1636)] = 17898, + [SMALL_STATE(1637)] = 17936, + [SMALL_STATE(1638)] = 17974, + [SMALL_STATE(1639)] = 18012, + [SMALL_STATE(1640)] = 18052, + [SMALL_STATE(1641)] = 18090, + [SMALL_STATE(1642)] = 18130, + [SMALL_STATE(1643)] = 18174, + [SMALL_STATE(1644)] = 18214, + [SMALL_STATE(1645)] = 18252, + [SMALL_STATE(1646)] = 18290, + [SMALL_STATE(1647)] = 18328, + [SMALL_STATE(1648)] = 18368, + [SMALL_STATE(1649)] = 18406, + [SMALL_STATE(1650)] = 18444, + [SMALL_STATE(1651)] = 18492, + [SMALL_STATE(1652)] = 18530, + [SMALL_STATE(1653)] = 18574, + [SMALL_STATE(1654)] = 18611, + [SMALL_STATE(1655)] = 18666, + [SMALL_STATE(1656)] = 18703, + [SMALL_STATE(1657)] = 18740, + [SMALL_STATE(1658)] = 18777, + [SMALL_STATE(1659)] = 18814, + [SMALL_STATE(1660)] = 18851, + [SMALL_STATE(1661)] = 18888, + [SMALL_STATE(1662)] = 18925, + [SMALL_STATE(1663)] = 18962, + [SMALL_STATE(1664)] = 18999, + [SMALL_STATE(1665)] = 19036, + [SMALL_STATE(1666)] = 19071, + [SMALL_STATE(1667)] = 19118, + [SMALL_STATE(1668)] = 19155, + [SMALL_STATE(1669)] = 19196, + [SMALL_STATE(1670)] = 19233, + [SMALL_STATE(1671)] = 19270, + [SMALL_STATE(1672)] = 19307, + [SMALL_STATE(1673)] = 19344, + [SMALL_STATE(1674)] = 19381, + [SMALL_STATE(1675)] = 19418, + [SMALL_STATE(1676)] = 19455, + [SMALL_STATE(1677)] = 19492, + [SMALL_STATE(1678)] = 19531, + [SMALL_STATE(1679)] = 19570, + [SMALL_STATE(1680)] = 19613, + [SMALL_STATE(1681)] = 19654, + [SMALL_STATE(1682)] = 19691, + [SMALL_STATE(1683)] = 19726, + [SMALL_STATE(1684)] = 19767, + [SMALL_STATE(1685)] = 19804, + [SMALL_STATE(1686)] = 19841, + [SMALL_STATE(1687)] = 19878, + [SMALL_STATE(1688)] = 19915, + [SMALL_STATE(1689)] = 19952, + [SMALL_STATE(1690)] = 19991, + [SMALL_STATE(1691)] = 20046, + [SMALL_STATE(1692)] = 20083, + [SMALL_STATE(1693)] = 20120, + [SMALL_STATE(1694)] = 20157, + [SMALL_STATE(1695)] = 20194, + [SMALL_STATE(1696)] = 20231, + [SMALL_STATE(1697)] = 20288, + [SMALL_STATE(1698)] = 20325, + [SMALL_STATE(1699)] = 20364, + [SMALL_STATE(1700)] = 20403, + [SMALL_STATE(1701)] = 20458, + [SMALL_STATE(1702)] = 20497, + [SMALL_STATE(1703)] = 20536, + [SMALL_STATE(1704)] = 20579, + [SMALL_STATE(1705)] = 20626, + [SMALL_STATE(1706)] = 20677, + [SMALL_STATE(1707)] = 20714, + [SMALL_STATE(1708)] = 20751, + [SMALL_STATE(1709)] = 20788, + [SMALL_STATE(1710)] = 20825, + [SMALL_STATE(1711)] = 20872, + [SMALL_STATE(1712)] = 20909, + [SMALL_STATE(1713)] = 20958, + [SMALL_STATE(1714)] = 21003, + [SMALL_STATE(1715)] = 21058, + [SMALL_STATE(1716)] = 21095, + [SMALL_STATE(1717)] = 21136, + [SMALL_STATE(1718)] = 21183, + [SMALL_STATE(1719)] = 21217, + [SMALL_STATE(1720)] = 21253, + [SMALL_STATE(1721)] = 21297, + [SMALL_STATE(1722)] = 21331, + [SMALL_STATE(1723)] = 21365, + [SMALL_STATE(1724)] = 21399, + [SMALL_STATE(1725)] = 21433, + [SMALL_STATE(1726)] = 21467, + [SMALL_STATE(1727)] = 21501, + [SMALL_STATE(1728)] = 21535, + [SMALL_STATE(1729)] = 21569, + [SMALL_STATE(1730)] = 21603, + [SMALL_STATE(1731)] = 21649, + [SMALL_STATE(1732)] = 21683, + [SMALL_STATE(1733)] = 21719, + [SMALL_STATE(1734)] = 21755, + [SMALL_STATE(1735)] = 21811, + [SMALL_STATE(1736)] = 21849, + [SMALL_STATE(1737)] = 21883, + [SMALL_STATE(1738)] = 21929, + [SMALL_STATE(1739)] = 21963, + [SMALL_STATE(1740)] = 22005, + [SMALL_STATE(1741)] = 22061, + [SMALL_STATE(1742)] = 22103, + [SMALL_STATE(1743)] = 22149, + [SMALL_STATE(1744)] = 22205, + [SMALL_STATE(1745)] = 22247, + [SMALL_STATE(1746)] = 22303, + [SMALL_STATE(1747)] = 22357, + [SMALL_STATE(1748)] = 22411, + [SMALL_STATE(1749)] = 22453, + [SMALL_STATE(1750)] = 22491, + [SMALL_STATE(1751)] = 22525, + [SMALL_STATE(1752)] = 22565, + [SMALL_STATE(1753)] = 22609, + [SMALL_STATE(1754)] = 22657, + [SMALL_STATE(1755)] = 22711, + [SMALL_STATE(1756)] = 22745, + [SMALL_STATE(1757)] = 22799, + [SMALL_STATE(1758)] = 22849, + [SMALL_STATE(1759)] = 22886, + [SMALL_STATE(1760)] = 22939, + [SMALL_STATE(1761)] = 22992, + [SMALL_STATE(1762)] = 23033, + [SMALL_STATE(1763)] = 23078, + [SMALL_STATE(1764)] = 23119, + [SMALL_STATE(1765)] = 23156, + [SMALL_STATE(1766)] = 23197, + [SMALL_STATE(1767)] = 23236, + [SMALL_STATE(1768)] = 23289, + [SMALL_STATE(1769)] = 23343, + [SMALL_STATE(1770)] = 23383, + [SMALL_STATE(1771)] = 23423, + [SMALL_STATE(1772)] = 23459, + [SMALL_STATE(1773)] = 23503, + [SMALL_STATE(1774)] = 23557, + [SMALL_STATE(1775)] = 23611, + [SMALL_STATE(1776)] = 23665, + [SMALL_STATE(1777)] = 23705, + [SMALL_STATE(1778)] = 23743, + [SMALL_STATE(1779)] = 23779, + [SMALL_STATE(1780)] = 23817, + [SMALL_STATE(1781)] = 23853, + [SMALL_STATE(1782)] = 23889, + [SMALL_STATE(1783)] = 23927, + [SMALL_STATE(1784)] = 23963, + [SMALL_STATE(1785)] = 24015, + [SMALL_STATE(1786)] = 24053, + [SMALL_STATE(1787)] = 24107, + [SMALL_STATE(1788)] = 24145, + [SMALL_STATE(1789)] = 24197, + [SMALL_STATE(1790)] = 24251, + [SMALL_STATE(1791)] = 24299, + [SMALL_STATE(1792)] = 24345, + [SMALL_STATE(1793)] = 24389, + [SMALL_STATE(1794)] = 24425, + [SMALL_STATE(1795)] = 24463, + [SMALL_STATE(1796)] = 24515, + [SMALL_STATE(1797)] = 24557, + [SMALL_STATE(1798)] = 24609, + [SMALL_STATE(1799)] = 24662, + [SMALL_STATE(1800)] = 24713, + [SMALL_STATE(1801)] = 24764, + [SMALL_STATE(1802)] = 24797, + [SMALL_STATE(1803)] = 24832, + [SMALL_STATE(1804)] = 24865, + [SMALL_STATE(1805)] = 24916, + [SMALL_STATE(1806)] = 24969, + [SMALL_STATE(1807)] = 25022, + [SMALL_STATE(1808)] = 25055, + [SMALL_STATE(1809)] = 25106, + [SMALL_STATE(1810)] = 25141, + [SMALL_STATE(1811)] = 25184, + [SMALL_STATE(1812)] = 25221, + [SMALL_STATE(1813)] = 25260, + [SMALL_STATE(1814)] = 25313, + [SMALL_STATE(1815)] = 25346, + [SMALL_STATE(1816)] = 25393, + [SMALL_STATE(1817)] = 25444, + [SMALL_STATE(1818)] = 25481, + [SMALL_STATE(1819)] = 25526, + [SMALL_STATE(1820)] = 25559, + [SMALL_STATE(1821)] = 25596, + [SMALL_STATE(1822)] = 25631, + [SMALL_STATE(1823)] = 25666, + [SMALL_STATE(1824)] = 25703, + [SMALL_STATE(1825)] = 25738, + [SMALL_STATE(1826)] = 25779, + [SMALL_STATE(1827)] = 25830, + [SMALL_STATE(1828)] = 25873, + [SMALL_STATE(1829)] = 25912, + [SMALL_STATE(1830)] = 25951, + [SMALL_STATE(1831)] = 26002, + [SMALL_STATE(1832)] = 26037, + [SMALL_STATE(1833)] = 26088, + [SMALL_STATE(1834)] = 26139, + [SMALL_STATE(1835)] = 26189, + [SMALL_STATE(1836)] = 26221, + [SMALL_STATE(1837)] = 26255, + [SMALL_STATE(1838)] = 26287, + [SMALL_STATE(1839)] = 26321, + [SMALL_STATE(1840)] = 26359, + [SMALL_STATE(1841)] = 26409, + [SMALL_STATE(1842)] = 26455, + [SMALL_STATE(1843)] = 26487, + [SMALL_STATE(1844)] = 26519, + [SMALL_STATE(1845)] = 26551, + [SMALL_STATE(1846)] = 26583, + [SMALL_STATE(1847)] = 26623, + [SMALL_STATE(1848)] = 26677, + [SMALL_STATE(1849)] = 26721, + [SMALL_STATE(1850)] = 26753, + [SMALL_STATE(1851)] = 26785, + [SMALL_STATE(1852)] = 26817, + [SMALL_STATE(1853)] = 26849, + [SMALL_STATE(1854)] = 26895, + [SMALL_STATE(1855)] = 26943, + [SMALL_STATE(1856)] = 26975, + [SMALL_STATE(1857)] = 27007, + [SMALL_STATE(1858)] = 27039, + [SMALL_STATE(1859)] = 27071, + [SMALL_STATE(1860)] = 27125, + [SMALL_STATE(1861)] = 27159, + [SMALL_STATE(1862)] = 27213, + [SMALL_STATE(1863)] = 27245, + [SMALL_STATE(1864)] = 27299, + [SMALL_STATE(1865)] = 27349, + [SMALL_STATE(1866)] = 27399, + [SMALL_STATE(1867)] = 27431, + [SMALL_STATE(1868)] = 27465, + [SMALL_STATE(1869)] = 27521, + [SMALL_STATE(1870)] = 27561, + [SMALL_STATE(1871)] = 27595, + [SMALL_STATE(1872)] = 27627, + [SMALL_STATE(1873)] = 27659, + [SMALL_STATE(1874)] = 27695, + [SMALL_STATE(1875)] = 27727, + [SMALL_STATE(1876)] = 27759, + [SMALL_STATE(1877)] = 27793, + [SMALL_STATE(1878)] = 27827, + [SMALL_STATE(1879)] = 27859, + [SMALL_STATE(1880)] = 27891, + [SMALL_STATE(1881)] = 27923, + [SMALL_STATE(1882)] = 27954, + [SMALL_STATE(1883)] = 28005, + [SMALL_STATE(1884)] = 28056, + [SMALL_STATE(1885)] = 28107, + [SMALL_STATE(1886)] = 28138, + [SMALL_STATE(1887)] = 28169, + [SMALL_STATE(1888)] = 28200, + [SMALL_STATE(1889)] = 28231, + [SMALL_STATE(1890)] = 28282, + [SMALL_STATE(1891)] = 28313, + [SMALL_STATE(1892)] = 28344, + [SMALL_STATE(1893)] = 28375, + [SMALL_STATE(1894)] = 28406, + [SMALL_STATE(1895)] = 28437, + [SMALL_STATE(1896)] = 28492, + [SMALL_STATE(1897)] = 28523, + [SMALL_STATE(1898)] = 28574, + [SMALL_STATE(1899)] = 28605, + [SMALL_STATE(1900)] = 28636, + [SMALL_STATE(1901)] = 28667, + [SMALL_STATE(1902)] = 28698, + [SMALL_STATE(1903)] = 28746, + [SMALL_STATE(1904)] = 28794, + [SMALL_STATE(1905)] = 28842, + [SMALL_STATE(1906)] = 28890, + [SMALL_STATE(1907)] = 28938, + [SMALL_STATE(1908)] = 28995, + [SMALL_STATE(1909)] = 29050, + [SMALL_STATE(1910)] = 29104, + [SMALL_STATE(1911)] = 29158, + [SMALL_STATE(1912)] = 29212, + [SMALL_STATE(1913)] = 29266, + [SMALL_STATE(1914)] = 29320, + [SMALL_STATE(1915)] = 29374, + [SMALL_STATE(1916)] = 29428, + [SMALL_STATE(1917)] = 29482, + [SMALL_STATE(1918)] = 29536, + [SMALL_STATE(1919)] = 29590, + [SMALL_STATE(1920)] = 29644, + [SMALL_STATE(1921)] = 29698, + [SMALL_STATE(1922)] = 29752, + [SMALL_STATE(1923)] = 29806, + [SMALL_STATE(1924)] = 29860, + [SMALL_STATE(1925)] = 29912, + [SMALL_STATE(1926)] = 29966, + [SMALL_STATE(1927)] = 30020, + [SMALL_STATE(1928)] = 30074, + [SMALL_STATE(1929)] = 30128, + [SMALL_STATE(1930)] = 30182, + [SMALL_STATE(1931)] = 30236, + [SMALL_STATE(1932)] = 30290, + [SMALL_STATE(1933)] = 30344, + [SMALL_STATE(1934)] = 30398, + [SMALL_STATE(1935)] = 30452, + [SMALL_STATE(1936)] = 30506, + [SMALL_STATE(1937)] = 30560, + [SMALL_STATE(1938)] = 30614, + [SMALL_STATE(1939)] = 30668, + [SMALL_STATE(1940)] = 30722, + [SMALL_STATE(1941)] = 30776, + [SMALL_STATE(1942)] = 30830, + [SMALL_STATE(1943)] = 30881, + [SMALL_STATE(1944)] = 30932, + [SMALL_STATE(1945)] = 30983, + [SMALL_STATE(1946)] = 31034, + [SMALL_STATE(1947)] = 31085, + [SMALL_STATE(1948)] = 31136, + [SMALL_STATE(1949)] = 31187, + [SMALL_STATE(1950)] = 31238, + [SMALL_STATE(1951)] = 31289, + [SMALL_STATE(1952)] = 31340, + [SMALL_STATE(1953)] = 31391, + [SMALL_STATE(1954)] = 31442, + [SMALL_STATE(1955)] = 31493, + [SMALL_STATE(1956)] = 31544, + [SMALL_STATE(1957)] = 31595, + [SMALL_STATE(1958)] = 31646, + [SMALL_STATE(1959)] = 31697, + [SMALL_STATE(1960)] = 31748, + [SMALL_STATE(1961)] = 31799, + [SMALL_STATE(1962)] = 31850, + [SMALL_STATE(1963)] = 31901, + [SMALL_STATE(1964)] = 31952, + [SMALL_STATE(1965)] = 32003, + [SMALL_STATE(1966)] = 32054, + [SMALL_STATE(1967)] = 32105, + [SMALL_STATE(1968)] = 32156, + [SMALL_STATE(1969)] = 32207, + [SMALL_STATE(1970)] = 32258, + [SMALL_STATE(1971)] = 32309, + [SMALL_STATE(1972)] = 32360, + [SMALL_STATE(1973)] = 32411, + [SMALL_STATE(1974)] = 32462, + [SMALL_STATE(1975)] = 32513, + [SMALL_STATE(1976)] = 32564, + [SMALL_STATE(1977)] = 32615, + [SMALL_STATE(1978)] = 32666, + [SMALL_STATE(1979)] = 32717, + [SMALL_STATE(1980)] = 32768, + [SMALL_STATE(1981)] = 32819, + [SMALL_STATE(1982)] = 32870, + [SMALL_STATE(1983)] = 32921, + [SMALL_STATE(1984)] = 32972, + [SMALL_STATE(1985)] = 33023, + [SMALL_STATE(1986)] = 33074, + [SMALL_STATE(1987)] = 33125, + [SMALL_STATE(1988)] = 33176, + [SMALL_STATE(1989)] = 33227, + [SMALL_STATE(1990)] = 33278, + [SMALL_STATE(1991)] = 33329, + [SMALL_STATE(1992)] = 33380, + [SMALL_STATE(1993)] = 33431, + [SMALL_STATE(1994)] = 33482, + [SMALL_STATE(1995)] = 33533, + [SMALL_STATE(1996)] = 33584, + [SMALL_STATE(1997)] = 33635, + [SMALL_STATE(1998)] = 33686, + [SMALL_STATE(1999)] = 33737, + [SMALL_STATE(2000)] = 33788, + [SMALL_STATE(2001)] = 33839, + [SMALL_STATE(2002)] = 33890, + [SMALL_STATE(2003)] = 33941, + [SMALL_STATE(2004)] = 33992, + [SMALL_STATE(2005)] = 34043, + [SMALL_STATE(2006)] = 34094, + [SMALL_STATE(2007)] = 34145, + [SMALL_STATE(2008)] = 34196, + [SMALL_STATE(2009)] = 34247, + [SMALL_STATE(2010)] = 34298, + [SMALL_STATE(2011)] = 34349, + [SMALL_STATE(2012)] = 34400, + [SMALL_STATE(2013)] = 34451, + [SMALL_STATE(2014)] = 34502, + [SMALL_STATE(2015)] = 34553, + [SMALL_STATE(2016)] = 34604, + [SMALL_STATE(2017)] = 34655, + [SMALL_STATE(2018)] = 34706, + [SMALL_STATE(2019)] = 34757, + [SMALL_STATE(2020)] = 34808, + [SMALL_STATE(2021)] = 34859, + [SMALL_STATE(2022)] = 34910, + [SMALL_STATE(2023)] = 34961, + [SMALL_STATE(2024)] = 35012, + [SMALL_STATE(2025)] = 35063, + [SMALL_STATE(2026)] = 35114, + [SMALL_STATE(2027)] = 35165, + [SMALL_STATE(2028)] = 35216, + [SMALL_STATE(2029)] = 35267, + [SMALL_STATE(2030)] = 35318, + [SMALL_STATE(2031)] = 35369, + [SMALL_STATE(2032)] = 35420, + [SMALL_STATE(2033)] = 35471, + [SMALL_STATE(2034)] = 35522, + [SMALL_STATE(2035)] = 35573, + [SMALL_STATE(2036)] = 35621, + [SMALL_STATE(2037)] = 35669, + [SMALL_STATE(2038)] = 35717, + [SMALL_STATE(2039)] = 35765, + [SMALL_STATE(2040)] = 35813, + [SMALL_STATE(2041)] = 35861, + [SMALL_STATE(2042)] = 35909, + [SMALL_STATE(2043)] = 35957, + [SMALL_STATE(2044)] = 36005, + [SMALL_STATE(2045)] = 36053, + [SMALL_STATE(2046)] = 36101, + [SMALL_STATE(2047)] = 36149, + [SMALL_STATE(2048)] = 36197, + [SMALL_STATE(2049)] = 36245, + [SMALL_STATE(2050)] = 36293, + [SMALL_STATE(2051)] = 36341, + [SMALL_STATE(2052)] = 36356, + [SMALL_STATE(2053)] = 36377, + [SMALL_STATE(2054)] = 36395, + [SMALL_STATE(2055)] = 36413, + [SMALL_STATE(2056)] = 36426, + [SMALL_STATE(2057)] = 36445, + [SMALL_STATE(2058)] = 36458, + [SMALL_STATE(2059)] = 36471, + [SMALL_STATE(2060)] = 36484, + [SMALL_STATE(2061)] = 36497, + [SMALL_STATE(2062)] = 36516, + [SMALL_STATE(2063)] = 36535, + [SMALL_STATE(2064)] = 36550, + [SMALL_STATE(2065)] = 36569, + [SMALL_STATE(2066)] = 36582, + [SMALL_STATE(2067)] = 36595, + [SMALL_STATE(2068)] = 36614, + [SMALL_STATE(2069)] = 36633, + [SMALL_STATE(2070)] = 36646, + [SMALL_STATE(2071)] = 36664, + [SMALL_STATE(2072)] = 36682, + [SMALL_STATE(2073)] = 36694, + [SMALL_STATE(2074)] = 36712, + [SMALL_STATE(2075)] = 36730, + [SMALL_STATE(2076)] = 36748, + [SMALL_STATE(2077)] = 36766, + [SMALL_STATE(2078)] = 36784, + [SMALL_STATE(2079)] = 36802, + [SMALL_STATE(2080)] = 36820, + [SMALL_STATE(2081)] = 36838, + [SMALL_STATE(2082)] = 36856, + [SMALL_STATE(2083)] = 36868, + [SMALL_STATE(2084)] = 36886, + [SMALL_STATE(2085)] = 36904, + [SMALL_STATE(2086)] = 36922, + [SMALL_STATE(2087)] = 36940, + [SMALL_STATE(2088)] = 36952, + [SMALL_STATE(2089)] = 36970, + [SMALL_STATE(2090)] = 36982, + [SMALL_STATE(2091)] = 37000, + [SMALL_STATE(2092)] = 37018, + [SMALL_STATE(2093)] = 37036, + [SMALL_STATE(2094)] = 37054, + [SMALL_STATE(2095)] = 37072, + [SMALL_STATE(2096)] = 37090, + [SMALL_STATE(2097)] = 37108, + [SMALL_STATE(2098)] = 37126, + [SMALL_STATE(2099)] = 37144, + [SMALL_STATE(2100)] = 37159, + [SMALL_STATE(2101)] = 37176, + [SMALL_STATE(2102)] = 37193, + [SMALL_STATE(2103)] = 37210, + [SMALL_STATE(2104)] = 37227, + [SMALL_STATE(2105)] = 37244, + [SMALL_STATE(2106)] = 37261, + [SMALL_STATE(2107)] = 37278, + [SMALL_STATE(2108)] = 37295, + [SMALL_STATE(2109)] = 37312, + [SMALL_STATE(2110)] = 37329, + [SMALL_STATE(2111)] = 37346, + [SMALL_STATE(2112)] = 37363, + [SMALL_STATE(2113)] = 37380, + [SMALL_STATE(2114)] = 37397, + [SMALL_STATE(2115)] = 37414, + [SMALL_STATE(2116)] = 37431, + [SMALL_STATE(2117)] = 37448, + [SMALL_STATE(2118)] = 37465, + [SMALL_STATE(2119)] = 37482, + [SMALL_STATE(2120)] = 37499, + [SMALL_STATE(2121)] = 37514, + [SMALL_STATE(2122)] = 37531, + [SMALL_STATE(2123)] = 37548, + [SMALL_STATE(2124)] = 37565, + [SMALL_STATE(2125)] = 37582, + [SMALL_STATE(2126)] = 37599, + [SMALL_STATE(2127)] = 37616, + [SMALL_STATE(2128)] = 37626, + [SMALL_STATE(2129)] = 37640, + [SMALL_STATE(2130)] = 37650, + [SMALL_STATE(2131)] = 37664, + [SMALL_STATE(2132)] = 37678, + [SMALL_STATE(2133)] = 37692, + [SMALL_STATE(2134)] = 37702, + [SMALL_STATE(2135)] = 37712, + [SMALL_STATE(2136)] = 37722, + [SMALL_STATE(2137)] = 37736, + [SMALL_STATE(2138)] = 37746, + [SMALL_STATE(2139)] = 37760, + [SMALL_STATE(2140)] = 37774, + [SMALL_STATE(2141)] = 37784, + [SMALL_STATE(2142)] = 37798, + [SMALL_STATE(2143)] = 37812, + [SMALL_STATE(2144)] = 37826, + [SMALL_STATE(2145)] = 37840, + [SMALL_STATE(2146)] = 37854, + [SMALL_STATE(2147)] = 37868, + [SMALL_STATE(2148)] = 37880, + [SMALL_STATE(2149)] = 37894, + [SMALL_STATE(2150)] = 37906, + [SMALL_STATE(2151)] = 37920, + [SMALL_STATE(2152)] = 37934, + [SMALL_STATE(2153)] = 37948, + [SMALL_STATE(2154)] = 37962, + [SMALL_STATE(2155)] = 37972, + [SMALL_STATE(2156)] = 37986, + [SMALL_STATE(2157)] = 38000, + [SMALL_STATE(2158)] = 38014, + [SMALL_STATE(2159)] = 38028, + [SMALL_STATE(2160)] = 38042, + [SMALL_STATE(2161)] = 38056, + [SMALL_STATE(2162)] = 38070, + [SMALL_STATE(2163)] = 38084, + [SMALL_STATE(2164)] = 38098, + [SMALL_STATE(2165)] = 38112, + [SMALL_STATE(2166)] = 38123, + [SMALL_STATE(2167)] = 38134, + [SMALL_STATE(2168)] = 38145, + [SMALL_STATE(2169)] = 38156, + [SMALL_STATE(2170)] = 38167, + [SMALL_STATE(2171)] = 38178, + [SMALL_STATE(2172)] = 38189, + [SMALL_STATE(2173)] = 38200, + [SMALL_STATE(2174)] = 38211, + [SMALL_STATE(2175)] = 38222, + [SMALL_STATE(2176)] = 38233, + [SMALL_STATE(2177)] = 38244, + [SMALL_STATE(2178)] = 38255, + [SMALL_STATE(2179)] = 38266, + [SMALL_STATE(2180)] = 38273, + [SMALL_STATE(2181)] = 38284, + [SMALL_STATE(2182)] = 38295, + [SMALL_STATE(2183)] = 38306, + [SMALL_STATE(2184)] = 38317, + [SMALL_STATE(2185)] = 38328, + [SMALL_STATE(2186)] = 38339, + [SMALL_STATE(2187)] = 38350, + [SMALL_STATE(2188)] = 38361, + [SMALL_STATE(2189)] = 38372, + [SMALL_STATE(2190)] = 38381, + [SMALL_STATE(2191)] = 38392, + [SMALL_STATE(2192)] = 38401, + [SMALL_STATE(2193)] = 38412, + [SMALL_STATE(2194)] = 38423, + [SMALL_STATE(2195)] = 38432, + [SMALL_STATE(2196)] = 38443, + [SMALL_STATE(2197)] = 38452, + [SMALL_STATE(2198)] = 38463, + [SMALL_STATE(2199)] = 38474, + [SMALL_STATE(2200)] = 38485, + [SMALL_STATE(2201)] = 38496, + [SMALL_STATE(2202)] = 38507, + [SMALL_STATE(2203)] = 38518, + [SMALL_STATE(2204)] = 38529, + [SMALL_STATE(2205)] = 38540, + [SMALL_STATE(2206)] = 38549, + [SMALL_STATE(2207)] = 38559, + [SMALL_STATE(2208)] = 38569, + [SMALL_STATE(2209)] = 38579, + [SMALL_STATE(2210)] = 38589, + [SMALL_STATE(2211)] = 38599, + [SMALL_STATE(2212)] = 38609, + [SMALL_STATE(2213)] = 38619, + [SMALL_STATE(2214)] = 38629, + [SMALL_STATE(2215)] = 38639, + [SMALL_STATE(2216)] = 38649, + [SMALL_STATE(2217)] = 38659, + [SMALL_STATE(2218)] = 38669, + [SMALL_STATE(2219)] = 38679, + [SMALL_STATE(2220)] = 38689, + [SMALL_STATE(2221)] = 38696, + [SMALL_STATE(2222)] = 38703, + [SMALL_STATE(2223)] = 38710, + [SMALL_STATE(2224)] = 38717, + [SMALL_STATE(2225)] = 38724, + [SMALL_STATE(2226)] = 38731, + [SMALL_STATE(2227)] = 38738, + [SMALL_STATE(2228)] = 38745, + [SMALL_STATE(2229)] = 38752, + [SMALL_STATE(2230)] = 38759, + [SMALL_STATE(2231)] = 38766, + [SMALL_STATE(2232)] = 38773, + [SMALL_STATE(2233)] = 38780, + [SMALL_STATE(2234)] = 38787, + [SMALL_STATE(2235)] = 38794, + [SMALL_STATE(2236)] = 38801, + [SMALL_STATE(2237)] = 38808, + [SMALL_STATE(2238)] = 38815, + [SMALL_STATE(2239)] = 38822, + [SMALL_STATE(2240)] = 38829, + [SMALL_STATE(2241)] = 38836, + [SMALL_STATE(2242)] = 38843, + [SMALL_STATE(2243)] = 38850, + [SMALL_STATE(2244)] = 38857, + [SMALL_STATE(2245)] = 38864, + [SMALL_STATE(2246)] = 38871, + [SMALL_STATE(2247)] = 38878, + [SMALL_STATE(2248)] = 38885, + [SMALL_STATE(2249)] = 38892, + [SMALL_STATE(2250)] = 38899, + [SMALL_STATE(2251)] = 38906, + [SMALL_STATE(2252)] = 38913, + [SMALL_STATE(2253)] = 38920, + [SMALL_STATE(2254)] = 38925, + [SMALL_STATE(2255)] = 38932, + [SMALL_STATE(2256)] = 38939, + [SMALL_STATE(2257)] = 38946, + [SMALL_STATE(2258)] = 38951, + [SMALL_STATE(2259)] = 38958, + [SMALL_STATE(2260)] = 38965, + [SMALL_STATE(2261)] = 38972, + [SMALL_STATE(2262)] = 38979, + [SMALL_STATE(2263)] = 38986, + [SMALL_STATE(2264)] = 38993, + [SMALL_STATE(2265)] = 39000, + [SMALL_STATE(2266)] = 39007, + [SMALL_STATE(2267)] = 39014, + [SMALL_STATE(2268)] = 39021, + [SMALL_STATE(2269)] = 39028, + [SMALL_STATE(2270)] = 39035, + [SMALL_STATE(2271)] = 39039, + [SMALL_STATE(2272)] = 39043, + [SMALL_STATE(2273)] = 39047, + [SMALL_STATE(2274)] = 39051, + [SMALL_STATE(2275)] = 39055, + [SMALL_STATE(2276)] = 39059, + [SMALL_STATE(2277)] = 39063, + [SMALL_STATE(2278)] = 39067, + [SMALL_STATE(2279)] = 39071, + [SMALL_STATE(2280)] = 39075, + [SMALL_STATE(2281)] = 39079, + [SMALL_STATE(2282)] = 39083, + [SMALL_STATE(2283)] = 39087, + [SMALL_STATE(2284)] = 39091, + [SMALL_STATE(2285)] = 39095, + [SMALL_STATE(2286)] = 39099, + [SMALL_STATE(2287)] = 39103, + [SMALL_STATE(2288)] = 39107, + [SMALL_STATE(2289)] = 39111, + [SMALL_STATE(2290)] = 39115, + [SMALL_STATE(2291)] = 39119, + [SMALL_STATE(2292)] = 39123, + [SMALL_STATE(2293)] = 39127, + [SMALL_STATE(2294)] = 39131, + [SMALL_STATE(2295)] = 39135, + [SMALL_STATE(2296)] = 39139, + [SMALL_STATE(2297)] = 39143, + [SMALL_STATE(2298)] = 39147, + [SMALL_STATE(2299)] = 39151, + [SMALL_STATE(2300)] = 39155, + [SMALL_STATE(2301)] = 39159, + [SMALL_STATE(2302)] = 39163, + [SMALL_STATE(2303)] = 39167, + [SMALL_STATE(2304)] = 39171, + [SMALL_STATE(2305)] = 39175, + [SMALL_STATE(2306)] = 39179, + [SMALL_STATE(2307)] = 39183, + [SMALL_STATE(2308)] = 39187, + [SMALL_STATE(2309)] = 39191, + [SMALL_STATE(2310)] = 39195, + [SMALL_STATE(2311)] = 39199, + [SMALL_STATE(2312)] = 39203, + [SMALL_STATE(2313)] = 39207, + [SMALL_STATE(2314)] = 39211, + [SMALL_STATE(2315)] = 39215, + [SMALL_STATE(2316)] = 39219, + [SMALL_STATE(2317)] = 39223, + [SMALL_STATE(2318)] = 39227, + [SMALL_STATE(2319)] = 39231, + [SMALL_STATE(2320)] = 39235, + [SMALL_STATE(2321)] = 39239, + [SMALL_STATE(2322)] = 39243, + [SMALL_STATE(2323)] = 39247, + [SMALL_STATE(2324)] = 39251, + [SMALL_STATE(2325)] = 39255, + [SMALL_STATE(2326)] = 39259, + [SMALL_STATE(2327)] = 39263, + [SMALL_STATE(2328)] = 39267, + [SMALL_STATE(2329)] = 39271, + [SMALL_STATE(2330)] = 39275, + [SMALL_STATE(2331)] = 39279, + [SMALL_STATE(2332)] = 39283, + [SMALL_STATE(2333)] = 39287, + [SMALL_STATE(2334)] = 39291, + [SMALL_STATE(2335)] = 39295, + [SMALL_STATE(2336)] = 39299, + [SMALL_STATE(2337)] = 39303, + [SMALL_STATE(2338)] = 39307, + [SMALL_STATE(2339)] = 39311, + [SMALL_STATE(2340)] = 39315, + [SMALL_STATE(2341)] = 39319, + [SMALL_STATE(2342)] = 39323, + [SMALL_STATE(2343)] = 39327, + [SMALL_STATE(2344)] = 39331, + [SMALL_STATE(2345)] = 39335, + [SMALL_STATE(2346)] = 39339, + [SMALL_STATE(2347)] = 39343, + [SMALL_STATE(2348)] = 39347, + [SMALL_STATE(2349)] = 39351, + [SMALL_STATE(2350)] = 39355, + [SMALL_STATE(2351)] = 39359, + [SMALL_STATE(2352)] = 39363, + [SMALL_STATE(2353)] = 39367, + [SMALL_STATE(2354)] = 39371, + [SMALL_STATE(2355)] = 39375, + [SMALL_STATE(2356)] = 39379, + [SMALL_STATE(2357)] = 39383, + [SMALL_STATE(2358)] = 39387, + [SMALL_STATE(2359)] = 39391, + [SMALL_STATE(2360)] = 39395, + [SMALL_STATE(2361)] = 39399, + [SMALL_STATE(2362)] = 39403, + [SMALL_STATE(2363)] = 39407, + [SMALL_STATE(2364)] = 39411, + [SMALL_STATE(2365)] = 39415, + [SMALL_STATE(2366)] = 39419, + [SMALL_STATE(2367)] = 39423, + [SMALL_STATE(2368)] = 39427, + [SMALL_STATE(2369)] = 39431, + [SMALL_STATE(2370)] = 39435, + [SMALL_STATE(2371)] = 39439, + [SMALL_STATE(2372)] = 39443, + [SMALL_STATE(2373)] = 39447, + [SMALL_STATE(2374)] = 39451, + [SMALL_STATE(2375)] = 39455, + [SMALL_STATE(2376)] = 39459, + [SMALL_STATE(2377)] = 39463, + [SMALL_STATE(2378)] = 39467, + [SMALL_STATE(2379)] = 39471, + [SMALL_STATE(2380)] = 39475, + [SMALL_STATE(2381)] = 39479, + [SMALL_STATE(2382)] = 39483, + [SMALL_STATE(2383)] = 39487, + [SMALL_STATE(2384)] = 39491, + [SMALL_STATE(2385)] = 39495, + [SMALL_STATE(2386)] = 39499, + [SMALL_STATE(2387)] = 39503, + [SMALL_STATE(2388)] = 39507, + [SMALL_STATE(2389)] = 39511, + [SMALL_STATE(2390)] = 39515, + [SMALL_STATE(2391)] = 39519, + [SMALL_STATE(2392)] = 39523, + [SMALL_STATE(2393)] = 39527, + [SMALL_STATE(2394)] = 39531, + [SMALL_STATE(2395)] = 39535, + [SMALL_STATE(2396)] = 39539, + [SMALL_STATE(2397)] = 39543, + [SMALL_STATE(2398)] = 39547, + [SMALL_STATE(2399)] = 39551, + [SMALL_STATE(2400)] = 39555, + [SMALL_STATE(2401)] = 39559, + [SMALL_STATE(2402)] = 39563, + [SMALL_STATE(2403)] = 39567, + [SMALL_STATE(2404)] = 39571, + [SMALL_STATE(2405)] = 39575, + [SMALL_STATE(2406)] = 39579, + [SMALL_STATE(2407)] = 39583, + [SMALL_STATE(2408)] = 39587, + [SMALL_STATE(2409)] = 39591, + [SMALL_STATE(2410)] = 39595, + [SMALL_STATE(2411)] = 39599, + [SMALL_STATE(2412)] = 39603, + [SMALL_STATE(2413)] = 39607, + [SMALL_STATE(2414)] = 39611, + [SMALL_STATE(2415)] = 39615, + [SMALL_STATE(2416)] = 39619, + [SMALL_STATE(2417)] = 39623, + [SMALL_STATE(2418)] = 39627, + [SMALL_STATE(2419)] = 39631, + [SMALL_STATE(2420)] = 39635, + [SMALL_STATE(2421)] = 39639, + [SMALL_STATE(2422)] = 39643, + [SMALL_STATE(2423)] = 39647, + [SMALL_STATE(2424)] = 39651, + [SMALL_STATE(2425)] = 39655, + [SMALL_STATE(2426)] = 39659, + [SMALL_STATE(2427)] = 39663, + [SMALL_STATE(2428)] = 39667, + [SMALL_STATE(2429)] = 39671, + [SMALL_STATE(2430)] = 39675, + [SMALL_STATE(2431)] = 39679, + [SMALL_STATE(2432)] = 39683, + [SMALL_STATE(2433)] = 39687, + [SMALL_STATE(2434)] = 39691, + [SMALL_STATE(2435)] = 39695, + [SMALL_STATE(2436)] = 39699, + [SMALL_STATE(2437)] = 39703, + [SMALL_STATE(2438)] = 39707, + [SMALL_STATE(2439)] = 39711, + [SMALL_STATE(2440)] = 39715, + [SMALL_STATE(2441)] = 39719, + [SMALL_STATE(2442)] = 39723, + [SMALL_STATE(2443)] = 39727, + [SMALL_STATE(2444)] = 39731, + [SMALL_STATE(2445)] = 39735, + [SMALL_STATE(2446)] = 39739, + [SMALL_STATE(2447)] = 39743, + [SMALL_STATE(2448)] = 39747, + [SMALL_STATE(2449)] = 39751, + [SMALL_STATE(2450)] = 39755, + [SMALL_STATE(2451)] = 39759, + [SMALL_STATE(2452)] = 39763, + [SMALL_STATE(2453)] = 39767, + [SMALL_STATE(2454)] = 39771, + [SMALL_STATE(2455)] = 39775, + [SMALL_STATE(2456)] = 39779, + [SMALL_STATE(2457)] = 39783, + [SMALL_STATE(2458)] = 39787, + [SMALL_STATE(2459)] = 39791, + [SMALL_STATE(2460)] = 39795, + [SMALL_STATE(2461)] = 39799, + [SMALL_STATE(2462)] = 39803, + [SMALL_STATE(2463)] = 39807, + [SMALL_STATE(2464)] = 39811, + [SMALL_STATE(2465)] = 39815, + [SMALL_STATE(2466)] = 39819, + [SMALL_STATE(2467)] = 39823, + [SMALL_STATE(2468)] = 39827, + [SMALL_STATE(2469)] = 39831, + [SMALL_STATE(2470)] = 39835, + [SMALL_STATE(2471)] = 39839, + [SMALL_STATE(2472)] = 39843, + [SMALL_STATE(2473)] = 39847, + [SMALL_STATE(2474)] = 39851, + [SMALL_STATE(2475)] = 39855, + [SMALL_STATE(2476)] = 39859, + [SMALL_STATE(2477)] = 39863, + [SMALL_STATE(2478)] = 39867, + [SMALL_STATE(2479)] = 39871, + [SMALL_STATE(2480)] = 39875, + [SMALL_STATE(2481)] = 39879, + [SMALL_STATE(2482)] = 39883, + [SMALL_STATE(2483)] = 39887, + [SMALL_STATE(2484)] = 39891, + [SMALL_STATE(2485)] = 39895, + [SMALL_STATE(2486)] = 39899, + [SMALL_STATE(2487)] = 39903, + [SMALL_STATE(2488)] = 39907, + [SMALL_STATE(2489)] = 39911, + [SMALL_STATE(2490)] = 39915, + [SMALL_STATE(2491)] = 39919, + [SMALL_STATE(2492)] = 39923, + [SMALL_STATE(2493)] = 39927, + [SMALL_STATE(2494)] = 39931, + [SMALL_STATE(2495)] = 39935, + [SMALL_STATE(2496)] = 39939, + [SMALL_STATE(2497)] = 39943, + [SMALL_STATE(2498)] = 39947, + [SMALL_STATE(2499)] = 39951, + [SMALL_STATE(2500)] = 39955, + [SMALL_STATE(2501)] = 39959, + [SMALL_STATE(2502)] = 39963, + [SMALL_STATE(2503)] = 39967, + [SMALL_STATE(2504)] = 39971, + [SMALL_STATE(2505)] = 39975, + [SMALL_STATE(2506)] = 39979, + [SMALL_STATE(2507)] = 39983, + [SMALL_STATE(2508)] = 39987, + [SMALL_STATE(2509)] = 39991, + [SMALL_STATE(2510)] = 39995, + [SMALL_STATE(2511)] = 39999, + [SMALL_STATE(2512)] = 40003, + [SMALL_STATE(2513)] = 40007, + [SMALL_STATE(2514)] = 40011, + [SMALL_STATE(2515)] = 40015, + [SMALL_STATE(2516)] = 40019, + [SMALL_STATE(2517)] = 40023, + [SMALL_STATE(2518)] = 40027, + [SMALL_STATE(2519)] = 40031, + [SMALL_STATE(2520)] = 40035, + [SMALL_STATE(2521)] = 40039, + [SMALL_STATE(2522)] = 40043, + [SMALL_STATE(2523)] = 40047, + [SMALL_STATE(2524)] = 40051, + [SMALL_STATE(2525)] = 40055, + [SMALL_STATE(2526)] = 40059, + [SMALL_STATE(2527)] = 40063, + [SMALL_STATE(2528)] = 40067, + [SMALL_STATE(2529)] = 40071, + [SMALL_STATE(2530)] = 40075, + [SMALL_STATE(2531)] = 40079, + [SMALL_STATE(2532)] = 40083, + [SMALL_STATE(2533)] = 40087, + [SMALL_STATE(2534)] = 40091, + [SMALL_STATE(2535)] = 40095, + [SMALL_STATE(2536)] = 40099, + [SMALL_STATE(2537)] = 40103, + [SMALL_STATE(2538)] = 40107, + [SMALL_STATE(2539)] = 40111, + [SMALL_STATE(2540)] = 40115, + [SMALL_STATE(2541)] = 40119, + [SMALL_STATE(2542)] = 40123, + [SMALL_STATE(2543)] = 40127, + [SMALL_STATE(2544)] = 40131, + [SMALL_STATE(2545)] = 40135, + [SMALL_STATE(2546)] = 40139, + [SMALL_STATE(2547)] = 40143, + [SMALL_STATE(2548)] = 40147, + [SMALL_STATE(2549)] = 40151, + [SMALL_STATE(2550)] = 40155, + [SMALL_STATE(2551)] = 40159, + [SMALL_STATE(2552)] = 40163, + [SMALL_STATE(2553)] = 40167, + [SMALL_STATE(2554)] = 40171, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [41] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(193), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2205), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(720), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2204), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(150), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2203), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1410), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2009), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(325), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(324), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2198), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(363), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(187), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(643), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1869), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1209), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1209), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1908), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1217), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1903), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(472), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(472), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2001), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2194), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 33), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 33), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 33), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 33), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__exp, 1), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 1, .production_id = 1), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp, 1), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 1), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 1), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_concat, 3, .production_id = 8), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_concat, 3, .production_id = 8), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 1), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 1), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 2), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 2), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_qualified_name, 4), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_qualified_name, 4), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 3), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 3), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_ref, 4, .production_id = 16), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_ref, 4, .production_id = 16), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 4, .production_id = 15), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 4, .production_id = 15), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 14), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 14), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 3, .production_id = 10), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 3, .production_id = 10), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 4, .production_id = 13), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 4, .production_id = 13), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 6), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 6), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 5, .production_id = 15), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 5, .production_id = 15), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 1, .production_id = 2), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 1, .production_id = 2), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indirect_func_call, 2), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indirect_func_call, 2), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_constant, 2), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_constant, 2), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grouping, 3), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grouping, 3), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 4), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 4), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 3, .production_id = 5), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 3, .production_id = 5), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_ref, 2), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_ref, 2), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_exp, 3, .production_id = 11), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_exp, 3, .production_id = 11), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 7), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 7), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 2), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 2), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 3, .production_id = 10), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 3, .production_id = 10), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 5, .production_id = 19), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 5, .production_id = 19), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 5, .production_id = 17), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 5, .production_id = 17), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 6, .production_id = 21), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 6, .production_id = 21), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 6, .production_id = 22), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 6, .production_id = 22), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 7, .production_id = 24), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 7, .production_id = 24), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_exp, 2, .production_id = 3), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_exp, 2, .production_id = 3), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_exp, 3, .production_id = 8), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_exp, 3, .production_id = 8), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 1), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 1), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(373), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1685), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2038), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(764), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(531), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1876), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(864), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(864), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1890), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(884), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1892), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(554), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(554), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1978), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2020), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2224), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exp_list, 2), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exp_list, 2), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_args, 1), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_args, 1), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_statement, 3, .production_id = 12), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_statement, 3, .production_id = 12), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 9), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 9), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [43] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(181), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2371), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(670), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2360), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(149), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2353), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1283), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2183), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(306), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(307), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2351), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(6), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(333), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(162), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(637), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2096), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(949), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(949), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2103), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(948), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1319), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(402), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(402), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2177), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2322), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2373), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), + [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 33), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 33), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 33), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 33), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 1), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 1), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_concat, 3, .production_id = 8), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__exp, 1), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 1, .production_id = 1), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_concat, 3, .production_id = 8), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 1), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 1), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp, 1), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 2), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 2), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 3), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 3), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_qualified_name, 4), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_qualified_name, 4), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 7), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 7), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 2), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 2), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_ref, 4, .production_id = 16), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_ref, 4, .production_id = 16), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 7, .production_id = 24), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 7, .production_id = 24), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_ref, 2), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_ref, 2), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__builtin_func_call, 4), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__builtin_func_call, 4), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_exp, 2, .production_id = 3), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_exp, 2, .production_id = 3), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 1, .production_id = 2), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 1, .production_id = 2), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 5, .production_id = 15), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 5, .production_id = 15), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 3, .production_id = 10), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 3, .production_id = 10), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_exp, 3, .production_id = 11), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_exp, 3, .production_id = 11), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 4, .production_id = 13), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 4, .production_id = 13), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 14), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 14), + [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_exp, 3, .production_id = 8), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_exp, 3, .production_id = 8), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 1), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 1), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grouping, 3), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grouping, 3), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 6, .production_id = 22), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 6, .production_id = 22), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 6, .production_id = 21), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 6, .production_id = 21), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 5, .production_id = 19), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 5, .production_id = 19), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 5, .production_id = 17), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 5, .production_id = 17), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 6), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 6), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 3, .production_id = 5), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 3, .production_id = 5), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 3, .production_id = 10), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 3, .production_id = 10), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__builtin_func_call, 3), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__builtin_func_call, 3), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 4), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 4), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indirect_func_call, 2), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indirect_func_call, 2), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 4, .production_id = 15), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 4, .production_id = 15), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_constant, 2), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_constant, 2), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 1), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 1), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(338), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1297), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2269), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(675), + [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(551), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2076), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(830), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(830), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2102), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1003), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1315), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(592), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(592), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2173), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2217), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2380), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2376), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exp_list, 2), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exp_list, 2), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_args, 1), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_args, 1), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_statement, 3, .production_id = 12), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_statement, 3, .production_id = 12), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 9), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 9), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 2), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 2), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 2), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 2), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 2), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 4), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 4), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 4), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(815), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(687), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1545), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1858), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1215), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1215), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1924), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(997), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1926), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1629), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1629), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1980), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_statement, 1), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_statement, 1), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_statement, 2), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_separated, 2), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_separated, 2), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 20), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 20), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 20), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 20), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, .production_id = 23), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, .production_id = 23), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 6), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 6), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 20), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 20), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 7, .production_id = 25), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 7, .production_id = 25), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 26), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 26), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 27), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 27), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 7, .production_id = 28), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 7, .production_id = 28), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 29), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 29), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 20), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 20), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 26), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 26), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 27), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 27), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 30), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 30), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 8, .production_id = 28), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 8, .production_id = 28), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 29), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 29), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 31), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 31), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 32), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 32), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 20), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 20), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 30), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 30), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 31), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 31), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 32), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 32), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 34), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 34), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 34), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 34), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(2194), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 20), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 20), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_content, 1), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 1), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 1), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 2), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 2), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 2), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 2), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 6, .production_id = 18), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 6, .production_id = 18), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 5, .production_id = 18), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 5, .production_id = 18), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 1), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1849), - [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2165), - [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2224), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 4), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 5, .production_id = 33), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_pattern, 1), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), SHIFT_REPEAT(1923), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), SHIFT_REPEAT(1923), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), SHIFT_REPEAT(2127), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), - [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), SHIFT_REPEAT(1929), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), SHIFT_REPEAT(1960), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(2224), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__regex_char_class, 5), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__regex_char_class, 5), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__regex_bracket_exp, 3), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1999), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(1108), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), SHIFT_REPEAT(2022), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 2), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 3), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3474] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 2), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 4), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 4), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 4), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1484), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(733), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1762), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(2098), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1075), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1075), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(2104), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1078), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1331), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1875), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1875), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(2174), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(2460), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_statement, 2), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_statement, 1), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_statement, 1), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 30), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 30), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 7, .production_id = 28), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 7, .production_id = 28), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 31), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 31), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, .production_id = 23), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, .production_id = 23), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 20), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 20), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 29), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 29), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 7, .production_id = 25), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 7, .production_id = 25), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 20), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 20), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 29), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 29), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 32), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 32), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 20), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 20), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_separated, 2), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_separated, 2), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 8, .production_id = 28), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 8, .production_id = 28), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 20), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 20), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 26), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 26), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 31), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 31), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 27), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 27), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 32), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 32), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 34), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 34), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 34), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 34), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 30), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 30), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 27), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 27), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 26), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 26), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 6), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 6), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 20), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 20), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(2373), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 20), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 20), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_content, 1), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 1), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 1), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 2), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 2), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 5, .production_id = 18), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 5, .production_id = 18), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 2), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 2), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 6, .production_id = 18), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 6, .production_id = 18), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 1), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2062), + [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2443), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2376), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 4), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 5, .production_id = 33), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_pattern, 1), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), SHIFT_REPEAT(2107), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), SHIFT_REPEAT(2107), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), SHIFT_REPEAT(2378), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), SHIFT_REPEAT(2120), + [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), SHIFT_REPEAT(2149), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(2376), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__regex_bracket_exp, 3), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2190), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__regex_char_class, 5), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__regex_char_class, 5), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(889), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 2), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), SHIFT_REPEAT(2216), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 3), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3635] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), }; enum ts_external_scanner_symbol_identifiers { @@ -112834,10 +160965,10 @@ static const bool ts_external_scanner_states[9][EXTERNAL_TOKEN_COUNT] = { }, [5] = { [ts_external_token_concatenating_space] = true, - [ts_external_token__func_call] = true, }, [6] = { [ts_external_token_concatenating_space] = true, + [ts_external_token__func_call] = true, }, [7] = { [ts_external_token__func_call] = true, diff --git a/test/corpus/function.txt b/test/corpus/function.txt index a51e2ab..c976f04 100644 --- a/test/corpus/function.txt +++ b/test/corpus/function.txt @@ -185,3 +185,168 @@ function d(a, (comment) (identifier)) (block))) + +==================================== +Whitespace with built-in function calls +==================================== + +{ + and () + asort (a) + asorti (a) + bindtextdomain ("/") + compl (x) + cos (x) + dcgettext (x) + dcngettext ("", "", 1) + exp (x) + gensub ("", "", "") + gsub ("", "") + index ("", "") + int (x) + isarray (a) + length () + log (x) + lshift (x, 1) + match ("", "") + mktime ("") + or (x, x) + patsplit ("", a) + rand () + rshift (x, 1) + sin (x) + split ("", a) + sprintf ("", "") + sqrt (x) + srand () + strftime () + strtonum ("1") + sub ("", "") + substr ("", 1) + systime () + tolower ("") + toupper ("") + typeof (x) + xor (x, x) +} + +------------------------------------ + +(program + (rule + (block + (func_call) + (func_call + (args + (identifier))) + (func_call + (args + (identifier))) + (func_call + (args + (string))) + (func_call + (args + (identifier))) + (func_call + (args + (identifier))) + (func_call + (args + (identifier))) + (func_call + (args + (string) + (string) + (number))) + (func_call + (args + (identifier))) + (func_call + (args + (string) + (string) + (string))) + (func_call + (args + (string) + (string))) + (func_call + (args + (string) + (string))) + (func_call + (args + (identifier))) + (func_call + (args + (identifier))) + (func_call) + (func_call + (args + (identifier))) + (func_call + (args + (identifier) + (number))) + (func_call + (args + (string) + (string))) + (func_call + (args + (string))) + (func_call + (args + (identifier) + (identifier))) + (func_call + (args + (string) + (identifier))) + (func_call) + (func_call + (args + (identifier) + (number))) + (func_call + (args + (identifier))) + (func_call + (args + (string) + (identifier))) + (func_call + (args + (string) + (string))) + (func_call + (args + (identifier))) + (func_call) + (func_call) + (func_call + (args + (string))) + (func_call + (args + (string) + (string))) + (func_call + (args + (string) + (number))) + (func_call) + (func_call + (args + (string))) + (func_call + (args + (string))) + (func_call + (args + (identifier))) + (func_call + (args + (identifier) + (identifier))))))